| 1 |
# Copyright 1999-2011 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/games-arcade/tuxpuck/tuxpuck-0.8.2-r1.ebuild,v 1.7 2011/08/02 18:12:45 zmedico Exp $ |
| 4 |
|
| 5 |
EAPI=2 |
| 6 |
inherit eutils games |
| 7 |
|
| 8 |
DESCRIPTION="Hover hockey" |
| 9 |
HOMEPAGE="http://home.no.net/munsuun/tuxpuck/" |
| 10 |
SRC_URI="http://home.no.net/munsuun/tuxpuck/files/${P}.tar.gz" |
| 11 |
|
| 12 |
LICENSE="GPL-2" |
| 13 |
SLOT="0" |
| 14 |
KEYWORDS="alpha amd64 ppc sparc x86 ~x86-fbsd" |
| 15 |
IUSE="" |
| 16 |
|
| 17 |
RDEPEND="media-libs/libsdl |
| 18 |
media-libs/libpng |
| 19 |
virtual/jpeg |
| 20 |
media-libs/libvorbis" |
| 21 |
DEPEND="${RDEPEND} |
| 22 |
media-libs/freetype:2" |
| 23 |
|
| 24 |
src_prepare() { |
| 25 |
# Bug #376741 - Make unpack call compatible with both |
| 26 |
# PMS and <sys-apps/portage-2.1.10.10. |
| 27 |
cd man || die |
| 28 |
unpack ./${PN}.6.gz |
| 29 |
cd .. || die |
| 30 |
sed -i \ |
| 31 |
-e 's/-Werror//' \ |
| 32 |
-e '/^CC/d' \ |
| 33 |
Makefile \ |
| 34 |
utils/Makefile \ |
| 35 |
data/Makefile \ |
| 36 |
|| die "sed failed" |
| 37 |
epatch "${FILESDIR}"/${P}-ldflags.patch \ |
| 38 |
"${FILESDIR}"/${P}-png15.patch |
| 39 |
} |
| 40 |
|
| 41 |
src_compile() { |
| 42 |
emake -C utils || die |
| 43 |
# Note that the Makefiles for tuxpuck are buggy so -j1 is used. |
| 44 |
emake -j1 -C data || die |
| 45 |
emake || die |
| 46 |
} |
| 47 |
|
| 48 |
src_install() { |
| 49 |
dogamesbin tuxpuck || die "dogamesbin failed" |
| 50 |
doman man/tuxpuck.6 |
| 51 |
dodoc *.txt |
| 52 |
doicon data/icons/${PN}.ico |
| 53 |
make_desktop_entry ${PN} "TuxPuck" /usr/share/pixmaps/${PN}.ico |
| 54 |
prepgamesdirs |
| 55 |
} |