diff options
author | Simon Stelling <blubb@gentoo.org> | 2005-09-03 19:48:43 +0000 |
---|---|---|
committer | Simon Stelling <blubb@gentoo.org> | 2005-09-03 19:48:43 +0000 |
commit | a40a584f67002172a74444c8c29f1eed1b2a5866 (patch) | |
tree | 8f3f6ef8fe3a0fc01ba7a0c06b1ae7553db1927e /net-misc | |
parent | fixing parallel build problems using 'emake -j1' (see bug 102426) (diff) | |
download | gentoo-2-a40a584f67002172a74444c8c29f1eed1b2a5866.tar.gz gentoo-2-a40a584f67002172a74444c8c29f1eed1b2a5866.tar.bz2 gentoo-2-a40a584f67002172a74444c8c29f1eed1b2a5866.zip |
made quagga multilib-strict aware
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/quagga/ChangeLog | 5 | ||||
-rw-r--r-- | net-misc/quagga/quagga-0.98.4.ebuild | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/net-misc/quagga/ChangeLog b/net-misc/quagga/ChangeLog index 6c11ca280357..91695a359665 100644 --- a/net-misc/quagga/ChangeLog +++ b/net-misc/quagga/ChangeLog @@ -2,7 +2,10 @@ # Copyright 1999-2005 Gentoo Foundation # Copyright 2003-2004 DataCore GmbH # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v 1.17 2005/08/11 09:01:32 mrness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/ChangeLog,v 1.18 2005/09/03 19:48:43 blubb Exp $ + + 03 Sep 2005; Simon Stelling <blubb@gentoo.org> quagga-0.98.4.ebuild: + made quagga multilib-strict aware *quagga-0.98.4 (11 Aug 2005) diff --git a/net-misc/quagga/quagga-0.98.4.ebuild b/net-misc/quagga/quagga-0.98.4.ebuild index 0448196234e0..1dbd2bc81620 100644 --- a/net-misc/quagga/quagga-0.98.4.ebuild +++ b/net-misc/quagga/quagga-0.98.4.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.98.4.ebuild,v 1.1 2005/08/11 09:01:32 mrness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/quagga/quagga-0.98.4.ebuild,v 1.2 2005/09/03 19:48:43 blubb Exp $ -inherit eutils +inherit eutils multilib DESCRIPTION="A free routing daemon replacing Zebra supporting RIP, OSPF and BGP. Includes OSPFAPI, NET-SNMP and IPV6 support." HOMEPAGE="http://quagga.net/" @@ -66,7 +66,7 @@ src_compile() { --sysconfdir=/etc/quagga \ --enable-exampledir=/etc/quagga/samples \ --localstatedir=/var/run/quagga \ - --libdir=/usr/lib/quagga \ + --libdir=/usr/$(get_libdir)/quagga \ ${myconf} \ || die "configure failed" emake || die "make failed" @@ -77,7 +77,7 @@ src_install() { localstatedir=${D}/var/run/quagga \ sysconfdir=${D}/etc/quagga \ exampledir=${D}/etc/quagga/samples \ - libdir=${D}/usr/lib/quagga || die "make install failed" + libdir=${D}/usr/$(get_libdir)/quagga || die "make install failed" keepdir /var/run/quagga || die |