diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-11-06 07:46:29 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-11-06 07:46:29 +0000 |
commit | a6211c8711dbc6259d5a6432d57d9a638b28596a (patch) | |
tree | f05bad9748a6c9ac53c217b2d9bea1dc52872283 /games-engines/frotz | |
parent | LICENSE fix (Manifest recommit) (diff) | |
download | gentoo-2-a6211c8711dbc6259d5a6432d57d9a638b28596a.tar.gz gentoo-2-a6211c8711dbc6259d5a6432d57d9a638b28596a.tar.bz2 gentoo-2-a6211c8711dbc6259d5a6432d57d9a638b28596a.zip |
clean up deps, docs; fix install (bug #69518); error message for emake
Diffstat (limited to 'games-engines/frotz')
-rw-r--r-- | games-engines/frotz/ChangeLog | 5 | ||||
-rw-r--r-- | games-engines/frotz/frotz-2.43.ebuild | 11 |
2 files changed, 9 insertions, 7 deletions
diff --git a/games-engines/frotz/ChangeLog b/games-engines/frotz/ChangeLog index 134fb445cc82..c7a20eb3ed21 100644 --- a/games-engines/frotz/ChangeLog +++ b/games-engines/frotz/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-engines/frotz # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-engines/frotz/ChangeLog,v 1.5 2004/06/24 22:38:42 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-engines/frotz/ChangeLog,v 1.6 2004/11/06 07:46:29 mr_bones_ Exp $ + + 05 Nov 2004; Michael Sterrett <mr_bones_@gentoo.org> frotz-2.43.ebuild: + clean up deps, docs; fix install (bug #69518); error message for emake 19 Apr 2004; Chris Gianelloni <wolf31o2@gentoo.org> frotz-2.43.ebuild: Marking stable on amd64 (no bugs in 534 days). diff --git a/games-engines/frotz/frotz-2.43.ebuild b/games-engines/frotz/frotz-2.43.ebuild index 8fd6ea58c2fe..0e0612be0752 100644 --- a/games-engines/frotz/frotz-2.43.ebuild +++ b/games-engines/frotz/frotz-2.43.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 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.8 2004/10/23 05:36:46 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-engines/frotz/frotz-2.43.ebuild,v 1.9 2004/11/06 07:46:29 mr_bones_ Exp $ DESCRIPTION="Curses based interpreter for Z-code based text games" HOMEPAGE="http://www.cs.csubak.edu/~dgriffi/proj/frotz/" @@ -12,20 +12,19 @@ KEYWORDS="x86 ppc amd64 ppc-macos" IUSE="oss alsa" DEPEND="sys-libs/ncurses - !macos? ( !ppc-macos? ( alsa? ( oss? ( media-libs/alsa-oss ) ) ) )" + alsa? ( oss? ( media-libs/alsa-oss ) )" src_compile() { local MAKE_OPTS="CONFIG_DIR=/etc" use oss && MAKE_OPTS="${MAKE_OPTS} SOUND_DEFS=-DOOS_SOUND" - emake ${MAKE_OPTS} || die + emake ${MAKE_OPTS} || die "emake failed" } src_install () { - into /usr dobin frotz || die "dobin failed" doman frotz.6 - dodoc AUTHORS BUGS ChangeLog HOW_TO_PLAY INSTALL NOTES README TODO + dodoc AUTHORS BUGS ChangeLog HOW_TO_PLAY INSTALL README TODO insinto /usr/share/${P}/ - doins frotz.conf-big frotz.conf-small || die "doins failed" + doins doc/{frotz.conf-big,frotz.conf-small} || die "doins failed" } |