# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="Run games in a separate X session" HOMEPAGE="http://xgame.tlhiv.com/" SRC_URI="http://downloads.tlhiv.com/xgame/${PF}.tar.gz" # Remove nomirror once being taken into gentoo portage RESTRICT="nomirror nostrip" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~ppc ~ia64 ~amd64 ~sparc" IUSE="" # Run-time dependencies RDEPEND="dev-lang/perl" src_install() { exeinto /usr/bin exeopts -m0650 doexe xgame || die "doexe failed" # We only want users in group games to have permission to run this fowners root:games /usr/bin/xgame || die "fowner failed" dodir /usr/share/doc/${P} dodoc README || die "dodoc failed" } pkg_postinst() { echo einfo "Do not forget to add the users you want to have permission to run this" einfo "in the group games (default gid=35)." echo }