summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJared H.Hudson <jhhudso@gentoo.org>2003-08-06 08:17:21 +0000
committerJared H.Hudson <jhhudso@gentoo.org>2003-08-06 08:17:21 +0000
commit8d097332fdaa79a13884dcf93a29662845867d71 (patch)
treebb62cb48cead154ca2d3a9cf4a2dddd8fc49c9a0 /net-dns/pdns
parentfix bug #25998 (diff)
downloadhistorical-8d097332fdaa79a13884dcf93a29662845867d71.tar.gz
historical-8d097332fdaa79a13884dcf93a29662845867d71.tar.bz2
historical-8d097332fdaa79a13884dcf93a29662845867d71.zip
Fixed bug keeping pdns from building with USE=-mysql defined (and mysql not installed)
Diffstat (limited to 'net-dns/pdns')
-rw-r--r--net-dns/pdns/ChangeLog7
-rw-r--r--net-dns/pdns/Manifest4
-rw-r--r--net-dns/pdns/pdns-2.9.8.ebuild6
3 files changed, 12 insertions, 5 deletions
diff --git a/net-dns/pdns/ChangeLog b/net-dns/pdns/ChangeLog
index 671c7ef1c7fa..c2a3670a30e7 100644
--- a/net-dns/pdns/ChangeLog
+++ b/net-dns/pdns/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-dns/pdns
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/pdns/ChangeLog,v 1.1 2003/06/05 03:34:20 jhhudso Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/pdns/ChangeLog,v 1.2 2003/08/06 08:17:16 jhhudso Exp $
+
+ 06 Aug 2003; Jared Hudson <jhhudso@gentoo.org> : Fixed bug where pdns would
+ not build with USE=-mysql, if mysql was not installed. Thanks to
+ mi-g2bug@imarko.dhs.org (Bug id #23506) for the fix.
+
*pdns-2.9.8 (04 Jun 2003)
04 Jun 2003; Jared Hudson <jhhudso@gentoo.org> : Initial import.
diff --git a/net-dns/pdns/Manifest b/net-dns/pdns/Manifest
index e7e2b9505afb..04b22d663d1c 100644
--- a/net-dns/pdns/Manifest
+++ b/net-dns/pdns/Manifest
@@ -1,4 +1,4 @@
-MD5 6370c1e119eef30cb0699af44269a6eb ChangeLog 296
-MD5 df319f39933b20302fc648764c58da4e pdns-2.9.8.ebuild 917
+MD5 5fb0d09291a2414913463a4f3658c320 ChangeLog 499
+MD5 3f890673f6c88cc98addaa08fc7acab9 pdns-2.9.8.ebuild 964
MD5 0969ab0b2776f09c9aeb74b0996c4426 files/pdns 533
MD5 edc11ac6841533c59818f2c1fb9f2a01 files/digest-pdns-2.9.8 62
diff --git a/net-dns/pdns/pdns-2.9.8.ebuild b/net-dns/pdns/pdns-2.9.8.ebuild
index 3c3019ae733e..215a340f110e 100644
--- a/net-dns/pdns/pdns-2.9.8.ebuild
+++ b/net-dns/pdns/pdns-2.9.8.ebuild
@@ -1,6 +1,6 @@
# Copyright 2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dns/pdns/pdns-2.9.8.ebuild,v 1.1 2003/06/05 03:34:20 jhhudso Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dns/pdns/pdns-2.9.8.ebuild,v 1.2 2003/08/06 08:17:16 jhhudso Exp $
DESCRIPTION="The PowerDNS Daemon."
SRC_URI="http://downloads.powerdns.com/releases/${P}.tar.gz"
@@ -19,9 +19,11 @@ S=${WORKDIR}/${P}
src_compile() {
local myconf=""
+ local modules=""
- use mysql && myconf="$myconf --with-modules=gmysql"
use static && myconf="$myconf --enable-static-binaries"
+ use mysql && modules="gmysql $modules"
+ myconf="$myconf --with-modules=$modules"
econf $myconf
emake || die "emake failed"