diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-01-29 21:03:10 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-01-29 21:03:10 +0000 |
commit | c49337dfb94b50fea3c15d442a813292d575edf6 (patch) | |
tree | c6e0092ffca20286e8573e6a23b04d2312a0d85c /xfce-extra | |
parent | bump to eapi3, use arrays (diff) | |
download | gentoo-2-c49337dfb94b50fea3c15d442a813292d575edf6.tar.gz gentoo-2-c49337dfb94b50fea3c15d442a813292d575edf6.tar.bz2 gentoo-2-c49337dfb94b50fea3c15d442a813292d575edf6.zip |
bump to eapi3
(Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
Diffstat (limited to 'xfce-extra')
-rw-r--r-- | xfce-extra/xfce4-battery-plugin/xfce4-battery-plugin-0.5.1.ebuild | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/xfce-extra/xfce4-battery-plugin/xfce4-battery-plugin-0.5.1.ebuild b/xfce-extra/xfce4-battery-plugin/xfce4-battery-plugin-0.5.1.ebuild index f10eb316891a..53ddf5a23251 100644 --- a/xfce-extra/xfce4-battery-plugin/xfce4-battery-plugin-0.5.1.ebuild +++ b/xfce-extra/xfce4-battery-plugin/xfce4-battery-plugin-0.5.1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-battery-plugin/xfce4-battery-plugin-0.5.1.ebuild,v 1.2 2011/01/06 16:20:45 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-battery-plugin/xfce4-battery-plugin-0.5.1.ebuild,v 1.3 2011/01/29 21:03:10 ssuominen Exp $ -EAPI=2 +EAPI=3 inherit xfconf DESCRIPTION="Battery status panel plugin" @@ -23,11 +23,17 @@ DEPEND="${RDEPEND} dev-util/intltool" pkg_setup() { - PATCHES=( "${FILESDIR}/${PV}-freebsd.patch" - "${FILESDIR}/${PV}-libacpi.patch" - "${FILESDIR}/${PV}-2.6.24-headers.patch" - "${FILESDIR}/${PV}-sysfs.patch" ) + PATCHES=( + "${FILESDIR}"/${PV}-freebsd.patch + "${FILESDIR}"/${PV}-libacpi.patch + "${FILESDIR}"/${PV}-2.6.24-headers.patch + "${FILESDIR}"/${PV}-sysfs.patch + ) + DOCS="AUTHORS ChangeLog README" - XFCONF="--disable-dependency-tracking - $(use_enable debug)" + + XFCONF=( + --disable-dependency-tracking + $(use_enable debug) + ) } |