diff options
author | Christoph Junghans <ottxor@gentoo.org> | 2012-10-04 15:57:42 +0000 |
---|---|---|
committer | Christoph Junghans <ottxor@gentoo.org> | 2012-10-04 15:57:42 +0000 |
commit | 024d2d5568291396213c8b039c6d889e00ee1605 (patch) | |
tree | d0ccc823b73bfb398ed45f9c4d657ccf7d57bd32 /media-gfx | |
parent | added prefix keywords (bug #351219) (diff) | |
download | gentoo-2-024d2d5568291396213c8b039c6d889e00ee1605.tar.gz gentoo-2-024d2d5568291396213c8b039c6d889e00ee1605.tar.bz2 gentoo-2-024d2d5568291396213c8b039c6d889e00ee1605.zip |
added prefix support (bug #433856)
(Portage version: 2.2.0_alpha135/cvs/Linux i686)
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/tic98/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/tic98/tic98-1.01-r3.ebuild | 22 |
2 files changed, 15 insertions, 14 deletions
diff --git a/media-gfx/tic98/ChangeLog b/media-gfx/tic98/ChangeLog index 6cffdf8f9976..64990e829fea 100644 --- a/media-gfx/tic98/ChangeLog +++ b/media-gfx/tic98/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-gfx/tic98 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/tic98/ChangeLog,v 1.14 2009/07/05 12:24:52 maekke Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/tic98/ChangeLog,v 1.15 2012/10/04 15:57:42 ottxor Exp $ + + 04 Oct 2012; Christoph Junghans <ottxor@gentoo.org> tic98-1.01-r3.ebuild: + added prefix support (bug #433856) 05 Jul 2009; Markus Meier <maekke@gentoo.org> tic98-1.01-r3.ebuild, +files/tic98-1.01-glibc-2.10.patch: diff --git a/media-gfx/tic98/tic98-1.01-r3.ebuild b/media-gfx/tic98/tic98-1.01-r3.ebuild index bdaf06587cd8..6164dcffa0b4 100644 --- a/media-gfx/tic98/tic98-1.01-r3.ebuild +++ b/media-gfx/tic98/tic98-1.01-r3.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/tic98/tic98-1.01-r3.ebuild,v 1.5 2009/07/05 12:24:52 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/tic98/tic98-1.01-r3.ebuild,v 1.6 2012/10/04 15:57:42 ottxor Exp $ + +EAPI=4 inherit eutils @@ -10,19 +12,15 @@ SRC_URI="http://membled.com/work/mirror/tic98/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 x86" +KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~ppc-macos" IUSE="" -DEPEND="" -RDEPEND="" RESTRICT="test" S="${WORKDIR}/${PN}" -src_unpack() { - unpack ${A} +src_prepare() { epatch "${FILESDIR}"/${P}-macos.patch - cd "${S}" epatch "${FILESDIR}"/${P}-gentoo.diff epatch "${FILESDIR}"/${P}-glibc-2.10.patch @@ -35,14 +33,14 @@ src_unpack() { } src_compile() { - emake all || die - emake all2 || die + emake all + emake all2 } src_install() { dodir /usr/bin - emake BIN="${D}"usr/bin install || die + emake BIN="${ED}"usr/bin install # collision with media-gfx/netpbm, see bug #207534 - rm "${D}"/usr/bin/pbmclean || die + rm "${ED}"/usr/bin/pbmclean || die } |