diff options
Diffstat (limited to 'net-dns/hesiod')
-rw-r--r-- | net-dns/hesiod/ChangeLog | 10 | ||||
-rw-r--r-- | net-dns/hesiod/hesiod-3.1.0.ebuild | 36 |
2 files changed, 44 insertions, 2 deletions
diff --git a/net-dns/hesiod/ChangeLog b/net-dns/hesiod/ChangeLog index fcf833b35b2a..c515233205ed 100644 --- a/net-dns/hesiod/ChangeLog +++ b/net-dns/hesiod/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-dns/hesiod -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/hesiod/ChangeLog,v 1.35 2008/06/18 02:06:21 darkside Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-dns/hesiod/ChangeLog,v 1.36 2010/07/11 11:12:27 hwoarang Exp $ + +*hesiod-3.1.0 (11 Jul 2010) + + 11 Jul 2010; Markos Chandras <hwoarang@gentoo.org> +hesiod-3.1.0.ebuild: + Version bump. Bug #309179. Thanks to Doktor Notor <notordoktor@gmail.com> + for the ebuild 18 Jun 2008; Jeremy Olexa <darkside@gentoo.org> hesiod-3.0.2-r2.ebuild: autoconf -> eautoreconf. bug #226597 diff --git a/net-dns/hesiod/hesiod-3.1.0.ebuild b/net-dns/hesiod/hesiod-3.1.0.ebuild new file mode 100644 index 000000000000..6c16c1e9a3ed --- /dev/null +++ b/net-dns/hesiod/hesiod-3.1.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dns/hesiod/hesiod-3.1.0.ebuild,v 1.1 2010/07/11 11:12:27 hwoarang Exp $ + +EAPI="2" +inherit flag-o-matic eutils autotools + +DESCRIPTION="system which uses existing DNS functionality to provide access to databases of information that changes infrequently" +HOMEPAGE="ftp://athena-dist.mit.edu/pub/ATHENA/hesiod" +SRC_URI="ftp://athena-dist.mit.edu/pub/ATHENA/${PN}/${P}.tar.gz + mirror://gentoo/${P}-patches.tgz" + +LICENSE="ISC" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd" +IUSE="" + +src_prepare() { + # Bug #26332 + filter-flags -fstack-protector + + # Patches stolen from Fedora hesiod-3.1.0-19.fc14.src.rpm + rm -f aclocal.m4 || die "rm failed" + EPATCH_SOURCE="${WORKDIR}/files/${PV}" EPATCH_SUFFIX="patch" EPATCH_FORCE="yes" epatch + eautoreconf +} + +src_install() { + emake DESTDIR="${D}" install || die "install failed" + dodoc NEWS README || die +} + +pkg_postinst() { + elog "hesinfo tools are no longer part of hesiod. Use net-dns/hesinfo + instead" +} |