diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@no-log.org> | 2010-03-21 21:20:48 +0100 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@no-log.org> | 2010-03-28 18:16:13 +0200 |
commit | b17a9e52709b88bb8f75eee6267e9430b99e84ba (patch) | |
tree | bc8455bf6142f0b936facf082e6e612b3e921118 | |
parent | bdd0e53e9075481a88c2a8e4234f8fb4d677f0a2 (diff) |
gs 8.64 : fixed GNU_HASH and added checksums
I used TARGET_CC_ARCH += "${LDFLAGS}" because the following didn't work:
*EXTRA_OEMAKE = "XLDFLAGS='${LDFLAGS}'" (xldflags was present in some Makefile)
*EXTRA_OEMAKE = "LDFLAGS='${LDFLAGS}'"
-rw-r--r-- | recipes/gs/gs_8.64.bb | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/recipes/gs/gs_8.64.bb b/recipes/gs/gs_8.64.bb index 37f0af1b42..20171cab34 100644 --- a/recipes/gs/gs_8.64.bb +++ b/recipes/gs/gs_8.64.bb @@ -5,7 +5,7 @@ HOMEPAGE = "http://www.gnu.org/software/ghostscript/ghostscript.html" DEPENDS = "jpeg zlib fontconfig cups" PR = "r2" -SRC_URI = "${DEBIAN_MIRROR}/main/g/ghostscript/ghostscript_${PV}~dfsg.orig.tar.gz \ +SRC_URI = "${DEBIAN_MIRROR}/main/g/ghostscript/ghostscript_${PV}~dfsg.orig.tar.gz;name=tarball \ file://0001_svn_snapshot.patch;patch=1 \ file://0002_svn_snapshot_jbig2dec.patch;patch=1 \ file://1001_install_cjk_examples.patch;patch=1 \ @@ -18,12 +18,18 @@ SRC_URI = "${DEBIAN_MIRROR}/main/g/ghostscript/ghostscript_${PV}~dfsg.orig.tar.g file://2002_gs_man_fix_debian.patch;patch=1 \ " +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}" +TARGET_CC_ARCH += "${LDFLAGS}" + PACKAGES += "cups-gs" do_configure() { |