diff options
author | Christoph Mende <angelos@gentoo.org> | 2009-03-10 13:49:26 +0000 |
---|---|---|
committer | Christoph Mende <angelos@gentoo.org> | 2009-03-10 13:49:26 +0000 |
commit | 12f648eed1ec52b706faf96043455da200884a07 (patch) | |
tree | 734f0225b6f390b551507168789a0da2858f3503 /xfce-base/thunar | |
parent | Xfce-4.6 bump (diff) | |
download | gentoo-2-12f648eed1ec52b706faf96043455da200884a07.tar.gz gentoo-2-12f648eed1ec52b706faf96043455da200884a07.tar.bz2 gentoo-2-12f648eed1ec52b706faf96043455da200884a07.zip |
Xfce-4.6 bump
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'xfce-base/thunar')
-rw-r--r-- | xfce-base/thunar/ChangeLog | 7 | ||||
-rw-r--r-- | xfce-base/thunar/thunar-1.0.0.ebuild | 71 |
2 files changed, 77 insertions, 1 deletions
diff --git a/xfce-base/thunar/ChangeLog b/xfce-base/thunar/ChangeLog index 0ab52df8ad9b..05aa78dfa148 100644 --- a/xfce-base/thunar/ChangeLog +++ b/xfce-base/thunar/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for xfce-base/thunar # Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/thunar/ChangeLog,v 1.66 2009/02/05 22:42:50 betelgeuse Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/thunar/ChangeLog,v 1.67 2009/03/10 13:49:26 angelos Exp $ + +*thunar-1.0.0 (10 Mar 2009) + + 10 Mar 2009; Christoph Mende <angelos@gentoo.org> +thunar-1.0.0.ebuild: + Xfce-4.6 bump 05 Feb 2009; Petteri Räty <betelgeuse@gentoo.org> thunar-0.9.3.ebuild: EAPI 2 instead of built_with_use. xfce44.eclass is not EAPI 2 aware so diff --git a/xfce-base/thunar/thunar-1.0.0.ebuild b/xfce-base/thunar/thunar-1.0.0.ebuild new file mode 100644 index 000000000000..dcabb79ac17b --- /dev/null +++ b/xfce-base/thunar/thunar-1.0.0.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/xfce-base/thunar/thunar-1.0.0.ebuild,v 1.1 2009/03/10 13:49:26 angelos Exp $ + +EAPI=2 + +MY_PN=${PN/t/T} +inherit virtualx xfce4 + +XFCE_VERSION=4.6.0 + +xfce4_core + +DESCRIPTION="File manager" +HOMEPAGE="http://thunar.xfce.org" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="dbus debug doc exif gnome hal pcre startup-notification +trash-plugin" + +RDEPEND=">=dev-lang/perl-5.6 + >=dev-libs/glib-2.6:2 + >=dev-util/desktop-file-utils-0.14 + >=media-libs/freetype-2 + >=media-libs/jpeg-6b + >=media-libs/libpng-1.2.0 + virtual/fam + >=x11-libs/gtk+-2.6:2 + x11-libs/libSM + >=x11-misc/shared-mime-info-0.20 + >=xfce-extra/exo-0.3.92[hal?] + >=xfce-base/libxfce4util-${XFCE_VERSION} + dbus? ( dev-libs/dbus-glib ) + exif? ( >=media-libs/libexif-0.6 ) + hal? ( dev-libs/dbus-glib + sys-apps/hal ) + gnome? ( gnome-base/gconf ) + pcre? ( >=dev-libs/libpcre-6 ) + startup-notification? ( x11-libs/startup-notification ) + trash-plugin? ( dev-libs/dbus-glib + >=xfce-base/xfce4-panel-${XFCE_VERSION} )" +DEPEND="${RDEPEND} + dev-util/intltool + doc? ( dev-util/gtk-doc )" + +pkg_setup() { + XFCE_CONFIG+="$(use_enable dbus) $(use_enable doc gtk-doc) + $(use_enable exif) $(use_enable gnome gnome-thumbnailers) + $(use_enable pcre)" + + if use hal && ! use dbus; then + ewarn "USE hal detected, enabling dbus." + fi + + if use hal; then + XFCE_CONFIG+=" --enable-dbus --with-volume-manager=hal" + else + XFCE_CONFIG+=" --with-volume-manager=none" + fi + + if use trash-plugin && ! use dbus; then + XFCE_CONFIG+=" --enable-dbus" + ewarn "USE trash-plugin detected, enabling dbus." + fi + + use trash-plugin || XFCE_CONFIG+=" --disable-tpa-plugin" +} + +src_test() { + Xemake check || die "emake check failed" +} + +DOCS="AUTHORS ChangeLog FAQ HACKING NEWS README THANKS TODO" |