diff options
author | 2012-04-09 18:44:09 +0000 | |
---|---|---|
committer | 2012-04-09 18:44:09 +0000 | |
commit | 10dc2fb9462d5f22ff6f67a3fdd93c2f74aed9c5 (patch) | |
tree | 50a2da5b0abcf797dc2c27f748c021333cc509c3 /xfce-extra/xfce4-battery-plugin | |
parent | Inherit multilib for last commit. (diff) | |
download | historical-10dc2fb9462d5f22ff6f67a3fdd93c2f74aed9c5.tar.gz historical-10dc2fb9462d5f22ff6f67a3fdd93c2f74aed9c5.tar.bz2 historical-10dc2fb9462d5f22ff6f67a3fdd93c2f74aed9c5.zip |
Install to libdir instead of libexecdir.
Package-Manager: portage-2.2.0_alpha99/cvs/Linux x86_64
Diffstat (limited to 'xfce-extra/xfce4-battery-plugin')
-rw-r--r-- | xfce-extra/xfce4-battery-plugin/ChangeLog | 8 | ||||
-rw-r--r-- | xfce-extra/xfce4-battery-plugin/xfce4-battery-plugin-1.0.0-r1.ebuild | 23 |
2 files changed, 20 insertions, 11 deletions
diff --git a/xfce-extra/xfce4-battery-plugin/ChangeLog b/xfce-extra/xfce4-battery-plugin/ChangeLog index 17ecbebd1704..bb13ceddd121 100644 --- a/xfce-extra/xfce4-battery-plugin/ChangeLog +++ b/xfce-extra/xfce4-battery-plugin/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for xfce-extra/xfce4-battery-plugin -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-battery-plugin/ChangeLog,v 1.10 2011/05/05 11:06:01 phajdan.jr Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-battery-plugin/ChangeLog,v 1.11 2012/04/09 18:38:33 ssuominen Exp $ + + 09 Apr 2012; Samuli Suominen <ssuominen@gentoo.org> + xfce4-battery-plugin-1.0.0-r1.ebuild: + Install to libdir instead of libexecdir. 05 May 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> xfce4-battery-plugin-1.0.0-r1.ebuild: diff --git a/xfce-extra/xfce4-battery-plugin/xfce4-battery-plugin-1.0.0-r1.ebuild b/xfce-extra/xfce4-battery-plugin/xfce4-battery-plugin-1.0.0-r1.ebuild index 6714bc486888..44fb9ebc7a6b 100644 --- a/xfce-extra/xfce4-battery-plugin/xfce4-battery-plugin-1.0.0-r1.ebuild +++ b/xfce-extra/xfce4-battery-plugin/xfce4-battery-plugin-1.0.0-r1.ebuild @@ -1,13 +1,13 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2012 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-1.0.0-r1.ebuild,v 1.5 2011/05/19 20:40:06 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-battery-plugin/xfce4-battery-plugin-1.0.0-r1.ebuild,v 1.6 2012/04/09 18:38:33 ssuominen Exp $ EAPI=4 -inherit xfconf +inherit multilib xfconf DESCRIPTION="A battery monitor panel plugin for the Xfce desktop environment" HOMEPAGE="http://goodies.xfce.org/projects/panel-plugins/xfce4-battery-plugin" -SRC_URI="mirror://xfce/src/panel-plugins/${PN}/1.0/${P}.tar.bz2" +SRC_URI="mirror://xfce/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2" LICENSE="GPL-2 LGPL-2" SLOT="0" @@ -15,15 +15,20 @@ KEYWORDS="amd64 ~arm ppc x86" IUSE="debug" RDEPEND=">=x11-libs/gtk+-2.6:2 - >=xfce-base/xfce4-panel-4.8 >=xfce-base/libxfce4util-4.8 - >=xfce-base/libxfcegui4-4.8" + >=xfce-base/libxfcegui4-4.8 + >=xfce-base/xfce4-panel-4.8" DEPEND="${RDEPEND} - dev-util/pkgconfig - dev-util/intltool" + dev-util/intltool + dev-util/pkgconfig" pkg_setup() { PATCHES=( "${FILESDIR}"/${P}-sysfs.patch ) - XFCONF=( $(xfconf_use_debug) ) + + XFCONF=( + --libexecdir="${EPREFIX}"/usr/$(get_libdir) + $(xfconf_use_debug) + ) + DOCS=( AUTHORS ChangeLog NEWS README ) } |