blob: 07ef4642591d1e6122330e3939e351b4f90987d6 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/xfburn/xfburn-0.4.3-r1.ebuild,v 1.2 2010/06/29 07:30:22 angelos Exp $
EAPI=2
inherit xfconf
DESCRIPTION="GTK+ based CD and DVD burning application"
HOMEPAGE="http://goodies.xfce.org/projects/applications/xfburn"
SRC_URI="mirror://xfce/src/apps/${PN}/0.4/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc ~x86"
IUSE="dbus debug gstreamer"
RDEPEND=">=dev-libs/libburn-0.4.2
>=dev-libs/libisofs-0.6.2
>=x11-libs/gtk+-2.10:2
>=xfce-base/libxfcegui4-4.4
>=xfce-base/exo-0.3
dbus? ( dev-libs/dbus-glib )
gstreamer? ( media-libs/gstreamer
>=media-libs/gst-plugins-base-0.10.20 )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
dev-util/intltool
sys-devel/gettext"
pkg_setup() {
XFCONF="--disable-dependency-tracking
$(use_enable dbus)
$(xfconf_use_debug)
$(use_enable gstreamer)
--disable-hal
--disable-thunar-vfs"
DOCS="AUTHORS ChangeLog NEWS README TODO"
}
|