diff options
author | Simon Stelling <blubb@gentoo.org> | 2006-12-14 23:03:43 +0000 |
---|---|---|
committer | Simon Stelling <blubb@gentoo.org> | 2006-12-14 23:03:43 +0000 |
commit | 3146ec224854d48f42b96b12fbe89eca603e83f3 (patch) | |
tree | c1b4cef0041f2205c71d26c3557818a92074f781 /net-dns | |
parent | Stable on Alpha. (diff) | |
download | gentoo-2-3146ec224854d48f42b96b12fbe89eca603e83f3.tar.gz gentoo-2-3146ec224854d48f42b96b12fbe89eca603e83f3.tar.bz2 gentoo-2-3146ec224854d48f42b96b12fbe89eca603e83f3.zip |
multilib-strict fix; bug 153978
(Portage version: 2.1.2_pre3-r2)
Diffstat (limited to 'net-dns')
-rw-r--r-- | net-dns/posadis/ChangeLog | 5 | ||||
-rw-r--r-- | net-dns/posadis/posadis-0.60.6.ebuild | 11 |
2 files changed, 12 insertions, 4 deletions
diff --git a/net-dns/posadis/ChangeLog b/net-dns/posadis/ChangeLog index 95505faa995a..48db58b1cd76 100644 --- a/net-dns/posadis/ChangeLog +++ b/net-dns/posadis/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-dns/posadis # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/posadis/ChangeLog,v 1.18 2006/11/04 23:33:16 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/posadis/ChangeLog,v 1.19 2006/12/14 23:03:43 blubb Exp $ + + 14 Dec 2006; Simon Stelling <blubb@gentoo.org> posadis-0.60.6.ebuild: + multilib-strict fix; bug 153978 04 Nov 2006; MATSUU Takuto <matsuu@gentoo.org> -posadis-0.60.5-r1.ebuild: Removed old version. diff --git a/net-dns/posadis/posadis-0.60.6.ebuild b/net-dns/posadis/posadis-0.60.6.ebuild index 7a661af7b635..bf618c6344f1 100644 --- a/net-dns/posadis/posadis-0.60.6.ebuild +++ b/net-dns/posadis/posadis-0.60.6.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/posadis/posadis-0.60.6.ebuild,v 1.5 2006/11/04 11:34:15 blubb Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/posadis/posadis-0.60.6.ebuild,v 1.6 2006/12/14 23:03:43 blubb Exp $ -inherit libtool eutils +inherit libtool eutils multilib autotools DESCRIPTION="An authoritative/caching Domain Name Server" HOMEPAGE="http://www.posadis.org/posadis" @@ -21,10 +21,15 @@ DEPEND="${RDEPEND} src_unpack() { unpack ${A} - + #fix makefile problem cd ${S}/libltdl WANT_AUTOCONF="2.5" autoconf || die "libltdl autoconf failed" + + cd ../ + find . -name 'Makefile.am' -or -name 'configure.in' | xargs sed -i -e "s:/lib/:/$(get_libdir)/:g" + + eautoreconf || die "eautoreconf failed" } src_compile() { |