diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2003-10-07 06:19:27 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2003-10-07 06:19:27 +0000 |
commit | 5e174156ee0fd0734e4c12c6342f3106619a092b (patch) | |
tree | 136c6d9bc09bab22f97560665330ca1a182ba98b | |
parent | version bump (diff) | |
download | gentoo-2-5e174156ee0fd0734e4c12c6342f3106619a092b.tar.gz gentoo-2-5e174156ee0fd0734e4c12c6342f3106619a092b.tar.bz2 gentoo-2-5e174156ee0fd0734e4c12c6342f3106619a092b.zip |
version bump
-rw-r--r-- | games-arcade/pachi/ChangeLog | 7 | ||||
-rw-r--r-- | games-arcade/pachi/Manifest | 4 | ||||
-rw-r--r-- | games-arcade/pachi/files/digest-pachi-20031005 | 1 | ||||
-rw-r--r-- | games-arcade/pachi/pachi-20031005.ebuild | 54 |
4 files changed, 63 insertions, 3 deletions
diff --git a/games-arcade/pachi/ChangeLog b/games-arcade/pachi/ChangeLog index 446e13cceadd..92b4c1a1851c 100644 --- a/games-arcade/pachi/ChangeLog +++ b/games-arcade/pachi/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-arcade/pachi # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/pachi/ChangeLog,v 1.1 2003/09/28 05:54:02 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/pachi/ChangeLog,v 1.2 2003/10/07 06:19:24 mr_bones_ Exp $ + +*pachi-20031005 (06 Oct 2003) + + 06 Oct 2003; Michael Sterrett <mr_bones_@gentoo.org> pachi-20031005.ebuild: + version bump *pachi-20030927 (27 Sep 2003) diff --git a/games-arcade/pachi/Manifest b/games-arcade/pachi/Manifest index 536a42d1e73d..33d76109c447 100644 --- a/games-arcade/pachi/Manifest +++ b/games-arcade/pachi/Manifest @@ -1,6 +1,6 @@ MD5 71c56f19e5cdd4ee89b801861ff9d5fc pachi-20030927.ebuild 1417 MD5 3f11aaf297b2fe67404a96cda13e9bfe metadata.xml 251 -MD5 720572b94c54b134e2ea21537d0cac9f ChangeLog 359 -MD5 71c56f19e5cdd4ee89b801861ff9d5fc pachi-20031005.ebuild 1417 +MD5 c4b1ecc6aeb83a38fac1b39d98cd0056 ChangeLog 484 +MD5 539c643799ab52db136141d76d3fced2 pachi-20031005.ebuild 1402 MD5 6428944049b72b43aa17e19b844380a3 files/digest-pachi-20030927 68 MD5 04f218372206861943e9493bfde64f73 files/digest-pachi-20031005 68 diff --git a/games-arcade/pachi/files/digest-pachi-20031005 b/games-arcade/pachi/files/digest-pachi-20031005 new file mode 100644 index 000000000000..9051e56cdd1b --- /dev/null +++ b/games-arcade/pachi/files/digest-pachi-20031005 @@ -0,0 +1 @@ +MD5 b892149b2290d1de6fe2d21e8a9099d0 pachi-20031005.tar.bz2 2038824 diff --git a/games-arcade/pachi/pachi-20031005.ebuild b/games-arcade/pachi/pachi-20031005.ebuild new file mode 100644 index 000000000000..1e23f55d96c7 --- /dev/null +++ b/games-arcade/pachi/pachi-20031005.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/pachi/pachi-20031005.ebuild,v 1.1 2003/10/07 06:19:24 mr_bones_ Exp $ + +inherit games + +S="${WORKDIR}/Pachi" +DESCRIPTION="A platforms game inspired by games like Manic Miner and Jet Set Willy" +# Upstream doesn't version their releases. +# I downloaded and re-compressed with tar -jcvf +#SRC_URI="mirror://sourceforge/dragontech/pachi_source.tgz" +SRC_URI="mirror://gentoo/${P}.tar.bz2" +HOMEPAGE="http://dragontech.sourceforge.net/index.php?main=pachi&lang=en" + +LICENSE="GPL-2" +KEYWORDS="x86" +SLOT="0" + +RDEPEND=">=media-libs/libsdl-1.2 + media-libs/sdl-mixer + sys-libs/zlib" +DEPEND="${RDEPEND} + >=sys-apps/sed-4" + +src_unpack() { + unpack ${A} + cd ${S} + + sed -i \ + -e "s:/var/lib/games/:${GAMES_STATEDIR}/:" configure.in || \ + die "sed configure.in failed" +} + +src_install() { + local dir="${GAMES_DATADIR}/${PN}" + local statedir="${GAMES_STATEDIR}/${PN}/data" + + dogamesbin src/pachi + insinto ${dir}/data + doins data/{backs,monsters,objects_v2,rooms_v2}.dat + insinto ${dir}/fonts + doins fonts/*.T + insinto ${dir}/music + doins music/*.s?m + insinto ${dir}/sounds + doins sounds/*.wav + insinto ${dir}/Tgfx + doins Tgfx/*.{T8,bmp} + dodoc AUTHORS ChangeLog + insinto ${statedir} + doins data/scores.dat + prepgamesdirs + fperms 660 ${statedir}/scores.dat +} |