diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-04-21 05:51:32 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-04-21 05:51:32 +0000 |
commit | 8983cb9c5b1f272039c86e1f2d50551dad001c5e (patch) | |
tree | 1f64109bc6a8674d71416c3d0c07a29db2351d64 /xfce-extra | |
parent | fix by Christoph Junghans to make unpack_deb work on AIX (prefix) systems #40... (diff) | |
download | gentoo-2-8983cb9c5b1f272039c86e1f2d50551dad001c5e.tar.gz gentoo-2-8983cb9c5b1f272039c86e1f2d50551dad001c5e.tar.bz2 gentoo-2-8983cb9c5b1f272039c86e1f2d50551dad001c5e.zip |
Remove USE="debug" which triggered -DXFCE_DISABLE_DEPRECATED resulting in implicit xfce_exec and xfce_err. 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-gvfs-mount/ChangeLog | 9 | ||||
-rw-r--r-- | xfce-extra/xfce4-gvfs-mount/xfce4-gvfs-mount-0.0.4.ebuild | 25 |
2 files changed, 21 insertions, 13 deletions
diff --git a/xfce-extra/xfce4-gvfs-mount/ChangeLog b/xfce-extra/xfce4-gvfs-mount/ChangeLog index 3b29697f590d..32fa967c2f3a 100644 --- a/xfce-extra/xfce4-gvfs-mount/ChangeLog +++ b/xfce-extra/xfce4-gvfs-mount/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for xfce-extra/xfce4-gvfs-mount -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-gvfs-mount/ChangeLog,v 1.1 2009/08/24 10:03:55 ssuominen Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-gvfs-mount/ChangeLog,v 1.2 2012/04/21 05:51:32 ssuominen Exp $ + + 21 Apr 2012; Samuli Suominen <ssuominen@gentoo.org> + xfce4-gvfs-mount-0.0.4.ebuild: + Remove USE="debug" which triggered -DXFCE_DISABLE_DEPRECATED resulting in + implicit xfce_exec and xfce_err. Install to libdir instead of libexecdir. *xfce4-gvfs-mount-0.0.4 (24 Aug 2009) diff --git a/xfce-extra/xfce4-gvfs-mount/xfce4-gvfs-mount-0.0.4.ebuild b/xfce-extra/xfce4-gvfs-mount/xfce4-gvfs-mount-0.0.4.ebuild index 1fa81e48c7e8..e3e72ecf642e 100644 --- a/xfce-extra/xfce4-gvfs-mount/xfce4-gvfs-mount-0.0.4.ebuild +++ b/xfce-extra/xfce4-gvfs-mount/xfce4-gvfs-mount-0.0.4.ebuild @@ -1,35 +1,38 @@ -# 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-gvfs-mount/xfce4-gvfs-mount-0.0.4.ebuild,v 1.3 2011/05/19 20:23:27 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-gvfs-mount/xfce4-gvfs-mount-0.0.4.ebuild,v 1.4 2012/04/21 05:51:32 ssuominen Exp $ EAPI=4 -inherit xfconf +inherit multilib xfconf MY_REV=6d2684b DESCRIPTION="A panel plug-in to mount remote filesystems for the Xfce desktop environment" HOMEPAGE="http://goodies.xfce.org/projects/panel-plugins/xfce4-gvfs-mount" -SRC_URI="mirror://xfce/src/panel-plugins/${PN}/0.0/${P}-${MY_REV}.tar.bz2" +SRC_URI="mirror://xfce/src/panel-plugins/${PN}/${PV%.*}/${P}-${MY_REV}.tar.bz2" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="debug" +IUSE="" -RDEPEND=">=dev-libs/dbus-glib-0.88 - >=dev-libs/glib-2.16:2 - >=x11-libs/gtk+-2.12:2 +RDEPEND=">=dev-libs/dbus-glib-0.98 + >=dev-libs/glib-2.24 >=gnome-base/libglade-2.6 + >=x11-libs/gtk+-2.20:2 >=xfce-base/libxfce4util-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" S=${WORKDIR}/${P}-${MY_REV} pkg_setup() { - XFCONF=( $(xfconf_use_debug) ) + XFCONF=( + --libexecdir="${EPREFIX}"/usr/$(get_libdir) + ) + DOCS=( AUTHORS NEWS README ) } |