diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2008-06-26 03:27:03 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2008-06-26 03:27:03 +0000 |
commit | 97ef23a808d7894a661e3887151dab10e6ae69d5 (patch) | |
tree | 5c16778384e6e47a3f22978ef68ec2b92a417900 /games-puzzle/pathological | |
parent | old (diff) | |
download | historical-97ef23a808d7894a661e3887151dab10e6ae69d5.tar.gz historical-97ef23a808d7894a661e3887151dab10e6ae69d5.tar.bz2 historical-97ef23a808d7894a661e3887151dab10e6ae69d5.zip |
old
Package-Manager: portage-2.1.4.4
Diffstat (limited to 'games-puzzle/pathological')
-rw-r--r-- | games-puzzle/pathological/pathological-1.1.3-r1.ebuild | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/games-puzzle/pathological/pathological-1.1.3-r1.ebuild b/games-puzzle/pathological/pathological-1.1.3-r1.ebuild deleted file mode 100644 index a90e671677b1..000000000000 --- a/games-puzzle/pathological/pathological-1.1.3-r1.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/pathological/pathological-1.1.3-r1.ebuild,v 1.7 2008/02/29 19:37:46 carlo Exp $ - -inherit eutils games - -DESCRIPTION="An enriched clone of the game 'Logical' by Rainbow Arts" -HOMEPAGE="http://pathological.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ia64 ppc sparc x86" -IUSE="doc" - -DEPEND="doc? ( media-libs/netpbm )" -RDEPEND=">=dev-python/pygame-1.5.5" - -src_unpack() { - unpack ${A} - cd "${S}" - unpack ./${PN}.6.gz - - epatch "${FILESDIR}"/${P}-build.patch - epatch "${FILESDIR}"/${P}-music-py.patch - - if use doc ; then - sed -i \ - -e '5,$ s/=/ /g' makehtml \ - || die "sed makehtml failed" - else - echo "#!/bin/sh" > makehtml - fi - - sed -i \ - -e "s:/usr/share/games:${GAMES_DATADIR}:" \ - -e "s:/var/games:${GAMES_STATEDIR}:" \ - -e "s:exec:exec python:" \ - ${PN} || die "sed ${PN} failed" - - sed -i \ - -e "s:/usr/lib/${PN}/bin:$(games_get_libdir)/${PN}:" \ - ${PN}.py || die "sed ${PN}.py failed" -} - -src_install() { - dogamesbin ${PN} || die "dogamesbin failed" - - exeinto "$(games_get_libdir)"/${PN} - doexe write-highscores || die "doexe failed" - - insinto "${GAMES_DATADIR}"/${PN} - doins -r circuits graphics music sounds ${PN}.py || die "doins data failed" - - insinto "${GAMES_STATEDIR}" - doins ${PN}_scores || die "doins scores failed" - fperms 660 "${GAMES_STATEDIR}"/${PN}_scores - - dodoc changelog README TODO - doman ${PN}.6 - use doc && dohtml -r html/* - - doicon ${PN}.xpm - make_desktop_entry ${PN} Pathological ${PN} - - # remove some unneeded resource files - rm -f "${D}/${GAMES_DATADIR}"/${PN}/graphics/*.xcf - prepgamesdirs -} |