diff options
author | Samuli Suominen <drac@gentoo.org> | 2008-06-22 21:55:36 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2008-06-22 21:55:36 +0000 |
commit | 77e1a35467ec92a7c837418e60069873ed861f07 (patch) | |
tree | 0d55088f144e0e354640fd112b7bdd9f581a06de /app-cdr/xfburn/xfburn-0.3.0.ebuild | |
parent | stable x86, bug 228549 (diff) | |
download | gentoo-2-77e1a35467ec92a7c837418e60069873ed861f07.tar.gz gentoo-2-77e1a35467ec92a7c837418e60069873ed861f07.tar.bz2 gentoo-2-77e1a35467ec92a7c837418e60069873ed861f07.zip |
Move from xfce-extra. New USE flags for dbus and hal. Rename USE minimal to USE xfce as it will be used more in future. Marked amd64 stable.
(Portage version: 2.2_rc1/cvs/Linux 2.6.26-rc3 x86_64, RepoMan options: --force)
Diffstat (limited to 'app-cdr/xfburn/xfburn-0.3.0.ebuild')
-rw-r--r-- | app-cdr/xfburn/xfburn-0.3.0.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/app-cdr/xfburn/xfburn-0.3.0.ebuild b/app-cdr/xfburn/xfburn-0.3.0.ebuild new file mode 100644 index 000000000000..7286edc8faf7 --- /dev/null +++ b/app-cdr/xfburn/xfburn-0.3.0.ebuild @@ -0,0 +1,51 @@ +# 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.0.ebuild,v 1.1 2008/06/22 21:55:36 drac Exp $ + +EAPI=1 + +inherit gnome2-utils + +DESCRIPTION="GTK+ based CD and DVD burning application" +HOMEPAGE="http://www.xfce.org/projects/xfburn" +SRC_URI="http://www.xfce.org/~pollux/${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_compile() { + econf --disable-dependency-tracking \ + $(use_enable xfce thunar-vfs) \ + $(use_enable dbus) \ + $(use_enable hal) \ + $(use_enable debug) + emake || die "emake failed." +} + +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 +} |