blob: 83c3d60f0c2ee87080509438353e151ec459cdd3 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/xfburn/xfburn-0.3.2.ebuild,v 1.4 2008/10/25 16:05:28 nixnut Exp $
EAPI=1
inherit eutils gnome2-utils
DESCRIPTION="GTK+ based CD and DVD burning application"
HOMEPAGE="http://www.xfce.org/projects/xfburn"
SRC_URI="http://goodies.xfce.org/releases/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="+dbus debug hal +xfce"
RDEPEND=">=dev-libs/libburn-0.3
>=dev-libs/libisofs-0.6.2
>=x11-libs/gtk+-2.10
>=xfce-base/libxfcegui4-4.4
>=xfce-extra/exo-0.3
xfce? ( xfce-base/thunar )
dbus? ( dev-libs/dbus-glib )
hal? ( sys-apps/hal )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
dev-util/intltool
sys-devel/gettext"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-disable-hal.patch
}
src_compile() {
econf --disable-dependency-tracking \
$(use_enable xfce thunar-vfs) \
$(use_enable dbus) \
$(use_enable hal) \
$(use_enable debug)
emake || die "emake failed."
}
pkg_preinst() {
gnome2_icon_savelist
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc AUTHORS ChangeLog NEWS README TODO
}
pkg_postinst() {
gnome2_icon_cache_update
}
pkg_postrm() {
gnome2_icon_cache_update
}
|