blob: 8c11b8b1c4baa4487afd09ed5dcf0767f0466f2a (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-arcade/monster-masher/monster-masher-1.8.ebuild,v 1.8 2008/03/20 00:30:30 nyhm Exp $
inherit eutils gnome2
DESCRIPTION="Squash the monsters with your levitation worker gnome"
HOMEPAGE="http://people.iola.dk/olau/monster-masher/"
SRC_URI="http://people.iola.dk/olau/monster-masher/source/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86 ~x86-fbsd"
IUSE=""
DEPEND="x11-libs/libSM
>=dev-cpp/gtkmm-2.6
>=dev-cpp/gconfmm-2.6
>=dev-cpp/libglademm-2.4
>=dev-cpp/libgnomecanvasmm-2.6
gnome-base/libgnome"
pkg_setup() {
if ! built_with_use gnome-base/libgnome esd ; then
die "You need to compile gnome-base/libgnome with esd USE flag!"
fi
}
src_install() {
DOCS="AUTHORS ChangeLog README" gnome2_src_install
}
|