diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-04-21 05:39:16 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-04-21 05:39:16 +0000 |
commit | 76a3b0687a26b8f4ce507bac0506211e7613636e (patch) | |
tree | 209af64aa9e88e2bfd7dc73280d192b6fc88c017 /xfce-extra | |
parent | Install to libdir instead of libexecdir. (diff) | |
download | gentoo-2-76a3b0687a26b8f4ce507bac0506211e7613636e.tar.gz gentoo-2-76a3b0687a26b8f4ce507bac0506211e7613636e.tar.bz2 gentoo-2-76a3b0687a26b8f4ce507bac0506211e7613636e.zip |
Install to libdir instead of libexecdir.
(Portage version: 2.2.0_alpha100/cvs/Linux x86_64)
Diffstat (limited to 'xfce-extra')
-rw-r--r-- | xfce-extra/xfce4-cellmodem-plugin/ChangeLog | 8 | ||||
-rw-r--r-- | xfce-extra/xfce4-cellmodem-plugin/xfce4-cellmodem-plugin-0.0.5.ebuild | 24 |
2 files changed, 20 insertions, 12 deletions
diff --git a/xfce-extra/xfce4-cellmodem-plugin/ChangeLog b/xfce-extra/xfce4-cellmodem-plugin/ChangeLog index 2bcbccc9e382..dfc3d99c0655 100644 --- a/xfce-extra/xfce4-cellmodem-plugin/ChangeLog +++ b/xfce-extra/xfce4-cellmodem-plugin/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for xfce-extra/xfce4-cellmodem-plugin -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-cellmodem-plugin/ChangeLog,v 1.2 2010/08/05 23:13:58 ssuominen Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-cellmodem-plugin/ChangeLog,v 1.3 2012/04/21 05:39:16 ssuominen Exp $ + + 21 Apr 2012; Samuli Suominen <ssuominen@gentoo.org> + xfce4-cellmodem-plugin-0.0.5.ebuild: + Install to libdir instead of libexecdir. 05 Aug 2010; Samuli Suominen <ssuominen@gentoo.org> xfce4-cellmodem-plugin-0.0.5.ebuild, diff --git a/xfce-extra/xfce4-cellmodem-plugin/xfce4-cellmodem-plugin-0.0.5.ebuild b/xfce-extra/xfce4-cellmodem-plugin/xfce4-cellmodem-plugin-0.0.5.ebuild index b5520139eb1b..33a9a30fd9eb 100644 --- a/xfce-extra/xfce4-cellmodem-plugin/xfce4-cellmodem-plugin-0.0.5.ebuild +++ b/xfce-extra/xfce4-cellmodem-plugin/xfce4-cellmodem-plugin-0.0.5.ebuild @@ -1,25 +1,25 @@ -# 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-cellmodem-plugin/xfce4-cellmodem-plugin-0.0.5.ebuild,v 1.4 2011/05/19 21:38:50 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-cellmodem-plugin/xfce4-cellmodem-plugin-0.0.5.ebuild,v 1.5 2012/04/21 05:39:16 ssuominen Exp $ EAPI=4 EAUTORECONF=yes EINTLTOOLIZE=yes -inherit xfconf +inherit multilib xfconf -DESCRIPTION="Panel plugin for monitoring cellular modems - GPRS/UMTS(3G)/HSDPA(3.5G)" +DESCRIPTION="A panel plug-in with monitoring support for GPRS/UMTS(3G)/HSDPA(3.5G) modems" HOMEPAGE="http://goodies.xfce.org/projects/panel-plugins/xfce4-cellmodem-plugin" -SRC_URI="mirror://xfce/src/panel-plugins/${PN}/0.0/${P}.tar.gz" +SRC_URI="mirror://xfce/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 x86" IUSE="debug" -RDEPEND=">=xfce-base/xfce4-panel-4.8 +RDEPEND="sys-apps/pciutils[zlib] + virtual/libusb:0 >=xfce-base/libxfcegui4-4.8 - sys-apps/pciutils[zlib] - virtual/libusb:0" + >=xfce-base/xfce4-panel-4.8" DEPEND="${RDEPEND} dev-util/intltool dev-util/pkgconfig" @@ -30,11 +30,15 @@ pkg_setup() { "${FILESDIR}"/${P}-link_for_xfce_warn.patch ) - XFCONF=( $(use_enable debug) ) + XFCONF=( + --libexecdir="${EPREFIX}"/usr/$(get_libdir) + $(use_enable debug) + ) + DOCS=( AUTHORS ChangeLog README ) } src_prepare() { - echo panel-plugin/cellmodem.desktop.in.in >> po/POTFILES.skip + echo panel-plugin/cellmodem.desktop.in.in > po/POTFILES.skip xfconf_src_prepare } |