blob: 0ec6aa35807fce29f0e277067e53a58d56496d90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/xbill/xbill-2.1-r2.ebuild,v 1.3 2008/04/07 18:34:53 drac Exp $
inherit eutils autotools games
DESCRIPTION="A game about an evil hacker called Bill!"
HOMEPAGE="http://www.xbill.org/"
SRC_URI="http://www.xbill.org/download/${P}.tar.gz"
LICENSE="GPL-1"
SLOT="0"
KEYWORDS="~alpha amd64 ~ppc ~x86"
IUSE="gtk"
RDEPEND="gtk? ( =x11-libs/gtk+-2* )
!gtk? ( x11-libs/libXaw )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-gtk2.patch
eautoreconf
}
src_compile() {
egamesconf \
--disable-motif \
$(use_enable gtk) \
$(use_enable !gtk athena) \
|| die
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
newicon pixmaps/icon.xpm ${PN}.xpm
make_desktop_entry ${PN} XBill ${PN}
dodoc ChangeLog README
prepgamesdirs
}
|