diff options
author | Sven Wegener <swegener@gentoo.org> | 2012-11-04 21:42:49 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2012-11-04 21:42:49 +0000 |
commit | 88107f26fae4f40527b30a9b0b47dbfd598fb73d (patch) | |
tree | 75ed6f365401e423422a885954ca1f0aa8136af5 /net-dns/pdns | |
parent | Drop old revision (diff) | |
download | gentoo-2-88107f26fae4f40527b30a9b0b47dbfd598fb73d.tar.gz gentoo-2-88107f26fae4f40527b30a9b0b47dbfd598fb73d.tar.bz2 gentoo-2-88107f26fae4f40527b30a9b0b47dbfd598fb73d.zip |
Version bump, bug #437178.
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 0x64D4CF24)
Diffstat (limited to 'net-dns/pdns')
-rw-r--r-- | net-dns/pdns/ChangeLog | 7 | ||||
-rw-r--r-- | net-dns/pdns/pdns-3.1.ebuild | 107 |
2 files changed, 113 insertions, 1 deletions
diff --git a/net-dns/pdns/ChangeLog b/net-dns/pdns/ChangeLog index a68e663ea2ce..fe30370bd96e 100644 --- a/net-dns/pdns/ChangeLog +++ b/net-dns/pdns/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-dns/pdns # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/pdns/ChangeLog,v 1.81 2012/07/07 11:43:21 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/pdns/ChangeLog,v 1.82 2012/11/04 21:42:49 swegener Exp $ + +*pdns-3.1 (04 Nov 2012) + + 04 Nov 2012; Sven Wegener <swegener@gentoo.org> +pdns-3.1.ebuild: + Version bump, bug #437178. 07 Jul 2012; Sven Wegener <swegener@gentoo.org> pdns-3.0.ebuild, pdns-3.0.1.ebuild: diff --git a/net-dns/pdns/pdns-3.1.ebuild b/net-dns/pdns/pdns-3.1.ebuild new file mode 100644 index 000000000000..63224fb491f7 --- /dev/null +++ b/net-dns/pdns/pdns-3.1.ebuild @@ -0,0 +1,107 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dns/pdns/pdns-3.1.ebuild,v 1.1 2012/11/04 21:42:49 swegener Exp $ + +EAPI=2 + +inherit eutils multilib user toolchain-funcs + +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="~amd64 ~x86" +IUSE="debug doc ldap mysql postgres sqlite sqlite3 static opendbx" + +RDEPEND="mysql? ( virtual/mysql ) + postgres? ( dev-db/postgresql-base ) + ldap? ( >=net-nds/openldap-2.0.27-r4 ) + sqlite? ( =dev-db/sqlite-2.8* ) + sqlite3? ( =dev-db/sqlite-3* ) + opendbx? ( dev-db/opendbx ) + !static? ( >=dev-libs/boost-1.34 )" +DEPEND="${RDEPEND} + virtual/pkgconfig + static? ( >=dev-libs/boost-1.34[static-libs] ) + doc? ( app-doc/doxygen )" + +src_configure() { + local modules="pipe geo" myconf="" + + use mysql && modules="${modules} gmysql" + use postgres && modules="${modules} gpgsql" + use sqlite && modules="${modules} gsqlite" + use sqlite3 && modules="${modules} gsqlite3" + use opendbx && modules="${modules} opendbx" + use ldap && modules="${modules} ldap" + use debug && myconf="${myconf} --enable-verbose-logging" + + econf \ + --sysconfdir=/etc/powerdns \ + --libdir=/usr/$(get_libdir)/powerdns \ + --disable-recursor \ + --with-modules= \ + --with-dynmodules="${modules}" \ + --with-pgsql-includes=/usr/include \ + --with-pgsql-lib=/usr/$(get_libdir) \ + --with-mysql-lib=/usr/$(get_libdir) \ + --with-sqlite-lib=/usr/$(get_libdir) \ + --without-lua \ + $(use_enable static static-binaries) \ + ${myconf} \ + || die "econf failed" +} + +src_compile() { + emake -C pdns/ext/polarssl CC="$(tc-getCC)" OFLAGS="${CFLAGS}" + + default + + if use doc + then + emake -C codedocs codedocs || die "emake codedocs failed" + fi +} + +src_install () { + emake DESTDIR="${D}" install || die "make install failed" + + mv "${D}"/etc/powerdns/pdns.conf{-dist,} + + # set defaults: setuid=pdns, setgid=pdns + sed -i \ + -e 's/^# set\([ug]\)id=$/set\1id=pdns/g' \ + "${D}"/etc/powerdns/pdns.conf + + doinitd "${FILESDIR}"/pdns + + keepdir /var/empty + + dodoc ChangeLog README TODO + use doc && dohtml -r codedocs/html/. + + # Install development headers + insinto /usr/include/pdns + doins pdns/*.hh + insinto /usr/include/pdns/backends/gsql + doins pdns/backends/gsql/*.hh + + rm -f "${D}"/usr/$(get_libdir)/powerdns/*.{a,la} +} + +pkg_preinst() { + enewgroup pdns + enewuser pdns -1 -1 /var/empty pdns +} + +pkg_postinst() { + elog + elog "PowerDNS provides multiple instances support. You can create more instances" + elog "by symlinking the pdns init script to another name." + elog + elog "The name must be in the format pdns.<suffix> and PowerDNS will use the" + elog "/etc/powerdns/pdns-<suffix>.conf configuration file instead of the default." + elog +} |