diff options
author | Jon Nall <nall@gentoo.org> | 2002-11-12 02:49:32 +0000 |
---|---|---|
committer | Jon Nall <nall@gentoo.org> | 2002-11-12 02:49:32 +0000 |
commit | ac0e5b3fbbd6297aa71a0a13bdfaabf3c47110ed (patch) | |
tree | 1147dc72b40ef2b3822e73516e3c7a100a8e9f98 /app-misc/endeavour | |
parent | fix for bug #10564. (negative images on big endian machines) (diff) | |
download | historical-ac0e5b3fbbd6297aa71a0a13bdfaabf3c47110ed.tar.gz historical-ac0e5b3fbbd6297aa71a0a13bdfaabf3c47110ed.tar.bz2 historical-ac0e5b3fbbd6297aa71a0a13bdfaabf3c47110ed.zip |
added sparc and sparc64 to list of ARCHs receiving the bigendian patch
Diffstat (limited to 'app-misc/endeavour')
-rw-r--r-- | app-misc/endeavour/ChangeLog | 8 | ||||
-rw-r--r-- | app-misc/endeavour/endeavour-2.1.20-r1.ebuild | 6 |
2 files changed, 10 insertions, 4 deletions
diff --git a/app-misc/endeavour/ChangeLog b/app-misc/endeavour/ChangeLog index cbc9737ad93f..0f8bf1cb8dbe 100644 --- a/app-misc/endeavour/ChangeLog +++ b/app-misc/endeavour/ChangeLog @@ -1,6 +1,6 @@ # ChangeLog for app-misc/endeavour # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-misc/endeavour/ChangeLog,v 1.6 2002/11/12 02:34:40 nall Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/endeavour/ChangeLog,v 1.7 2002/11/12 02:49:32 nall Exp $ *endeavour-2.1.20-r1 (10 Nov 2002) @@ -8,6 +8,12 @@ added patch to fix "negative" images in the iBrowser on big endian systems. fixes bug #10564. + + 11 Nov 2002; Jon Nall <nall@gentoo.org> endeavour-2.1.20-r1.ebuild : + + added sparc and sparc64 to list of ARCHs that the bigendian patch + should be applied against. since those ARCHs aren't KEYWORDSed yet + no users should be affected. fixed cd in src_compile *endeavour-2.1.20 (07 Nov 2002) diff --git a/app-misc/endeavour/endeavour-2.1.20-r1.ebuild b/app-misc/endeavour/endeavour-2.1.20-r1.ebuild index 0f9a299185d8..9234b8506218 100644 --- a/app-misc/endeavour/endeavour-2.1.20-r1.ebuild +++ b/app-misc/endeavour/endeavour-2.1.20-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/endeavour/endeavour-2.1.20-r1.ebuild,v 1.1 2002/11/12 02:34:40 nall Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/endeavour/endeavour-2.1.20-r1.ebuild,v 1.2 2002/11/12 02:49:32 nall Exp $ IUSE="" @@ -28,7 +28,7 @@ src_unpack() { mv fio.cpp fio.cpp-orig sed -e "s:#include <ctype.h>://#include <ctype.h>:" fio.cpp-orig >fio.cpp - if [ "${ARCH}" = "ppc" ]; then + if [ "${ARCH}" = "ppc" -o "${ARCH}" = "sparc" -o "${ARCH}" = "sparc64" ]; then # This patch fixes inverted color on big endian machines einfo "Applying big endian patch..." cd ${S}; patch -p0 < ${FILESDIR}/${P}-bigendian.diff > /dev/null || die @@ -36,7 +36,7 @@ src_unpack() { } src_compile() { - cd ${P} + cd ${S} ./configure Linux \ --prefix=/usr emake || die "Parallel make failed" |