diff options
author | Michael Weber <xmw@gentoo.org> | 2012-05-22 21:15:07 +0000 |
---|---|---|
committer | Michael Weber <xmw@gentoo.org> | 2012-05-22 21:15:07 +0000 |
commit | 1f3ea2e04190a742e395ec181dcc36c4cf318edc (patch) | |
tree | ab70d28e3390f2876890541671407bf76d137f02 /sys-apps/iproute2 | |
parent | Drop old versions (diff) | |
download | gentoo-2-1f3ea2e04190a742e395ec181dcc36c4cf318edc.tar.gz gentoo-2-1f3ea2e04190a742e395ec181dcc36c4cf318edc.tar.bz2 gentoo-2-1f3ea2e04190a742e395ec181dcc36c4cf318edc.zip |
Finally fix prefix support (bug 414465)
(Portage version: 2.1.10.62/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps/iproute2')
-rw-r--r-- | sys-apps/iproute2/ChangeLog | 5 | ||||
-rw-r--r-- | sys-apps/iproute2/iproute2-3.3.0.ebuild | 13 |
2 files changed, 12 insertions, 6 deletions
diff --git a/sys-apps/iproute2/ChangeLog b/sys-apps/iproute2/ChangeLog index acf858dc0af5..28cf7274280d 100644 --- a/sys-apps/iproute2/ChangeLog +++ b/sys-apps/iproute2/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/iproute2 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.195 2012/05/15 18:59:14 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/ChangeLog,v 1.196 2012/05/22 21:15:07 xmw Exp $ + + 22 May 2012; Michael Weber <xmw@gentoo.org> iproute2-3.3.0.ebuild: + Finally fix prefix support (bug 414465) 15 May 2012; Jeroen Roovers <jer@gentoo.org> iproute2-3.3.0.ebuild: Stable for HPPA (bug #414669). diff --git a/sys-apps/iproute2/iproute2-3.3.0.ebuild b/sys-apps/iproute2/iproute2-3.3.0.ebuild index 4182421c184d..19ef53d427bf 100644 --- a/sys-apps/iproute2/iproute2-3.3.0.ebuild +++ b/sys-apps/iproute2/iproute2-3.3.0.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.3.0.ebuild,v 1.8 2012/05/15 18:59:14 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/iproute2/iproute2-3.3.0.ebuild,v 1.9 2012/05/22 21:15:07 xmw Exp $ EAPI="4" -inherit eutils toolchain-funcs flag-o-matic +inherit eutils toolchain-funcs flag-o-matic multilib if [[ ${PV} == "9999" ]] ; then EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git" @@ -84,9 +84,12 @@ src_install() { emake \ DESTDIR="${D}" \ - SBINDIR=/sbin \ - DOCDIR=/usr/share/doc/${PF} \ - MANDIR=/usr/share/man \ + LIBDIR="${EPREFIX}"/$(get_libdir) \ + SBINDIR="${EPREFIX}"/sbin \ + CONFDIR="${EPREFIX}"/etc/iproute2 \ + DOCDIR="${EPREFIX}"/usr/share/doc/${PF} \ + MANDIR="${EPREFIX}"/usr/share/man \ + ARPDDIR="${EPREFIX}"/var/lib/arpd \ install dolib.a lib/libnetlink.a |