summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaúl Porcel <armin76@gentoo.org>2008-03-07 18:36:33 +0000
committerRaúl Porcel <armin76@gentoo.org>2008-03-07 18:36:33 +0000
commitc42b37376d801c42016f3e9d70fe8968374b9d4d (patch)
tree03a5cb4326df7d61647a184f8c675635a06b88b9 /net-dns/hesiod/hesiod-3.0.2.ebuild
parentQA cleanup: Shorten DESCRIPTION. (diff)
downloadhistorical-c42b37376d801c42016f3e9d70fe8968374b9d4d.tar.gz
historical-c42b37376d801c42016f3e9d70fe8968374b9d4d.tar.bz2
historical-c42b37376d801c42016f3e9d70fe8968374b9d4d.zip
cleanup
Package-Manager: portage-2.1.4.4
Diffstat (limited to 'net-dns/hesiod/hesiod-3.0.2.ebuild')
-rw-r--r--net-dns/hesiod/hesiod-3.0.2.ebuild56
1 files changed, 0 insertions, 56 deletions
diff --git a/net-dns/hesiod/hesiod-3.0.2.ebuild b/net-dns/hesiod/hesiod-3.0.2.ebuild
deleted file mode 100644
index 74fbc68fb664..000000000000
--- a/net-dns/hesiod/hesiod-3.0.2.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/hesiod/hesiod-3.0.2.ebuild,v 1.14 2007/11/03 02:22:08 uberlord Exp $
-
-inherit flag-o-matic
-
-DESCRIPTION="Hesiod is a system which uses existing DNS functionality to provide access to databases of information that changes infrequently."
-SRC_URI="ftp://athena-dist.mit.edu/pub/ATHENA/${PN}/${P}.tar.gz"
-HOMEPAGE="ftp://athena-dist.mit.edu/pub/ATHENA/hesiod"
-
-SLOT="0"
-LICENSE="ISC"
-KEYWORDS="hppa ppc sparc ~sparc-fbsd x86"
-IUSE=""
-
-src_unpack() {
- unpack ${A}
-
- filter-flags -fstack-protector
-
- #Patches stolen from RH
- cat ${FILESDIR}/hesiod-3.0.2-shlib.patch | patch -d ${S} -p1
- cat ${FILESDIR}/hesiod-3.0.2-env.patch | patch -d ${S} -p1
- cat ${FILESDIR}/hesiod-3.0.2-str.patch | patch -d ${S} -p1
- cd ${S}
- for manpage in *.3
- do
- if grep -q '^\.so man3/hesiod.3' ${manpage}
- then
- echo .so hesiod.3 > ${manpage}
- elif grep -q '^\.so man3/hesiod_getmailhost.3' ${manpage}
- then
- echo .so hesiod_getmailhost.3 > ${manpage}
- elif grep -q '^\.so man3/hesiod_getpwnam.3' ${manpage}
- then
- echo .so hesiod_getpwnam.3 > ${manpage}
- elif grep -q '^\.so man3/hesiod_getservbyname.3' ${manpage}
- then
- echo .so hesiod_getservbyname.3 > ${manpage}
- fi
- done
-}
-
-src_compile() {
- ./configure \
- --host=${CHOST} \
- --prefix=/usr \
- --infodir=/usr/share/info \
- --mandir=/usr/share/man || die "./configure failed"
- emake || die
- #make || die
-}
-
-src_install () {
- make DESTDIR=${D} install || die
-}