diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/ghostscript/ghostscript/ghostscript-9.02-genarch.patch | 12 | ||||
-rw-r--r-- | meta/recipes-extended/ghostscript/ghostscript/ghostscript-9.05-NOT-check-endian.patch | 54 | ||||
-rw-r--r-- | meta/recipes-extended/ghostscript/ghostscript_9.05.bb (renamed from meta/recipes-extended/ghostscript/ghostscript_9.04.bb) | 9 |
3 files changed, 65 insertions, 10 deletions
diff --git a/meta/recipes-extended/ghostscript/ghostscript/ghostscript-9.02-genarch.patch b/meta/recipes-extended/ghostscript/ghostscript/ghostscript-9.02-genarch.patch index 3c2a4c82dd..c18246cdb8 100644 --- a/meta/recipes-extended/ghostscript/ghostscript/ghostscript-9.02-genarch.patch +++ b/meta/recipes-extended/ghostscript/ghostscript/ghostscript-9.02-genarch.patch | |||
@@ -14,14 +14,14 @@ Signed-off-by: Kang Kai <kai.kang@windriver.com> | |||
14 | diff -Nru ghostscript-8.64.orig/base/lib.mak ghostscript-8.64/base/lib.mak | 14 | diff -Nru ghostscript-8.64.orig/base/lib.mak ghostscript-8.64/base/lib.mak |
15 | --- ghostscript-8.64.orig/base/lib.mak 2010-02-10 10:30:02.000000000 +0800 | 15 | --- ghostscript-8.64.orig/base/lib.mak 2010-02-10 10:30:02.000000000 +0800 |
16 | +++ ghostscript-8.64/base/lib.mak 2010-02-10 10:56:21.000000000 +0800 | 16 | +++ ghostscript-8.64/base/lib.mak 2010-02-10 10:56:21.000000000 +0800 |
17 | @@ -50,8 +50,8 @@ | 17 | @@ -66,8 +66,8 @@ |
18 | stdpre_h=$(GLSRC)stdpre.h $(stdpn_h) | 18 | stdpre_h=$(GLSRC)stdpre.h $(stdpn_h) |
19 | stdint__h=$(GLSRC)stdint_.h $(std_h) | 19 | stdint__h=$(GLSRC)stdint_.h $(std_h) |
20 | 20 | ||
21 | -$(GLGEN)arch.h : $(GENARCH_XE) | 21 | -$(GLGEN)arch.h : $(GENARCH_XE) |
22 | - $(EXP)$(GENARCH_XE) $(GLGEN)arch.h | 22 | - $(EXP)$(GENARCH_XE) $(GLGEN)arch.h $(TARGET_ARCH_FILE) |
23 | +##$(GLGEN)arch.h : $(GENARCH_XE) | 23 | +##$(GLGEN)arch.h : $(GENARCH_XE) |
24 | +## $(EXP)$(GENARCH_XE) $(GLGEN)arch.h | 24 | +## $(EXP)$(GENARCH_XE) $(GLGEN)arch.h $(TARGET_ARCH_FILE) |
25 | 25 | ||
26 | # Platform interfaces | 26 | # Platform interfaces |
27 | 27 | ||
diff --git a/meta/recipes-extended/ghostscript/ghostscript/ghostscript-9.05-NOT-check-endian.patch b/meta/recipes-extended/ghostscript/ghostscript/ghostscript-9.05-NOT-check-endian.patch new file mode 100644 index 0000000000..52353b50d5 --- /dev/null +++ b/meta/recipes-extended/ghostscript/ghostscript/ghostscript-9.05-NOT-check-endian.patch | |||
@@ -0,0 +1,54 @@ | |||
1 | configure will check endianness of build machine. When cross compile it fails. | ||
2 | So remove the check for Yocto. | ||
3 | |||
4 | Upstream-Status: Pending | ||
5 | |||
6 | Signed-off-by: Kang Kai <kai.kang@windriver.com> | ||
7 | |||
8 | --- ghostscript-9.05/configure.ac.orig 2012-03-14 15:28:30.828956872 +0800 | ||
9 | +++ ghostscript-9.05/configure.ac 2012-03-14 15:29:05.060957357 +0800 | ||
10 | @@ -1739,25 +1739,25 @@ | ||
11 | dnl check for big/little endian for LCMS | ||
12 | dnl -------------------------------------------------- | ||
13 | |||
14 | -AC_MSG_CHECKING([for big endian]) | ||
15 | - | ||
16 | -AC_RUN_IFELSE( | ||
17 | - [AC_LANG_PROGRAM([#include <stdio.h>], [ | ||
18 | - static const int one = 1; | ||
19 | - return (*(char*)&one == 0 ? 0 : 1); | ||
20 | - ])], | ||
21 | - [LCMS_BIGENDIAN=1], | ||
22 | - [LCMS_BIGENDIAN=0]) | ||
23 | - | ||
24 | -if test "x$LCMS_BIGENDIAN" != "x0"; then | ||
25 | - LCMS_ENDIAN="-DUSE_BIG_ENDIAN=$LCMS_BIGENDIAN" | ||
26 | - LCMS2_ENDIAN="-DCMS_USE_BIG_ENDIAN=$LCMS_BIGENDIAN" | ||
27 | - AC_MSG_RESULT(yes) | ||
28 | -else | ||
29 | - LCMS_ENDIAN= | ||
30 | - LCMS2_ENDIAN= | ||
31 | - AC_MSG_RESULT(no) | ||
32 | -fi | ||
33 | +dnl AC_MSG_CHECKING([for big endian]) | ||
34 | +dnl | ||
35 | +dnl AC_RUN_IFELSE( | ||
36 | +dnl [AC_LANG_PROGRAM([#include <stdio.h>], [ | ||
37 | +dnl static const int one = 1; | ||
38 | +dnl return (*(char*)&one == 0 ? 0 : 1); | ||
39 | +dnl ])], | ||
40 | +dnl [LCMS_BIGENDIAN=1], | ||
41 | +dnl [LCMS_BIGENDIAN=0]) | ||
42 | +dnl | ||
43 | +dnl if test "x$LCMS_BIGENDIAN" != "x0"; then | ||
44 | +dnl LCMS_ENDIAN="-DUSE_BIG_ENDIAN=$LCMS_BIGENDIAN" | ||
45 | +dnl LCMS2_ENDIAN="-DCMS_USE_BIG_ENDIAN=$LCMS_BIGENDIAN" | ||
46 | +dnl AC_MSG_RESULT(yes) | ||
47 | +dnl else | ||
48 | +dnl LCMS_ENDIAN= | ||
49 | +dnl LCMS2_ENDIAN= | ||
50 | +dnl AC_MSG_RESULT(no) | ||
51 | +dnl fi | ||
52 | |||
53 | |||
54 | AC_SUBST(LCMS_ENDIAN) | ||
diff --git a/meta/recipes-extended/ghostscript/ghostscript_9.04.bb b/meta/recipes-extended/ghostscript/ghostscript_9.05.bb index 3f9d7b5cb9..6c1d1a927e 100644 --- a/meta/recipes-extended/ghostscript/ghostscript_9.04.bb +++ b/meta/recipes-extended/ghostscript/ghostscript_9.05.bb | |||
@@ -13,9 +13,9 @@ HOMEPAGE = "http://www.ghostscript.com" | |||
13 | SECTION = "console/utils" | 13 | SECTION = "console/utils" |
14 | 14 | ||
15 | LICENSE = "GPLv3" | 15 | LICENSE = "GPLv3" |
16 | LIC_FILES_CHKSUM = "file://LICENSE;md5=d151214b3131251dfc9d858593acbd24" | 16 | LIC_FILES_CHKSUM = "file://LICENSE;md5=c5326026692dbed183f0558f926580f8" |
17 | 17 | ||
18 | PR = "r3" | 18 | PR = "r0" |
19 | 19 | ||
20 | DEPENDS = "ghostscript-native tiff jpeg fontconfig cups" | 20 | DEPENDS = "ghostscript-native tiff jpeg fontconfig cups" |
21 | DEPENDS_virtclass-native = "" | 21 | DEPENDS_virtclass-native = "" |
@@ -27,12 +27,13 @@ SRC_URI = "${SRC_URI_BASE} \ | |||
27 | file://ghostscript-9.02-genarch.patch \ | 27 | file://ghostscript-9.02-genarch.patch \ |
28 | file://objarch.h \ | 28 | file://objarch.h \ |
29 | file://ghostscript-9.02-parallel-make.patch \ | 29 | file://ghostscript-9.02-parallel-make.patch \ |
30 | file://ghostscript-9.05-NOT-check-endian.patch \ | ||
30 | " | 31 | " |
31 | 32 | ||
32 | SRC_URI_virtclass-native = "${SRC_URI_BASE}" | 33 | SRC_URI_virtclass-native = "${SRC_URI_BASE}" |
33 | 34 | ||
34 | SRC_URI[md5sum] = "9c2fb4af1eb609d09dba5bb0fa76173a" | 35 | SRC_URI[md5sum] = "f7c6f0431ca8d44ee132a55d583212c1" |
35 | SRC_URI[sha256sum] = "f1e333738c41c3bf2b47ceb9806abb8045bcdc7353002c32736150425a7c1ef4" | 36 | SRC_URI[sha256sum] = "593f77f7584704bdf9de41598a084a4208c3ad3b940a1de1faaf8f59a15cc207" |
36 | 37 | ||
37 | EXTRA_OECONF = "--without-x --with-system-libtiff --without-jbig2dec --without-jasper \ | 38 | EXTRA_OECONF = "--without-x --with-system-libtiff --without-jbig2dec --without-jasper \ |
38 | --with-fontpath=${datadir}/fonts --with-install-cups" | 39 | --with-fontpath=${datadir}/fonts --with-install-cups" |