# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit games DESCRIPTION="Sierra AGI resource interpreter engine" HOMEPAGE="http://sarien.sourceforge.net/" SRC_URI="mirror://sourceforge/sarien/${P}.tar.gz" KEYWORDS="~x86" LICENSE="GPL-2" SLOT="0" IUSE="" src_unpack() { unpack ${A} cd ${S} } src_compile() { egamesconf || die "egamesconf failed" make } src_install() { #No install script insinto "${GAMES_BINDIR}" doins "${S}/bin/sarien" || die "doins failed (bin)" insinto "/etc" newins "${S}/etc/sarien.cfg" "sarien.conf" || die "doins failed (etc)" dodoc "${S}/doc/AUTHORS" "${S}/doc/BUGS" "${S}/doc/COPYING" \ "${S}/doc/Changelog" "${S}/doc/README.agi" "${S}/doc/README.unix" \ "${S}/doc/TODO" "${S}/doc/roadmap.txt" || die "dodoc failed" prepalldocs prepgamesdirs } pkg_postinst() { games_pkg_postinst }