blob: 6430c82aea5d05898752a2357e91d4d6378a03b2 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-action/bombermaze/bombermaze-0.6.6.ebuild,v 1.5 2004/06/24 21:52:52 agriffis Exp $
inherit flag-o-matic
DESCRIPTION="Bomberman clone for GNOME"
HOMEPAGE="http://www.freesoftware.fsf.org/bombermaze/"
SRC_URI="http://freesoftware.fsf.org/download/bombermaze/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc"
IUSE="nls"
RDEPEND=">=media-libs/gdk-pixbuf-0.8
>=gnome-base/gnome-libs-1.0"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )"
src_compile() {
# It normally fails to locate gdk-pixbuf.h
append-flags $(gdk-pixbuf-config --cflags)
./configure \
--host=${CHOST} \
--prefix=/usr \
--with-included-gettext \
$(use_enable nls) || die "./configure failed"
emake || die "emake failed"
}
src_install() {
make prefix="${D}/usr" install || die "make install failed"
dodoc AUTHORS ChangeLog NEWS TODO
}
|