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 | e3182e7e7014f968d4580e24926c0b0438d7e8c6 (patch) | |
tree | a74b5830605b69569de45015fe274fb1d4da21b6 /games-puzzle/pathological | |
parent | ChangeLog fixes (diff) | |
download | gentoo-2-e3182e7e7014f968d4580e24926c0b0438d7e8c6.tar.gz gentoo-2-e3182e7e7014f968d4580e24926c0b0438d7e8c6.tar.bz2 gentoo-2-e3182e7e7014f968d4580e24926c0b0438d7e8c6.zip |
clean older ebuild
Diffstat (limited to 'games-puzzle/pathological')
-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 |
2 files changed, 0 insertions, 70 deletions
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 -} |