diff options
author | Mamoru Komachi <usata@gentoo.org> | 2004-11-09 19:51:45 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2004-11-09 19:51:45 +0000 |
commit | 30643eedce26f24723bbedb5861cae9afb9923ef (patch) | |
tree | 8ddd2994d7216af4b59c98c648383e8ca3b487e3 /media-gfx | |
parent | Version bump plus one patch (Manifest recommit) (diff) | |
download | gentoo-2-30643eedce26f24723bbedb5861cae9afb9923ef.tar.gz gentoo-2-30643eedce26f24723bbedb5861cae9afb9923ef.tar.bz2 gentoo-2-30643eedce26f24723bbedb5861cae9afb9923ef.zip |
Added to ~ppc-macos.
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/xli/ChangeLog | 5 | ||||
-rw-r--r-- | media-gfx/xli/xli-1.17.0.ebuild | 14 |
2 files changed, 14 insertions, 5 deletions
diff --git a/media-gfx/xli/ChangeLog b/media-gfx/xli/ChangeLog index fdf2513f86c8..4cbd6a425694 100644 --- a/media-gfx/xli/ChangeLog +++ b/media-gfx/xli/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-gfx/xli # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/xli/ChangeLog,v 1.9 2004/06/24 22:52:25 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/xli/ChangeLog,v 1.10 2004/11/09 19:51:45 usata Exp $ + + 10 Nov 2004; Mamoru KOMACHI <usata@gentoo.org> xli-1.17.0.ebuild: + Added to ~ppc-macos. 31 May 2004; Danny van Dyk <kugelfang@gentoo.org> xli-1.17.0.ebuild: Marked ~amd64. diff --git a/media-gfx/xli/xli-1.17.0.ebuild b/media-gfx/xli/xli-1.17.0.ebuild index 4f3c72a22c98..2770b1555dec 100644 --- a/media-gfx/xli/xli-1.17.0.ebuild +++ b/media-gfx/xli/xli-1.17.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/xli/xli-1.17.0.ebuild,v 1.14 2004/07/14 18:33:40 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/xli/xli-1.17.0.ebuild,v 1.15 2004/11/09 19:51:45 usata Exp $ inherit alternatives @@ -10,7 +10,7 @@ HOMEPAGE="http://pantransit.reptiles.org/prog/" SLOT="0" LICENSE="X11" -KEYWORDS="x86 ppc hppa ~amd64" +KEYWORDS="x86 ppc hppa ~amd64 ~ppc-macos" IUSE="" DEPEND="virtual/x11 @@ -24,6 +24,12 @@ src_unpack() { cd ${S} + if use ppc-macos ; then + for f in $(grep zopen * | cut -d':' -f1 | uniq); do + sed -i "s:zopen:xli_zopen:g" $f + done + fi + sed -i Imakefile \ -e "/^DEFINES =/s/$/ -DHAVE_GUNZIP/" \ -e "/CCOPTIONS =/s/=.*/=/" @@ -74,9 +80,9 @@ update_alternatives() { } pkg_postinst() { - update_alternatives + use ppc-macos || update_alternatives } pkg_postrm() { - update_alternatives + use ppc-macos || update_alternatives } |