diff options
author | 2009-05-13 16:25:54 +0000 | |
---|---|---|
committer | 2009-05-13 16:25:54 +0000 | |
commit | e6af09edc4c611aa0f41a8125d060485fcf46da6 (patch) | |
tree | 37218d98a160cd8edd57d9610263f2ea8e232488 /games-arcade/ceferino/ceferino-0.97.8.ebuild | |
parent | amd64 stable, bug #269591 (diff) | |
download | historical-e6af09edc4c611aa0f41a8125d060485fcf46da6.tar.gz historical-e6af09edc4c611aa0f41a8125d060485fcf46da6.tar.bz2 historical-e6af09edc4c611aa0f41a8125d060485fcf46da6.zip |
EAPI=2; add gcc44 patch submitted by Oschtan via bug #269678
Package-Manager: portage-2.1.6.11/cvs/Linux i686
Diffstat (limited to 'games-arcade/ceferino/ceferino-0.97.8.ebuild')
-rw-r--r-- | games-arcade/ceferino/ceferino-0.97.8.ebuild | 29 |
1 files changed, 16 insertions, 13 deletions
diff --git a/games-arcade/ceferino/ceferino-0.97.8.ebuild b/games-arcade/ceferino/ceferino-0.97.8.ebuild index 0ec80069b359..4ccd9bfb2f5c 100644 --- a/games-arcade/ceferino/ceferino-0.97.8.ebuild +++ b/games-arcade/ceferino/ceferino-0.97.8.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/ceferino/ceferino-0.97.8.ebuild,v 1.1 2007/08/16 00:51:36 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/ceferino/ceferino-0.97.8.ebuild,v 1.2 2009/05/13 16:25:54 mr_bones_ Exp $ +EAPI=2 inherit eutils games DESCRIPTION="Super-Pang clone (destroy bouncing balloons with your grapnel)" @@ -20,22 +21,24 @@ RDEPEND=">=media-libs/libsdl-1.2 DEPEND="${RDEPEND} nls? ( sys-devel/gettext )" -src_unpack() { - unpack ${A} - cd "${S}" - sed -i '/^\(gnu\)\?localedir /s:= .*:= /usr/share/locale:' \ - po/Makefile.in.in || die "sed failed" - sed -i '/^INCLUDES/s:\$(datadir)/locale:/usr/share/locale:' \ - src/Makefile.in || die "sed failed" +src_prepare() { + epatch "${FILESDIR}"/${P}-gcc44.patch + sed -i \ + -e '/^\(gnu\)\?localedir /s:= .*:= /usr/share/locale:' \ + po/Makefile.in.in \ + || die "sed failed" + sed -i \ + -e '/^INCLUDES/s:\$(datadir)/locale:/usr/share/locale:' \ + src/Makefile.in \ + || die "sed failed" } -src_compile() { - egamesconf $(use_enable nls) || die - emake || die "emake failed" +src_configure() { + egamesconf $(use_enable nls) } src_install() { - make DESTDIR="${D}" install || die "make install failed" + emake DESTDIR="${D}" install || die "emake install failed" dodoc AUTHORS ChangeLog README TODO newicon data/ima/icono.png ${PN}.png make_desktop_entry ceferino "Don Ceferino Hazaña" |