diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-08-01 22:54:01 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-08-01 22:54:01 +0000 |
commit | e3a97276047231ebe806e307ed0bb525b5141b39 (patch) | |
tree | ed5372f958af6913712eb19e34ae01883205a307 /xfce-base | |
parent | Add patch to avoid doublefree, thanks to TGL in bug #279538. (diff) | |
download | gentoo-2-e3a97276047231ebe806e307ed0bb525b5141b39.tar.gz gentoo-2-e3a97276047231ebe806e307ed0bb525b5141b39.tar.bz2 gentoo-2-e3a97276047231ebe806e307ed0bb525b5141b39.zip |
Use xfconf.eclass.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'xfce-base')
-rw-r--r-- | xfce-base/xfce4-panel/ChangeLog | 6 | ||||
-rw-r--r-- | xfce-base/xfce4-panel/xfce4-panel-4.6.1.ebuild | 31 |
2 files changed, 21 insertions, 16 deletions
diff --git a/xfce-base/xfce4-panel/ChangeLog b/xfce-base/xfce4-panel/ChangeLog index 28c02168f2de..e5e9c6cb7609 100644 --- a/xfce-base/xfce4-panel/ChangeLog +++ b/xfce-base/xfce4-panel/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for xfce-base/xfce4-panel # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-panel/ChangeLog,v 1.144 2009/07/27 17:33:51 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-panel/ChangeLog,v 1.145 2009/08/01 22:54:01 ssuominen Exp $ + + 01 Aug 2009; Samuli Suominen <ssuominen@gentoo.org> + xfce4-panel-4.6.1.ebuild: + Use xfconf.eclass. 27 Jul 2009; nixnut <nixnut@gentoo.org> xfce4-panel-4.6.1.ebuild: ppc stable #265587 diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.6.1.ebuild b/xfce-base/xfce4-panel/xfce4-panel-4.6.1.ebuild index ebb6f55c8d5a..2c7b5f1a736e 100644 --- a/xfce-base/xfce4-panel/xfce4-panel-4.6.1.ebuild +++ b/xfce-base/xfce4-panel/xfce4-panel-4.6.1.ebuild @@ -1,18 +1,17 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-panel/xfce4-panel-4.6.1.ebuild,v 1.10 2009/07/27 17:33:51 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-panel/xfce4-panel-4.6.1.ebuild,v 1.11 2009/08/01 22:54:01 ssuominen Exp $ -EAPI="1" +EAPI=2 +inherit xfconf -inherit xfce4 - -xfce4_core - -DESCRIPTION="Panel" +DESCRIPTION="Panel for Xfce4" HOMEPAGE="http://www.xfce.org/projects/xfce4-panel/" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd" + LICENSE="GPL-2 LGPL-2" -IUSE="debug doc startup-notification" +SLOT="0" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd" +IUSE="debug startup-notification" RDEPEND=">=dev-libs/glib-2.8:2 x11-libs/cairo @@ -20,16 +19,18 @@ RDEPEND=">=dev-libs/glib-2.8:2 x11-libs/libSM >=x11-libs/gtk+-2.10:2 >=x11-libs/libwnck-2.12 - >=xfce-base/libxfce4util-${XFCE_VERSION} - >=xfce-base/libxfcegui4-${XFCE_VERSION} + >=xfce-base/libxfce4util-4.6 + >=xfce-base/libxfcegui4-4.6 >=xfce-extra/exo-0.3.100 startup-notification? ( x11-libs/startup-notification )" DEPEND="${RDEPEND} dev-util/intltool - doc? ( dev-util/gtk-doc )" + sys-devel/gettext + dev-util/pkgconfig" pkg_setup() { - XFCE_CONFIG+=" $(use_enable doc gtk-doc)" + XFCONF="--disable-dependency-tracking + $(use_enable startup-notification) + $(use_enable debug)" + DOCS="AUTHORS ChangeLog HACKING NEWS README TODO" } - -DOCS="AUTHORS ChangeLog HACKING NEWS README" |