diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2013-01-22 20:08:39 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2013-01-22 20:08:39 +0000 |
commit | ed2d1192c2259d9280b07ce9e07c7e7fee1ca982 (patch) | |
tree | 5a27c13d8cc2735f080da2b27d562fe28344b796 /games-puzzle/drod-bin | |
parent | Add missing dependency for simple-agent as it also needs newer gi python modu... (diff) | |
download | gentoo-2-ed2d1192c2259d9280b07ce9e07c7e7fee1ca982.tar.gz gentoo-2-ed2d1192c2259d9280b07ce9e07c7e7fee1ca982.tar.bz2 gentoo-2-ed2d1192c2259d9280b07ce9e07c7e7fee1ca982.zip |
old
(Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-puzzle/drod-bin')
-rw-r--r-- | games-puzzle/drod-bin/ChangeLog | 8 | ||||
-rw-r--r-- | games-puzzle/drod-bin/drod-bin-1.6.6.ebuild | 63 |
2 files changed, 5 insertions, 66 deletions
diff --git a/games-puzzle/drod-bin/ChangeLog b/games-puzzle/drod-bin/ChangeLog index d6274c5f2264..92d43b743d33 100644 --- a/games-puzzle/drod-bin/ChangeLog +++ b/games-puzzle/drod-bin/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-puzzle/drod-bin -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/drod-bin/ChangeLog,v 1.17 2012/08/11 12:52:02 maekke Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/drod-bin/ChangeLog,v 1.18 2013/01/22 20:08:39 mr_bones_ Exp $ + + 22 Jan 2013; Michael Sterrett <mr_bones_@gentoo.org> -drod-bin-1.6.6.ebuild: + old 11 Aug 2012; Markus Meier <maekke@gentoo.org> drod-bin-1.6.7.ebuild: x86 stable, bug #418987 @@ -63,4 +66,3 @@ 19 Nov 2003; Michael Sterrett <mr_bones_@gentoo.org> drod-bin-1.6.3.ebuild, files/install.patch: initial commit; ebuild supplied by James Gibson via bug 33207 (modified) - diff --git a/games-puzzle/drod-bin/drod-bin-1.6.6.ebuild b/games-puzzle/drod-bin/drod-bin-1.6.6.ebuild deleted file mode 100644 index f5b0a780103e..000000000000 --- a/games-puzzle/drod-bin/drod-bin-1.6.6.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/drod-bin/drod-bin-1.6.6.ebuild,v 1.10 2012/02/08 21:30:15 vapier Exp $ - -inherit eutils unpacker games - -DESCRIPTION="Deadly Rooms Of Death: face room upon room of deadly things, armed with only a sword and your wits" -HOMEPAGE="http://www.drod.net/" -SRC_URI="mirror://sourceforge/drod/CDROD-${PV}-setup.sh.bin" - -LICENSE="MPL-1.1" -SLOT="0" -KEYWORDS="-* ~amd64 x86" -IUSE="" -RESTRICT="strip" - -DEPEND="" -RDEPEND=" - x86? ( - x11-libs/libX11 - media-libs/freetype - media-libs/libsdl - media-libs/sdl-ttf - sys-libs/libstdc++-v3 - ) - amd64? ( - app-emulation/emul-linux-x86-xlibs - app-emulation/emul-linux-x86-sdl - app-emulation/emul-linux-x86-compat - )" - -S="${WORKDIR}" - -src_unpack() { - unpack_makeself - GDIR=${GAMES_PREFIX_OPT}/drod -} - -src_install() { - ./install.sh -R "${D}" -s "${GDIR}" -rl -pn -o -I \ - || die "install.sh failed" - dodir "${GAMES_BINDIR}" - dosym "${GDIR}/drod" "${GAMES_BINDIR}/drod" - - newicon Data/Bitmaps/Icon.bmp ${PN}.bmp - make_desktop_entry drod "Deadly Rooms of Death" /usr/share/pixmaps/${PN}.bmp - - prepgamesdirs -} - -pkg_preinst() { - games_pkg_preinst - if [[ -d "${ROOT}${GDIR}/bin/Data" ]] ; then - mv "${ROOT}${GDIR}"/{bin/Data,Data.backup} - echo - ewarn "Your saved games have been backed up to ${GDIR}/Data.backup." - ewarn "You can restore your game by copying the files to" - ewarn "~/.caravel/drod-1_6/ like this:" - ewarn " mkdir -p ~/.caravel/drod-1_6/" - ewarn " cp ${GDIR}/Data.backup/* ~/.caravel/drod-1_6/" - echo - fi -} |