# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit games DESCRIPTION="A lunar landing simulation for X" HOMEPAGE="" SRC_URI="ftp://metalab.unc.edu/pub/Linux/games/arcade/${PN}.tar.gz" LICENSE="xlander" SLOT="0" KEYWORDS="~amd64" IUSE="" DEPEND="x11-libs/libX11" S=${WORKDIR}/${PN} src_unpack() { unpack ${A} cd "${WORKDIR}" epatch "${FILESDIR}/${P}_gentoo.patch" } src_compile() { make clean || die "make clean failed" make || die "make failed" } src_install() { dodoc README || die "installing docs failed" mv "${PN}.man" "${PN}.man.6" || die "man page renaming failed" doman "${PN}.man.6" || die "installing manpage failed" dogamesbin "${PN}"|| die "installing executable failed" prepgamesdirs || die "prepping games dirs failed" }