diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2015-01-18 15:41:51 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2015-01-18 15:41:51 +0000 |
commit | 4b868868b66be99536f044b31bceafff1cb12e0e (patch) | |
tree | 2ea8dacead5962945b022808c8e9c3f201135aab /games-engines | |
parent | EAPI 5 (diff) | |
download | gentoo-2-4b868868b66be99536f044b31bceafff1cb12e0e.tar.gz gentoo-2-4b868868b66be99536f044b31bceafff1cb12e0e.tar.bz2 gentoo-2-4b868868b66be99536f044b31bceafff1cb12e0e.zip |
EAPI 5
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0145142D)
Diffstat (limited to 'games-engines')
-rw-r--r-- | games-engines/frotz/ChangeLog | 7 | ||||
-rw-r--r-- | games-engines/frotz/frotz-2.43.ebuild | 11 |
2 files changed, 11 insertions, 7 deletions
diff --git a/games-engines/frotz/ChangeLog b/games-engines/frotz/ChangeLog index b7695412e138..e7ee5c026dad 100644 --- a/games-engines/frotz/ChangeLog +++ b/games-engines/frotz/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-engines/frotz -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-engines/frotz/ChangeLog,v 1.18 2010/12/29 03:02:39 mr_bones_ Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-engines/frotz/ChangeLog,v 1.19 2015/01/18 15:41:51 tupone Exp $ + + 18 Jan 2015; Tupone Alfredo <tupone@gentoo.org> frotz-2.43.ebuild: + EAPI 5 29 Dec 2010; Michael Sterrett <mr_bones_@gentoo.org> frotz-2.43.ebuild: update HOMEPAGE (bug #349396) diff --git a/games-engines/frotz/frotz-2.43.ebuild b/games-engines/frotz/frotz-2.43.ebuild index f8891b098916..0abf5e921107 100644 --- a/games-engines/frotz/frotz-2.43.ebuild +++ b/games-engines/frotz/frotz-2.43.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-engines/frotz/frotz-2.43.ebuild,v 1.20 2010/12/29 03:02:39 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-engines/frotz/frotz-2.43.ebuild,v 1.21 2015/01/18 15:41:51 tupone Exp $ -EAPI=2 +EAPI=5 inherit eutils games DESCRIPTION="Curses based interpreter for Z-code based text games" @@ -16,6 +16,7 @@ IUSE="alsa oss" DEPEND="sys-libs/ncurses alsa? ( oss? ( media-libs/alsa-oss ) )" +RDEPEND="${DEPEND}" src_prepare() { sed -i \ @@ -30,11 +31,11 @@ src_prepare() { src_compile() { local OPTS="CONFIG_DIR=${GAMES_SYSCONFDIR}" use oss && OPTS="${OPTS} SOUND_DEFS=-DOSS_SOUND SOUND_DEV=/dev/dsp" - emake ${OPTS} all || die "emake failed" + emake ${OPTS} all } src_install () { - dogamesbin {d,}frotz || die "dogamesbin failed" + dogamesbin {d,}frotz doman doc/*.6 dodoc AUTHORS BUGS ChangeLog HOW_TO_PLAY README TODO \ doc/{frotz.conf-big,frotz.conf-small} |