summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2005-05-05 17:58:51 +0000
committerSeemant Kulleen <seemant@gentoo.org>2005-05-05 17:58:51 +0000
commitff022df1dfdd2cacc1b4519329ee7b6a18a4f258 (patch)
tree89e07a136d0ee6f435f12ee9d56f4899b5192afc /net-dns/pdns/pdns-2.9.16.ebuild
parentFixed [<>]=cat/pkg-ver* dependencies. (diff)
downloadhistorical-ff022df1dfdd2cacc1b4519329ee7b6a18a4f258.tar.gz
historical-ff022df1dfdd2cacc1b4519329ee7b6a18a4f258.tar.bz2
historical-ff022df1dfdd2cacc1b4519329ee7b6a18a4f258.zip
removed old crusty ebuilds
Package-Manager: portage-2.0.51.21-r1
Diffstat (limited to 'net-dns/pdns/pdns-2.9.16.ebuild')
-rw-r--r--net-dns/pdns/pdns-2.9.16.ebuild45
1 files changed, 0 insertions, 45 deletions
diff --git a/net-dns/pdns/pdns-2.9.16.ebuild b/net-dns/pdns/pdns-2.9.16.ebuild
deleted file mode 100644
index 32dbd1276efb..000000000000
--- a/net-dns/pdns/pdns-2.9.16.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/pdns/pdns-2.9.16.ebuild,v 1.5 2005/01/22 12:04:50 luckyduck Exp $
-
-DESCRIPTION="The PowerDNS Daemon."
-SRC_URI="http://downloads.powerdns.com/releases/${P}.tar.gz"
-HOMEPAGE="http://www.powerdns.com/"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE="mysql postgres static ldap"
-
-DEPEND="virtual/libc
- mysql? ( >=dev-db/mysql-3.23.54a )
- postgres? ( >=dev-cpp/libpqpp-4.0-r1 )
- ldap? ( >=net-nds/openldap-2.0.27-r4 )"
-
-RDEPEND="${DEPEND}"
-
-src_compile() {
- local myconf=""
- local modules=""
-
- use static && myconf="$myconf --enable-static-binaries"
- use postgres && myconf="$myconf --with-pgsql-includes=/usr/include"
-
- use mysql && modules="gmysql $modules"
- use postgres && modules="gpgsql $modules"
- use ldap && modules="ldap $modules"
-
- econf --with-modules="$modules" \
- $myconf || die "Configuration failed"
-
- emake || die "Make failed"
-}
-
-src_install () {
- make DESTDIR=${D} install || die
- dodoc ChangeLog HACKING INSTALL README TODO WARNING pdns/COPYING
-
- exeinto /etc/init.d
- doexe ${FILESDIR}/pdns
-
- mv ${D}/etc/pdns.conf-dist ${D}/etc/pdns.conf
-}