# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/games-arcade/xboing/xboing-2.4-r1.ebuild,v 1.13 2011/01/08 20:58:52 tupone Exp $ EAPI=2 inherit eutils games DESCRIPTION="blockout type game where you bounce a proton ball trying to destroy blocks" HOMEPAGE="http://www.techrescue.org/xboing/" SRC_URI="http://www.techrescue.org/xboing/${PN}${PV}.tar.gz mirror://gentoo/xboing-${PV}-debian.patch.bz2" LICENSE="xboing" SLOT="0" KEYWORDS="ppc sparc x86" IUSE="" RDEPEND="x11-libs/libXpm" DEPEND="${RDEPEND} app-text/rman x11-misc/gccmakedep x11-misc/imake" S=${WORKDIR}/${PN} src_prepare() { epatch "${WORKDIR}"/xboing-${PV}-debian.patch sed -i '/^#include/s:xpm\.h:X11/xpm.h:' *.c } src_configure() { xmkmf -a || die sed -i \ -e "s:GENTOO_VER:${PF/${PN}-/}:" \ Imakefile } src_compile() { emake \ CXXOPTIONS="${CXXFLAGS}" \ CDEBUGFLAGS="${CFLAGS}" \ LOCAL_LDFLAGS="${LDFLAGS}" \ XBOING_DIR=${GAMES_DATADIR}/${PN} \ || die } src_install() { make \ PREFIX=${D} \ LOCAL_LDFLAGS="${LDFLAGS}" \ XBOING_DIR=${GAMES_DATADIR}/${PN} \ install \ || die newman xboing.man xboing.6 dodoc README docs/*.doc prepgamesdirs fperms 660 "${GAMES_STATEDIR}"/xboing.score }