diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-05-12 08:52:36 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-05-12 08:52:36 +0000 |
commit | e93d415ef6f49854f5cc07674ac81e348de87896 (patch) | |
tree | 7fba8599970cf2c845da140b691bacc93cd6da41 /games-puzzle/pathological | |
parent | ChangeLog fixes (diff) | |
download | historical-e93d415ef6f49854f5cc07674ac81e348de87896.tar.gz historical-e93d415ef6f49854f5cc07674ac81e348de87896.tar.bz2 historical-e93d415ef6f49854f5cc07674ac81e348de87896.zip |
clean older ebuild
Diffstat (limited to 'games-puzzle/pathological')
-rw-r--r-- | games-puzzle/pathological/Manifest | 2 | ||||
-rw-r--r-- | games-puzzle/pathological/files/digest-pathological-1.1.2 | 1 | ||||
-rw-r--r-- | games-puzzle/pathological/pathological-1.1.2.ebuild | 69 |
3 files changed, 0 insertions, 72 deletions
diff --git a/games-puzzle/pathological/Manifest b/games-puzzle/pathological/Manifest index b39d043254e8..f7986932999b 100644 --- a/games-puzzle/pathological/Manifest +++ b/games-puzzle/pathological/Manifest @@ -1,6 +1,4 @@ MD5 1b3b01e9a55f05e2808e4d71fd2b3fd6 ChangeLog 890 MD5 95e2b5bfd7767aeae061c77f7e1a055e metadata.xml 221 -MD5 535968725c52593d11221e6a00cc62fe pathological-1.1.2.ebuild 1656 MD5 f66e08907257be388f5e725188f4096e pathological-1.1.3.ebuild 1716 -MD5 23b647c8cc1fa2737510a5972b26aa89 files/digest-pathological-1.1.2 71 MD5 af2e4c0e952d40232cb322d621f37995 files/digest-pathological-1.1.3 71 diff --git a/games-puzzle/pathological/files/digest-pathological-1.1.2 b/games-puzzle/pathological/files/digest-pathological-1.1.2 deleted file mode 100644 index b9920ee4bf0c..000000000000 --- a/games-puzzle/pathological/files/digest-pathological-1.1.2 +++ /dev/null @@ -1 +0,0 @@ -MD5 40091e7c3a391a52f6b6806770ab944f pathological_1.1.2.tar.gz 7000094 diff --git a/games-puzzle/pathological/pathological-1.1.2.ebuild b/games-puzzle/pathological/pathological-1.1.2.ebuild deleted file mode 100644 index 45396397c3d2..000000000000 --- a/games-puzzle/pathological/pathological-1.1.2.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2004 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/pathological/pathological-1.1.2.ebuild,v 1.2 2004/02/20 06:53:36 mr_bones_ Exp $ - -inherit games - -MY_P="${P/-/_}" -DESCRIPTION="An enriched clone of the game 'Logical' by Rainbow Arts" -HOMEPAGE="http://pathological.sourceforge.net/" -SRC_URI="mirror://sourceforge/pathological/${MY_P}.tar.gz" -KEYWORDS="x86" -LICENSE="GPL-2" -SLOT="0" -IUSE="doc" - -DEPEND="doc? ( media-libs/netpbm ) - >=sys-apps/sed-4" -RDEPEND=">=dev-python/pygame-1.5.5 - dev-lang/python" - -src_unpack() { - unpack ${A} - cd ${S} - - use doc && { - sed -i \ - -e '5,$ s/=/ /g' makehtml || \ - die "sed makehtml failed" - } || { - echo "#!/bin/sh" > makehtml || \ - die "clearing makehtml failed" - } - - sed -i \ - -e "/^cd / s/usr/share/pathological${GAMES_DATADIR}/${PN}" \ - pathological || die "sed pathological failed" - - sed -i \ - -e "/^write_highscores / s/usr/lib/pathological/bin${GAMES_LIBDIR}/${PN}" \ - pathological.py || die "sed pathological.py failed" -} - -src_install() { - # executables - dogamesbin pathological - insinto ${GAMES_DATADIR}/${PN} - insopts -m0750 - doins pathological.py - exeinto ${GAMES_LIBDIR}/${PN} - doexe write-highscores - - # removed some unneeded resource files - rm -f graphics/*.xcf - rm -f sounds/*.orig - # "install" resource files - mv circuits graphics music sounds ${D}/${GAMES_DATADIR}/${PN} - - # setup high score file - insinto ${GAMES_STATEDIR} - insopts -m0664 - doins pathological_scores - - # documentation - dodoc README TODO - doman pathological.6.gz - use doc && dohtml -r html/ - - prepgamesdirs -} |