# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils games DESCRIPTION="A simple sport game, similar to GNU Arcade Volleyball" HOMEPAGE="http://www.losersjuegos.com.ar/juegos/volleyball/volleyball.php" SRC_URI="http://www.loosersjuegos.com.ar/juegos/volleyball/descargas/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="nls" DEPEND="media-libs/libsdl media-libs/sdl-image nls? ( sys-devel/gettext )" RDEPEND="media-libs/libsdl media-libs/sdl-image" src_unpack() { unpack ${A} cd "${S}" cp ${FILESDIR}/icon.png ${S} || die \ "${FILESDIR}/icon.png not found." } src_compile() { egamesconf $(use_enable nls) || die emake || die "emake failed" } src_install() { make DESTDIR="${D}" install || die "make install failed" dodoc AUTHORS ChangeLog README TODO prepgamesdirs newicon icon.png ${PN}.png make_desktop_entry "volleyball -f" Volleyball }