diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-08-01 21:21:53 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-08-01 21:21:53 +0000 |
commit | 3b16b39cbbf4e1c61e6c9b8fda0ae4827e4aa60a (patch) | |
tree | bd619c0351cf4f57bda2b94d025e2ef504d20caa /xfce-base | |
parent | Applied patch from Rafael G. Martins <rafael@rafaelmartins.com>, closes bug ... (diff) | |
download | gentoo-2-3b16b39cbbf4e1c61e6c9b8fda0ae4827e4aa60a.tar.gz gentoo-2-3b16b39cbbf4e1c61e6c9b8fda0ae4827e4aa60a.tar.bz2 gentoo-2-3b16b39cbbf4e1c61e6c9b8fda0ae4827e4aa60a.zip |
Use xfconf.eclass.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'xfce-base')
-rw-r--r-- | xfce-base/xfconf/ChangeLog | 5 | ||||
-rw-r--r-- | xfce-base/xfconf/xfconf-4.6.1.ebuild | 48 |
2 files changed, 34 insertions, 19 deletions
diff --git a/xfce-base/xfconf/ChangeLog b/xfce-base/xfconf/ChangeLog index 1e509e74f68f..3cd9db365ed2 100644 --- a/xfce-base/xfconf/ChangeLog +++ b/xfce-base/xfconf/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for xfce-base/xfconf # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfconf/ChangeLog,v 1.14 2009/07/27 17:30:09 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfconf/ChangeLog,v 1.15 2009/08/01 21:21:53 ssuominen Exp $ + + 01 Aug 2009; Samuli Suominen <ssuominen@gentoo.org> xfconf-4.6.1.ebuild: + Use xfconf.eclass. 27 Jul 2009; nixnut <nixnut@gentoo.org> xfconf-4.6.1.ebuild: ppc stable #265587 diff --git a/xfce-base/xfconf/xfconf-4.6.1.ebuild b/xfce-base/xfconf/xfconf-4.6.1.ebuild index 12236117ab8f..d7f6cd1a656f 100644 --- a/xfce-base/xfconf/xfconf-4.6.1.ebuild +++ b/xfce-base/xfconf/xfconf-4.6.1.ebuild @@ -1,42 +1,54 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfconf/xfconf-4.6.1.ebuild,v 1.10 2009/07/27 17:30:09 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfconf/xfconf-4.6.1.ebuild,v 1.11 2009/08/01 21:21:53 ssuominen Exp $ -EAPI="1" - -RESTRICT="test" -inherit xfce4 - -xfce4_core +EAPI=2 +inherit flag-o-matic xfconf DESCRIPTION="Xfce configuration daemon and utilities" +HOMEPAGE="http://www.xfce.org" + +LICENSE="GPL-2" +SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd" -IUSE="debug doc -perl" +IUSE="debug -perl profile" RDEPEND=">=dev-libs/dbus-glib-0.72 >=dev-libs/glib-2.12:2 - >=xfce-base/libxfce4util-${XFCE_VERSION} + >=xfce-base/libxfce4util-4.6 perl? ( dev-perl/glib-perl )" DEPEND="${RDEPEND} - doc? ( dev-util/gtk-doc ) + dev-util/pkgconfig + dev-util/intltool + sys-devel/gettext perl? ( dev-perl/extutils-depends dev-perl/extutils-pkgconfig )" +RESTRICT="test" + pkg_setup() { - XFCE_CONFIG+=" $(use_enable doc gtk-doc) $(use_enable perl perl-bindings)" + XFCONF="--disable-dependency-tracking + $(use_enable perl perl-bindings) + $(use_enable debug) + $(use_enable debug checks) + $(use_enable profile profiling)" + DOCS="AUTHORS ChangeLog NEWS TODO" +} + +src_configure() { + use profile && filter-flags -fomit-frame-pointer + xfconf_src_configure } src_compile() { - xfce4_src_configure emake OTHERLDFLAGS="${LDFLAGS}" || die "emake failed" } src_install() { - xfce4_src_install + xfconf_src_install - # stolen from perl-module.eclass - find "${D}" -type f -name perllocal.pod -delete - find "${D}" -depth -mindepth 1 -type d -empty -delete + if use perl; then + find "${D}" -type f -name perllocal.pod -delete + find "${D}" -depth -mindepth 1 -type d -empty -delete + fi } - -DOCS="AUTHORS ChangeLog NEWS README TODO" |