diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2008-04-22 11:04:17 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2008-04-22 11:04:17 +0000 |
commit | 56cd18d90c8b80d273d7320bfd1b4d6f5bf9d8b8 (patch) | |
tree | 7762610aa19cdf3272058b1fff94553ad54a94cb /sci-astronomy/ds9 | |
parent | Change message about failed gettext conversion to eerror. (diff) | |
download | gentoo-2-56cd18d90c8b80d273d7320bfd1b4d6f5bf9d8b8.tar.gz gentoo-2-56cd18d90c8b80d273d7320bfd1b4d6f5bf9d8b8.tar.bz2 gentoo-2-56cd18d90c8b80d273d7320bfd1b4d6f5bf9d8b8.zip |
Fixed patch location for x86 and a sed function
(Portage version: 2.1.5_rc4)
Diffstat (limited to 'sci-astronomy/ds9')
-rw-r--r-- | sci-astronomy/ds9/ChangeLog | 5 | ||||
-rw-r--r-- | sci-astronomy/ds9/ds9-5.2.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/sci-astronomy/ds9/ChangeLog b/sci-astronomy/ds9/ChangeLog index 72fc3bdab32a..d48c6d33890b 100644 --- a/sci-astronomy/ds9/ChangeLog +++ b/sci-astronomy/ds9/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-astronomy/ds9 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/ds9/ChangeLog,v 1.10 2008/04/20 08:40:29 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/ds9/ChangeLog,v 1.11 2008/04/22 11:04:17 bicatali Exp $ + + 22 Apr 2008; Sébastien Fabbro <bicatali@gentoo.org> ds9-5.2.ebuild: + Fixed patch location for x86 and a sed function 20 Apr 2008; Sébastien Fabbro <bicatali@gentoo.org> files/ds9-5.2-Makefile.patch: diff --git a/sci-astronomy/ds9/ds9-5.2.ebuild b/sci-astronomy/ds9/ds9-5.2.ebuild index 02ad7c3c6dde..5eb0c5a5e1aa 100644 --- a/sci-astronomy/ds9/ds9-5.2.ebuild +++ b/sci-astronomy/ds9/ds9-5.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/ds9/ds9-5.2.ebuild,v 1.1 2008/04/16 16:13:55 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-astronomy/ds9/ds9-5.2.ebuild,v 1.2 2008/04/22 11:04:17 bicatali Exp $ inherit flag-o-matic eutils @@ -29,13 +29,13 @@ src_unpack() { epatch "${FILESDIR}"/${P}-Makefile.patch # fix stack smashing on x86 with gcc-4.2 - use x86 && epatch "${FILESDIR}"/${P}-gcc4.2-x86.patch + use x86 && epatch "${FILESDIR}"/${PN}-5.1-gcc4.2-x86.patch # remove build-time dependency on etags (i.e. emacs or xemacs) sed -i -e '/^all/s/TAGS//' saotk/*/Makefile || die "sed failed" # remove forced compilers and let defined ones propagate - sed -i -e '/^CC[[:space:]]/d' '/^CXX[[:space:]]/d' make.* + sed -i -e '/^CC[[:space:]]/d' -e '/^CXX[[:space:]]/d' make.* } src_compile() { |