All of lore.kernel.org
 help / color / mirror / Atom feed
* bitbake gs failed
@ 2011-04-29  6:45 Kang Kai
  2011-04-29 14:24 ` Joshua Lock
  0 siblings, 1 reply; 6+ messages in thread
From: Kang Kai @ 2011-04-29  6:45 UTC (permalink / raw)
  To: Saul Wold; +Cc: poky@yoctoproject.org

[-- Attachment #1: Type: text/plain, Size: 1095 bytes --]

Hi Saul,

When I import gs (ghostscript) from oe, I copy the whole directory of gs 
from oe and put it at meta/recipes-extend/gs.  When run 'bitbake gs', 
the bitbake comlains:

ERROR: Nothing PROVIDES 'gs'
ERROR: Command execution failed: Traceback (most recent call last):
   File "/mnt/sda8/poky-neil/bitbake/lib/bb/command.py", line 102, in 
runAsyncCommand
     commandmethod(self.cmds_async, self, options)
   File "/mnt/sda8/poky-neil/bitbake/lib/bb/command.py", line 200, in 
buildTargets
     command.cooker.buildTargets(pkgs_to_build, task)
   File "/mnt/sda8/poky-neil/bitbake/lib/bb/cooker.py", line 827, in 
buildTargets
     taskdata.add_provider(localdata, self.status, k)
   File "/mnt/sda8/poky-neil/bitbake/lib/bb/taskdata.py", line 353, in 
add_provider
     self.add_provider_internal(cfgData, dataCache, item)
   File "/mnt/sda8/poky-neil/bitbake/lib/bb/taskdata.py", line 373, in 
add_provider_internal
     raise bb.providers.NoProvider(item)
NoProvider: gs

The bb file is in attachment.
Would you like to help me to check it?
Thank you!
Kai

[-- Attachment #2: gs_8.64.bb --]
[-- Type: text/plain, Size: 2866 bytes --]

DESCRIPTION = "An interpreter of the Postscript language"
LICENSE = "GPLv2"
SECTION = "console/utils"
HOMEPAGE = "http://www.gnu.org/software/ghostscript/ghostscript.html"
DEPENDS = "jpeg zlib fontconfig cups gs-tools-native"
PR = "r4"

SRC_URI = "${DEBIAN_MIRROR}/main/g/ghostscript/ghostscript_${PV}~dfsg.orig.tar.gz;name=tarball \
           file://0001_svn_snapshot.patch \
           file://0002_svn_snapshot_jbig2dec.patch \
           file://1001_install_cjk_examples.patch \
           file://1002_ps2pdf_man_fix.patch \
           file://1003_fix_autoconf_create_from_infiles.patch \
           file://1004_CVE-2009-0792_CVE-2009-0584_CVE-2009-0583.patch \
           file://1006_system-jasper.patch \
           file://1007_fix_pphs_script_not_lib.patch \
           file://2001_docdir_fix_for_debian.patch \
           file://2002_gs_man_fix_debian.patch \
           file://unix-aux.mak \
           "

SRC_URI[tarball.md5sum] = "e42706c2409815df5c959484080fd4a3"
SRC_URI[tarball.sha256sum] = "cc856d33cb781cdc3383b8eb4e0f390997f8359fe144a906b84297b5d377f03d"

S = "${WORKDIR}/ghostscript-${PV}~dfsg"

inherit autotools

EXTRA_OECONF = "--without-x --with-jasper --with-zlib=${STAGING_DIR_HOST}${layout_prefix} --with-fontpath=${datadir}/fonts"

TARGET_CC_ARCH += "${LDFLAGS}"

PACKAGES += "cups-gs"

do_configure() {
        # hack script to allow for cross compiling jasper
        sed 's,&& ./configure$,& --host=\$host --build=\$build --target=\$target,g' -i configure
        gnu-configize
        CFLAGS="${CFLAGS} -fPIC" oe_runconf
}

do_configure_append() {
        # copy tools from the native gs build
        mkdir -p obj soobj
        for i in genarch genconf mkromfs echogs gendev genht; do
                cp ${STAGING_BINDIR_NATIVE}/gs-tools-${PV}/$i obj/$i
                cp ${STAGING_BINDIR_NATIVE}/gs-tools-${PV}/$i soobj/$i
        done
        # Prevent mkromfs from being recompiled for the target
        cp ${WORKDIR}/unix-aux.mak base/
}

do_compile_append () {
        oe_runmake CFLAGS="${CFLAGS} -fPIC" so
}

do_install_prepend () {
        sed -e 's#CUPSSERVERBIN=${STAGING_LIBDIR}/cups#CUPSSERVERBIN=${libdir}/cups#g' -i ${S}/Makefile
        sed -e 's#CUPSDATA=${STAGING_DATADIR}/cups#CUPSDATA=${datadir}/cups#g' -i ${S}/Makefile
}

do_install_append () {
        oe_runmake 'DESTDIR=${D}' soinstall
	# recent cups expects this file in /usr/share/cups/mime
	# so duplicate it for compatibility
	mkdir -p ${D}/${datadir}/cups/mime/
        cp ${D}/etc/cups/pstoraster.convs ${D}/${datadir}/cups/mime/

	install -d ${D}${incluedir}/ghostscript
	install -m 644 ${S}/psi/*.h ${D}${includedir}/ghostscript/
}

FILES_${PN} += "${datadir}/ghostscript"
FILES_cups-gs = "${libdir}/cups/filter/ ${datadir}/cups ${sysconfdir}/cups"

RDEPENDS_cups-gs += "gs"

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2011-05-03  3:11 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-29  6:45 bitbake gs failed Kang Kai
2011-04-29 14:24 ` Joshua Lock
2011-04-29 14:57   ` Mark Hatle
2011-04-29 15:11     ` Joshua Lock
2011-04-29 21:05     ` Scott Garman
2011-05-03  3:13   ` Kang Kai

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.