summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorminskim <minskim@pkgsrc.org>2005-10-29 16:56:15 +0000
committerminskim <minskim@pkgsrc.org>2005-10-29 16:56:15 +0000
commita51ec216f4bdf8258e6366f5587eb22180983fae (patch)
treea94762bd20f7cb8f4a6dc2f27ed8a94521e7de69 /net
parentaae09e9265865305e687eb2164911c544ffd4a90 (diff)
downloadpkgsrc-a51ec216f4bdf8258e6366f5587eb22180983fae.tar.gz
Import mydns-pgsql from pkgsrc-wip. Packaged by Geert Hendrickx, and
slightly modified by me. MyDNS is a free DNS server for UNIX. It was implemented from scratch and is designed to serve records directly from an SQL database (currently either MySQL or PostgreSQL). Its primary objectives are stability, security, interoperability, and speed, though not necessarily in that order. MyDNS does not include recursive name service, nor a resolver library. It is primarily designed for organizations with many zones and/or resource records who desire the ability to perform real-time dynamic updates on their DNS data via MySQL. MyDNS starts and is ready to answer questions immediately, no matter how much DNS data you have in the database. It is very fast and memory- efficient. It includes complete documentation, including a manual and a FAQ. MyDNS supports a few frills, including round robin DNS, dynamic load balancing, and outgoing AXFR for non-MyDNS nameservers. MyDNS is licensed under the GNU General Public License. This package provides the PostgreSQL-based version.
Diffstat (limited to 'net')
-rw-r--r--net/mydns-pgsql/DESCR23
-rw-r--r--net/mydns-pgsql/MESSAGE11
-rw-r--r--net/mydns-pgsql/Makefile13
-rw-r--r--net/mydns-pgsql/Makefile.common39
-rw-r--r--net/mydns-pgsql/PLIST21
-rw-r--r--net/mydns-pgsql/distinfo6
-rw-r--r--net/mydns-pgsql/files/mydns.sh27
-rw-r--r--net/mydns-pgsql/patches/patch-aa15
8 files changed, 155 insertions, 0 deletions
diff --git a/net/mydns-pgsql/DESCR b/net/mydns-pgsql/DESCR
new file mode 100644
index 00000000000..e93f7e522c8
--- /dev/null
+++ b/net/mydns-pgsql/DESCR
@@ -0,0 +1,23 @@
+MyDNS is a free DNS server for UNIX. It was implemented from scratch
+and is designed to serve records directly from an SQL database
+(currently either MySQL or PostgreSQL).
+
+Its primary objectives are stability, security, interoperability, and
+speed, though not necessarily in that order.
+
+MyDNS does not include recursive name service, nor a resolver library.
+It is primarily designed for organizations with many zones and/or
+resource records who desire the ability to perform real-time dynamic
+updates on their DNS data via MySQL.
+
+MyDNS starts and is ready to answer questions immediately, no matter
+how much DNS data you have in the database. It is very fast and
+memory- efficient. It includes complete documentation, including a
+manual and a FAQ.
+
+MyDNS supports a few frills, including round robin DNS, dynamic load
+balancing, and outgoing AXFR for non-MyDNS nameservers.
+
+MyDNS is licensed under the GNU General Public License.
+
+This package provides the PostgreSQL-based version.
diff --git a/net/mydns-pgsql/MESSAGE b/net/mydns-pgsql/MESSAGE
new file mode 100644
index 00000000000..34b278a1038
--- /dev/null
+++ b/net/mydns-pgsql/MESSAGE
@@ -0,0 +1,11 @@
+===========================================================================
+$NetBSD: MESSAGE,v 1.1.1.1 2005/10/29 16:56:15 minskim Exp $
+
+MyDNS uses two tables in a PostgreSQL database: "soa" and "rr" (you can
+change this in ${PKG_SYSCONFDIR}/mydns.conf if you want). MyDNS can give the
+commands to generate these tables:
+
+ ${PREFIX}/sbin/mydns --create-tables
+
+You can pipe the output right into the psql(1) client.
+===========================================================================
diff --git a/net/mydns-pgsql/Makefile b/net/mydns-pgsql/Makefile
new file mode 100644
index 00000000000..1cbffa9fb0b
--- /dev/null
+++ b/net/mydns-pgsql/Makefile
@@ -0,0 +1,13 @@
+# $NetBSD: Makefile,v 1.1.1.1 2005/10/29 16:56:15 minskim Exp $
+
+PKGNAME= ${DISTNAME:S/-/-pgsql-/}
+COMMENT= PostgreSQL-based DNS server
+
+CONFLICTS= mydns-mysql-[0-9]*
+
+CONFIGURE_ARGS+= --without-mysql
+CONFIGURE_ARGS+= --with-pgsql-lib=${BUILDLINK_PREFIX.${PGSQL_TYPE}}/lib
+CONFIGURE_ARGS+= --with-pgsql-include=${BUILDLINK_PREFIX.${PGSQL_TYPE}}/include
+
+.include "../../mk/pgsql.buildlink3.mk"
+.include "Makefile.common"
diff --git a/net/mydns-pgsql/Makefile.common b/net/mydns-pgsql/Makefile.common
new file mode 100644
index 00000000000..e15576324d6
--- /dev/null
+++ b/net/mydns-pgsql/Makefile.common
@@ -0,0 +1,39 @@
+# $NetBSD: Makefile.common,v 1.1.1.1 2005/10/29 16:56:15 minskim Exp $
+
+DISTNAME= mydns-1.0.0
+CATEGORIES= net
+MASTER_SITES= http://mydns.bboy.net/download/
+EXTRACT_SUFX= .tar.bz2
+
+MAINTAINER= geert.hendrickx@ua.ac.be
+HOMEPAGE= http://mydns.bboy.net/
+
+GNU_CONFIGURE= YES
+USE_PKGLOCALEDIR= YES
+USE_PKGINSTALL= YES
+
+CONFIGURE_ARGS+= --with-confdir=${PKG_SYSCONFDIR}
+
+MYDNS_USER?= mydns
+MYDNS_GROUP?= mydns
+MYDNS_PERMS= ${ROOT_USER} ${ROOT_GROUP} 600
+
+SUBST_CLASSES+= user
+SUBST_STAGE.user= pre-build
+SUBST_FILES.user= src/mydns/conf.c
+SUBST_SED.user= -e 's/%%MYDNS_USER%%/${MYDNS_USER}/'
+SUBST_SED.user+= -e 's/%%MYDNS_GROUP%%/${MYDNS_GROUP}/'
+
+EGDIR= ${PREFIX}/share/examples/${PKGBASE}
+CONF_FILES_PERMS= ${EGDIR}/mydns.conf ${PKG_SYSCONFDIR}/mydns.conf ${MYDNS_PERMS}
+RCD_SCRIPTS= mydns
+
+PKG_GROUPS= ${MYDNS_GROUP}
+PKG_USERS= ${MYDNS_USER}:${MYDNS_GROUP}::MyDNS\ user
+
+post-install:
+ ${INSTALL_DATA_DIR} ${EGDIR}
+ ${WRKSRC}/src/mydns/mydns --dump-config > ${EGDIR}/mydns.conf
+ ${CHMOD} 0600 ${EGDIR}/mydns.conf
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/net/mydns-pgsql/PLIST b/net/mydns-pgsql/PLIST
new file mode 100644
index 00000000000..b98ce55ec58
--- /dev/null
+++ b/net/mydns-pgsql/PLIST
@@ -0,0 +1,21 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2005/10/29 16:56:15 minskim Exp $
+bin/mydns-conf
+bin/mydnscheck
+bin/mydnsexport
+bin/mydnsimport
+bin/mydnsptrconvert
+info/mydns.info
+man/man5/mydns.conf.5
+man/man8/mydns-conf.8
+man/man8/mydns.8
+man/man8/mydnscheck.8
+man/man8/mydnsexport.8
+man/man8/mydnsimport.8
+man/man8/mydnsptrconvert.8
+sbin/mydns
+share/examples/mydns-pgsql/mydns.conf
+share/examples/rc.d/mydns
+${PKGLOCALEDIR}/locale/es/LC_MESSAGES/mydns.mo
+${PKGLOCALEDIR}/locale/fr/LC_MESSAGES/mydns.mo
+${PKGLOCALEDIR}/locale/pt_BR/LC_MESSAGES/mydns.mo
+@dirrm share/examples/mydns-pgsql
diff --git a/net/mydns-pgsql/distinfo b/net/mydns-pgsql/distinfo
new file mode 100644
index 00000000000..7d882a6b993
--- /dev/null
+++ b/net/mydns-pgsql/distinfo
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1.1.1 2005/10/29 16:56:15 minskim Exp $
+
+SHA1 (mydns-1.0.0.tar.bz2) = 6a19977f8c6411ed142a5cc635c1cd53e0afc69c
+RMD160 (mydns-1.0.0.tar.bz2) = a83d790faf3e1a90fcae70e8f1900432ed5e15cf
+Size (mydns-1.0.0.tar.bz2) = 545441 bytes
+SHA1 (patch-aa) = 76fc8010ef86169460735ec7012a7885b8d76924
diff --git a/net/mydns-pgsql/files/mydns.sh b/net/mydns-pgsql/files/mydns.sh
new file mode 100644
index 00000000000..968bb4982fc
--- /dev/null
+++ b/net/mydns-pgsql/files/mydns.sh
@@ -0,0 +1,27 @@
+#!/bin/sh
+#
+# $NetBSD: mydns.sh,v 1.1.1.1 2005/10/29 16:56:15 minskim Exp $
+#
+# PROVIDE: mydns
+# REQUIRE: SERVERS
+# BEFORE: DAEMON
+
+if [ -f /etc/rc.subr ]; then
+ . /etc/rc.subr
+fi
+
+name="mydns"
+rcvar=$name
+command="@PREFIX@/sbin/mydns"
+command_args="-b"
+required_files="@PKG_SYSCONFDIR@/mydns.conf"
+extra_commands="reload"
+reload_sig="HUP"
+
+if [ -f /etc/rc.subr ]; then
+ load_rc_config $name
+ run_rc_command "$1"
+else
+ @ECHO@ -n " ${name}$"
+ ${command} ${command_args} ${mydns_flags}
+fi
diff --git a/net/mydns-pgsql/patches/patch-aa b/net/mydns-pgsql/patches/patch-aa
new file mode 100644
index 00000000000..e826ecd22bc
--- /dev/null
+++ b/net/mydns-pgsql/patches/patch-aa
@@ -0,0 +1,15 @@
+$NetBSD: patch-aa,v 1.1.1.1 2005/10/29 16:56:15 minskim Exp $
+
+--- src/mydns/conf.c.orig 2005-01-14 15:23:41.000000000 +0100
++++ src/mydns/conf.c
+@@ -62,8 +62,8 @@ static CONF defConfig[] = {
+
+ { "-", NULL, N_("GENERAL OPTIONS")},
+
+-{ "user", "nobody", N_("Run with the permissions of this user")},
+-{ "group", "nobody", N_("Run with the permissions of this group")},
++{ "user", "%%MYDNS_USER%%", N_("Run with the permissions of this user")},
++{ "group", "%%MYDNS_GROUP%%", N_("Run with the permissions of this group")},
+ { "listen", "*", N_("Listen on these addresses ('*' for all)"), "bind"},
+ { "no-listen", "", N_("Do not listen on these addresses")},
+