diff options
author | Mark Loeser <halcy0n@gentoo.org> | 2008-04-04 01:21:08 +0000 |
---|---|---|
committer | Mark Loeser <halcy0n@gentoo.org> | 2008-04-04 01:21:08 +0000 |
commit | 606721cf6a4b575bc0e224686ab7959124343862 (patch) | |
tree | ee28e3f397dfcbd5152240f8431c7cd277c49f0b /net-dns | |
parent | Fix homepage; bug #212615 (diff) | |
download | gentoo-2-606721cf6a4b575bc0e224686ab7959124343862.tar.gz gentoo-2-606721cf6a4b575bc0e224686ab7959124343862.tar.bz2 gentoo-2-606721cf6a4b575bc0e224686ab7959124343862.zip |
Fix homepage and autotools invocation; bug #212615
(Portage version: 2.1.4.4)
Diffstat (limited to 'net-dns')
-rw-r--r-- | net-dns/posadis/ChangeLog | 7 | ||||
-rw-r--r-- | net-dns/posadis/posadis-0.60.6.ebuild | 14 |
2 files changed, 12 insertions, 9 deletions
diff --git a/net-dns/posadis/ChangeLog b/net-dns/posadis/ChangeLog index d6b7725036ef..6d90cf6f04a3 100644 --- a/net-dns/posadis/ChangeLog +++ b/net-dns/posadis/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-dns/posadis -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/posadis/ChangeLog,v 1.21 2007/05/06 09:20:05 genone Exp $ +# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-dns/posadis/ChangeLog,v 1.22 2008/04/04 01:21:08 halcy0n Exp $ + + 04 Apr 2008; Mark Loeser <halcy0n@gentoo.org> posadis-0.60.6.ebuild: + Fix homepage and autotools invocation; bug #212615 06 May 2007; Marius Mauch <genone@gentoo.org> posadis-0.60.6.ebuild: Replacing einfo with ewarn diff --git a/net-dns/posadis/posadis-0.60.6.ebuild b/net-dns/posadis/posadis-0.60.6.ebuild index c4f8b7b3d3de..59d96cb65124 100644 --- a/net-dns/posadis/posadis-0.60.6.ebuild +++ b/net-dns/posadis/posadis-0.60.6.ebuild @@ -1,11 +1,11 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 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.9 2007/06/26 02:23:31 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/posadis/posadis-0.60.6.ebuild,v 1.10 2008/04/04 01:21:08 halcy0n Exp $ inherit libtool eutils multilib autotools DESCRIPTION="An authoritative/caching Domain Name Server" -HOMEPAGE="http://www.posadis.org/posadis" +HOMEPAGE="http://posadis.sourceforge.net" SRC_URI="mirror://sourceforge/posadis/${P}.tar.gz" LICENSE="GPL-2" @@ -23,8 +23,8 @@ src_unpack() { unpack ${A} #fix makefile problem - cd ${S}/libltdl - WANT_AUTOCONF="2.5" autoconf || die "libltdl autoconf failed" + cd "${S}"/libltdl + WANT_AUTOCONF="2.5" eautoconf || die "libltdl autoconf failed" cd ../ find . -name 'Makefile.am' -or -name 'configure.in' | xargs sed -i -e "s:/lib/:/$(get_libdir)/:g" @@ -38,13 +38,13 @@ src_compile() { } src_install() { - make DESTDIR=${D} install || die + make DESTDIR="${D}" install || die # make directory for posadis pidfile and zone data files keepdir /var/posadis keepdir /etc/posadis - newinitd ${FILESDIR}/${PN}-init posadis + newinitd "${FILESDIR}"/${PN}-init posadis insinto /etc/ doins posadisrc |