# 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.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/" SRC_URI="http://www.ifarchive.org/if-archive/infocom/interpreters/frotz/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86 ppc amd64 ppc-macos" IUSE="oss alsa" DEPEND="sys-libs/ncurses 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 failed" } src_install () { dobin frotz || die "dobin failed" doman frotz.6 dodoc AUTHORS BUGS ChangeLog HOW_TO_PLAY INSTALL README TODO insinto /usr/share/${P}/ doins doc/{frotz.conf-big,frotz.conf-small} || die "doins failed" }