diff options
author | Zac Medico <zmedico@gentoo.org> | 2012-09-29 20:33:41 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2012-09-29 20:33:41 +0000 |
commit | 0afaf54c4158bd77b2641a7332339e29e9810a0e (patch) | |
tree | b731e7b61ec0f414fb438a47f06f2fd70f545f79 /sys-apps/dbus | |
parent | fix compilation for --as-needed (diff) | |
download | gentoo-2-0afaf54c4158bd77b2641a7332339e29e9810a0e.tar.gz gentoo-2-0afaf54c4158bd77b2641a7332339e29e9810a0e.tar.bz2 gentoo-2-0afaf54c4158bd77b2641a7332339e29e9810a0e.zip |
Fix for prefix and add ~x86-linux keyword.
(Portage version: 2.2.0_alpha134/cvs/Linux i686)
Diffstat (limited to 'sys-apps/dbus')
-rw-r--r-- | sys-apps/dbus/ChangeLog | 5 | ||||
-rw-r--r-- | sys-apps/dbus/dbus-1.6.8.ebuild | 10 |
2 files changed, 9 insertions, 6 deletions
diff --git a/sys-apps/dbus/ChangeLog b/sys-apps/dbus/ChangeLog index c1e2dc4b0b52..21174a4f98e4 100644 --- a/sys-apps/dbus/ChangeLog +++ b/sys-apps/dbus/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/dbus # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v 1.354 2012/09/29 16:28:50 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/ChangeLog,v 1.355 2012/09/29 20:33:41 zmedico Exp $ + + 29 Sep 2012; Zac Medico <zmedico@gentoo.org> dbus-1.6.8.ebuild: + Fix for prefix and add ~x86-linux keyword. 29 Sep 2012; Samuli Suominen <ssuominen@gentoo.org> -dbus-1.4.16.ebuild, -dbus-1.6.0.ebuild, -dbus-1.6.4.ebuild, -dbus-1.6.4-r1.ebuild, diff --git a/sys-apps/dbus/dbus-1.6.8.ebuild b/sys-apps/dbus/dbus-1.6.8.ebuild index a2a1a77fefa0..660eb2e94738 100644 --- a/sys-apps/dbus/dbus-1.6.8.ebuild +++ b/sys-apps/dbus/dbus-1.6.8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.6.8.ebuild,v 1.1 2012/09/29 16:26:19 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/dbus/dbus-1.6.8.ebuild,v 1.2 2012/09/29 20:33:41 zmedico Exp $ EAPI=4 inherit autotools eutils linux-info flag-o-matic python systemd virtualx user @@ -11,7 +11,7 @@ SRC_URI="http://dbus.freedesktop.org/releases/dbus/${P}.tar.gz" LICENSE="|| ( AFL-2.1 GPL-2 )" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-linux" IUSE="debug doc selinux static-libs systemd test X" RDEPEND=">=dev-libs/expat-2 @@ -79,9 +79,9 @@ src_configure() { # libaudit is *only* used in DBus wrt SELinux support, so disable it, if # not on an SELinux profile. myconf=( - --localstatedir=/var - --docdir=/usr/share/doc/${PF} - --htmldir=/usr/share/doc/${PF}/html + --localstatedir="${EPREFIX}/var" + --docdir="${EPREFIX}/usr/share/doc/${PF}" + --htmldir="${EPREFIX}/usr/share/doc/${PF}/html" $(use_enable static-libs static) $(use_enable debug verbose-mode) --disable-asserts |