blob: 3a27117d74485402e03c504e710825c78f09a2ca (
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
44
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
GCONF_DEBUG="no"
SCROLLKEEPER_UPDATE="no"
inherit gnome2
DESCRIPTION="Fyre renders and animates Peter de Jong maps"
SRC_URI="http://flapjack.navi.cx/releases/${PN}/${P}.tar.bz2"
HOMEPAGE="http://fyre.navi.cx/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
IUSE="cluster openexr"
RDEPEND=">=gnome-base/libglade-2.4
cluster? ( >=net-libs/gnet-2.0 )
openexr? ( media-libs/openexr )"
DEPEND="${RDEPEND}
dev-util/desktop-file-utils
>=dev-util/pkgconfig-0.9
x11-misc/shared-mime-info"
pkg_setup() {
G2CONF="$(use_enable cluster gnet) $(use_enable openexr)"
}
src_install() {
#...=/bin/true prevents the makefile from updating mime and .desktop
# databases on its own
emake DESTDIR="${D}" \
update_xdgmime=/bin/true update_fdodesktop=/bin/true \
install || die "install failed"
dodoc AUTHORS ChangeLog README TODO
if use cluster; then
newconfd "${FILESDIR}/${P}-conf" fyre
newinitd "${FILESDIR}/${P}-init" fyre
fi
}
|