diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2005-01-21 07:17:45 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2005-01-21 07:17:45 +0000 |
commit | 085cc38e66c3416edbda0fe99e07c5c517dcc43d (patch) | |
tree | c338ffd2504409d8e3fc4633f9380f82cd33717a /games-arcade/blobwars/blobwars-1.02.ebuild | |
parent | Corrected uim version detection; bug #78751. (Manifest recommit) (diff) | |
download | gentoo-2-085cc38e66c3416edbda0fe99e07c5c517dcc43d.tar.gz gentoo-2-085cc38e66c3416edbda0fe99e07c5c517dcc43d.tar.bz2 gentoo-2-085cc38e66c3416edbda0fe99e07c5c517dcc43d.zip |
version bump
Diffstat (limited to 'games-arcade/blobwars/blobwars-1.02.ebuild')
-rw-r--r-- | games-arcade/blobwars/blobwars-1.02.ebuild | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/games-arcade/blobwars/blobwars-1.02.ebuild b/games-arcade/blobwars/blobwars-1.02.ebuild new file mode 100644 index 000000000000..343ce0900b60 --- /dev/null +++ b/games-arcade/blobwars/blobwars-1.02.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/blobwars/blobwars-1.02.ebuild,v 1.1 2005/01/21 07:17:45 mr_bones_ Exp $ + +inherit games + +DESCRIPTION="Platform game about a blob and his quest to rescue MIAs from an alien invader" +HOMEPAGE="http://www.parallelrealities.co.uk/blobWars.php" +# download page has a lame PHP thing. +SRC_URI="mirror://gentoo/${P}-1.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 ~alpha ppc ~amd64" +IUSE="" + +DEPEND=">=media-libs/libsdl-1.2.5 + media-libs/sdl-mixer + media-libs/sdl-ttf + media-libs/sdl-image" + +src_compile() { + emake \ + BINDIR="${GAMES_BINDIR}/" \ + DATADIR="${GAMES_DATADIR}/parallelrealities/" \ + DOCDIR="/usr/share/doc/${PF}/" \ + ICONDIR="/usr/share/icons/" \ + KDE="/usr/share/applnk/Games/Arcade/" \ + GNOME="/usr/share/gnome/apps/Games/" \ + || die "emake failed" +} + +src_install() { + make \ + BINDIR="${D}/${GAMES_BINDIR}/" \ + DATADIR="${D}/${GAMES_DATADIR}/parallelrealities/" \ + DOCDIR="${D}/usr/share/doc/${PF}/" \ + ICONDIR="${D}/usr/share/icons/" \ + KDE="${D}/usr/share/applnk/Games/Arcade/" \ + GNOME="${D}/usr/share/gnome/apps/Games/" \ + install || die "make install failed" + # now make the docs Gentoo friendly. + dohtml "${D}/usr/share/doc/${PF}/"* + dodoc "${D}/usr/share/doc/${PF}/"{CHANGES,PORTING,README} + rm -f "${D}/usr/share/doc/${PF}/"*.{png,gif,html} \ + "${D}/usr/share/doc/${PF}/"{CHANGES,LICENSE,PORTING,README} + prepgamesdirs +} + +pkg_postinst() { + games_pkg_postinst + + echo + ewarn "${PN} ${PV} is not save-game compatible with previous versions." + einfo "Please remove the directory ~/.parallelrealities/blobwars before playing if it exists." + echo + einfo "If you have older save files and you wish to continue those games," + einfo "you'll need to remerge the version with which you started" + einfo "those save-games." + echo +} |