diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2005-09-16 02:27:36 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2005-09-16 02:27:36 +0000 |
commit | f6705a81202f33b9baeb6ebb326b67a859ab858c (patch) | |
tree | 05e706c3f730c3c4bc36c34766d763a61b54fa3d /games-emulation/raine | |
parent | needs app-arch/unzip; tidy (diff) | |
download | historical-f6705a81202f33b9baeb6ebb326b67a859ab858c.tar.gz historical-f6705a81202f33b9baeb6ebb326b67a859ab858c.tar.bz2 historical-f6705a81202f33b9baeb6ebb326b67a859ab858c.zip |
needs app-arch/unzip; tidy
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'games-emulation/raine')
-rw-r--r-- | games-emulation/raine/ChangeLog | 5 | ||||
-rw-r--r-- | games-emulation/raine/Manifest | 4 | ||||
-rw-r--r-- | games-emulation/raine/raine-0.39.0.ebuild | 30 |
3 files changed, 21 insertions, 18 deletions
diff --git a/games-emulation/raine/ChangeLog b/games-emulation/raine/ChangeLog index 48353a67a83e..8183a5177dfe 100644 --- a/games-emulation/raine/ChangeLog +++ b/games-emulation/raine/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-emulation/raine # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/raine/ChangeLog,v 1.11 2005/07/21 02:22:49 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/raine/ChangeLog,v 1.12 2005/09/16 02:27:36 mr_bones_ Exp $ + + 16 Sep 2005; Michael Sterrett <mr_bones_@gentoo.org> raine-0.39.0.ebuild: + needs app-arch/unzip; tidy *raine-0.42.4 (21 Jul 2005) diff --git a/games-emulation/raine/Manifest b/games-emulation/raine/Manifest index ae9ebe8756bf..30454aa006f9 100644 --- a/games-emulation/raine/Manifest +++ b/games-emulation/raine/Manifest @@ -1,9 +1,9 @@ -MD5 e00dc4152bf3eaf9c65b96c4e4528f4f raine-0.39.0.ebuild 1378 +MD5 c02af0a52d6692e224a14c78ffdd2de8 raine-0.39.0.ebuild 1450 MD5 79090f34510bb7b70d699d6099db82d3 raine-0.42.2.ebuild 1322 MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 MD5 1e9fe616d50e52330a12c00c5bedf083 raine-0.42.0.ebuild 1430 MD5 32a83394cc33f3edf6517a4e5700b86f raine-0.42.4.ebuild 1308 -MD5 6b64a9f990daba1287d0abd38b7a02b5 ChangeLog 1317 +MD5 29b414bc8af222ad5912c6a408195a46 ChangeLog 1423 MD5 c4660e529000ed1406f1e98358b1b404 files/raine-allegro_4.1.5_fix.patch 569 MD5 67647762ce31a7c21a2a040536f02b29 files/Raine.desktop 236 MD5 7671c01ba2551dbd18921891d2dad17d files/digest-raine-0.42.4 176 diff --git a/games-emulation/raine/raine-0.39.0.ebuild b/games-emulation/raine/raine-0.39.0.ebuild index 444c57b97e23..6d24467656e4 100644 --- a/games-emulation/raine/raine-0.39.0.ebuild +++ b/games-emulation/raine/raine-0.39.0.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/raine/raine-0.39.0.ebuild,v 1.7 2004/07/01 11:16:04 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/raine/raine-0.39.0.ebuild,v 1.8 2005/09/16 02:27:36 mr_bones_ Exp $ inherit games @@ -15,16 +15,17 @@ SLOT="0" KEYWORDS="x86" IUSE="static debug nls kde" -DEPEND="virtual/libc - media-libs/allegro +RDEPEND="media-libs/allegro sys-libs/zlib media-libs/svgalib" +DEPEND="${RDEPEND} + app-arch/unzip" -S="${WORKDIR}/${PN}" +S=${WORKDIR}/${PN} src_unpack() { unpack ${A} - cd ${S} + cd "${S}" echo > detect-cpu echo > cpuinfo } @@ -41,24 +42,23 @@ src_compile() { _MARCH="${CFLAGS}" \ OSTYPE=linux \ RAINE_LINUX=1 \ - ${myopts} || die + ${myopts} || die "emake failed" } src_install() { - make prefix=${D} install || die - dogamesbin ${D}/usr/games/raine - rm ${D}/usr/games/raine + make prefix="${D}" install || die "make install failed" + dogamesbin "${D}"/usr/games/raine + rm "${D}"/usr/games/raine - use nls || rm -rf ${D}/usr/share/raine/languages + use nls || rm -rf "${D}"/usr/share/raine/languages - dodoc ${WORKDIR}/raine.txt + dodoc "${WORKDIR}"/raine.txt insinto /usr/share/icons - doins ${WORKDIR}/*.png + doins "${WORKDIR}"/*.png if use kde ; then insinto /usr/share/applnk/Games - doins ${FILESDIR}/Raine.desktop + doins "${FILESDIR}"/Raine.desktop fi - prepgamesdirs } |