diff options
author | Samuli Suominen <drac@gentoo.org> | 2008-03-21 06:07:46 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2008-03-21 06:07:46 +0000 |
commit | 4eef4a5e934daca7b605e79335a23f48b05bc6b8 (patch) | |
tree | 243f1b370feba8c32bd5649bb44b1f2d7614bd83 /xfce-base | |
parent | Added myself as maintainer. (diff) | |
download | gentoo-2-4eef4a5e934daca7b605e79335a23f48b05bc6b8.tar.gz gentoo-2-4eef4a5e934daca7b605e79335a23f48b05bc6b8.tar.bz2 gentoo-2-4eef4a5e934daca7b605e79335a23f48b05bc6b8.zip |
pkg_setup clean up, amd64 stable
(Portage version: 2.1.4.4)
Diffstat (limited to 'xfce-base')
-rw-r--r-- | xfce-base/thunar/ChangeLog | 5 | ||||
-rw-r--r-- | xfce-base/thunar/thunar-0.9.0-r2.ebuild | 31 |
2 files changed, 16 insertions, 20 deletions
diff --git a/xfce-base/thunar/ChangeLog b/xfce-base/thunar/ChangeLog index ec613d4edf7b..7f007f0c4831 100644 --- a/xfce-base/thunar/ChangeLog +++ b/xfce-base/thunar/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for xfce-base/thunar # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/thunar/ChangeLog,v 1.48 2008/03/12 18:14:18 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/thunar/ChangeLog,v 1.49 2008/03/21 06:07:46 drac Exp $ + + 21 Mar 2008; Samuli Suominen <drac@gentoo.org> thunar-0.9.0-r2.ebuild: + pkg_setup clean up, amd64 stable *thunar-0.9.0-r2 (12 Mar 2008) diff --git a/xfce-base/thunar/thunar-0.9.0-r2.ebuild b/xfce-base/thunar/thunar-0.9.0-r2.ebuild index bf304c7612f8..c49e74be2951 100644 --- a/xfce-base/thunar/thunar-0.9.0-r2.ebuild +++ b/xfce-base/thunar/thunar-0.9.0-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/thunar/thunar-0.9.0-r2.ebuild,v 1.1 2008/03/12 18:14:18 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/thunar/thunar-0.9.0-r2.ebuild,v 1.2 2008/03/21 06:07:46 drac Exp $ EAPI=1 @@ -14,7 +14,7 @@ xfce44 DESCRIPTION="File manager" HOMEPAGE="http://thunar.xfce.org" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" IUSE="doc dbus debug exif gnome hal pcre startup-notification +trash-plugin" RDEPEND=">=dev-lang/perl-5.6 @@ -43,30 +43,25 @@ DEPEND="${RDEPEND} dev-util/intltool doc? ( dev-util/gtk-doc )" +DOCS="AUTHORS ChangeLog HACKING FAQ THANKS TODO README NEWS" + pkg_setup() { - XFCE_CONFIG="${XFCE_CONFIG} $(use_enable exif) - $(use_enable gnome gnome-thumbnailers) + XFCE_CONFIG+=" $(use_enable exif) $(use_enable gnome gnome-thumbnailers) $(use_enable dbus) $(use_enable pcre)" - local fail="Re-emerge xfce-extra/exo with USE hal." - if use hal; then - XFCE_CONFIG="${XFCE_CONFIG} --enable-dbus --with-volume-manager=hal" + XFCE_CONFIG+=" --enable-dbus --with-volume-manager=hal" else - XFCE_CONFIG="${XFCE_CONFIG} --with-volume-manager=none" - fi - - if use trash-plugin && ! use dbus; then - XFCE_CONFIG="${XFCE_CONFIG} --enable-dbus" - ewarn "USE trash-plugin detected, enabling dbus for you." + XFCE_CONFIG+=" --with-volume-manager=none" fi - use trash-plugin || XFCE_CONFIG="${XFCE_CONFIG} --disable-tpa-plugin" - - if use hal && ! use dbus; then - ewarn "USE hal detected, enabling dbus for you." + if use trash-plugin; then + XFCE_CONFIG+=" --enable-dbus" + else + XFCE_CONFIG+=" --disable-tpa-plugin" fi + local fail="Re-emerge xfce-extra/exo with USE hal." if use hal && ! built_with_use xfce-extra/exo hal; then eerror "${fail}" die "${fail}" @@ -84,6 +79,4 @@ src_test() { Xemake check || die "emake check failed." } -DOCS="AUTHORS ChangeLog HACKING FAQ THANKS TODO README NEWS" - xfce44_extra_package |