Index: head/dns/mydns/Makefile =================================================================== --- head/dns/mydns/Makefile (revision 87455) +++ head/dns/mydns/Makefile (revision 87456) @@ -1,62 +1,65 @@ # New ports collection makefile for: mydns # Date created: 23 July 2002 # Whom: Simon Dick # # $FreeBSD$ # PORTNAME= mydns -PORTVERSION= 0.9.10 -PORTREVISION= 1 +PORTVERSION= 0.9.13 +PORTREVISION= 0 CATEGORIES= net databases MASTER_SITES= http://mydns.bboy.net/download/ MAINTAINER= simond@irrelevant.org COMMENT= DNS server designed to utilize the MySQL database LIB_DEPENDS= intl.4:${PORTSDIR}/devel/gettext \ iconv.3:${PORTSDIR}/converters/libiconv GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-confdir=${PREFIX}/etc USE_LIBTOOL= yes USE_BZIP2= yes USE_REINPLACE= yes +INFO= mydns MAN5= mydns.conf.5 -MAN8= mydns.8 mydnscheck.8 mydnsexport.8 mydnsimport.8 +MAN8= mydns.8 mydnscheck.8 mydnsexport.8 mydnsimport.8 mydns-conf.8 -DOCS= AUTHORS COPYING ChangeLog NEWS QUICKSTART README TODO +DOCS= AUTHORS COPYING ChangeLog NEWS QUICKSTART.mysql QUICKSTART.postgres README TODO .include .if defined (WITH_PGSQL) LIB_DEPENDS+= pq.3:${PORTSDIR}/databases/postgresql7 CONFIGURE_ARGS+=--without-mysql PKGNAMESUFFIX= -pg .else CONFIGURE_ARGS+=--without-pgsql PKGNAMESUFFIX= -mysql .if exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.10) LIB_DEPENDS+= mysqlclient.10:${PORTSDIR}/databases/mysql323-client +.elif exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.14) +LIB_DEPENDS+= mysqlclient.14:${PORTSDIR}/databases/mysql41-client .else LIB_DEPENDS+= mysqlclient.12:${PORTSDIR}/databases/mysql40-client .endif .endif post-install: @${SED} 's|%%%PREFIX%%%|${PREFIX}|g' < ${FILESDIR}/mydns.sh > ${WRKSRC}/mydns.sh @${INSTALL_SCRIPT} ${WRKSRC}/mydns.sh ${PREFIX}/etc/rc.d/mydns.sh.sample @install-info ${PREFIX}/info/mydns.info ${PREFIX}/info/dir .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR}/contrib .for f in ${DOCS} @${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/ .endfor - @${INSTALL_DATA} ${WRKSRC}/contrib/admin.php ${DOCSDIR}/contrib/ + @${INSTALL_DATA} ${WRKSRC}/contrib/*.php ${DOCSDIR}/contrib/ @${INSTALL_DATA} ${WRKSRC}/contrib/README ${DOCSDIR}/contrib/ .endif @${PREFIX}/sbin/mydns --dump-config >${PREFIX}/etc/mydns.conf.sample @${SED} -e 's,%%%PREFIX%%%,${PREFIX},g' ${PKGMESSAGE} .include Property changes on: head/dns/mydns/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.13 \ No newline at end of property +1.14 \ No newline at end of property Index: head/dns/mydns/distinfo =================================================================== --- head/dns/mydns/distinfo (revision 87455) +++ head/dns/mydns/distinfo (revision 87456) @@ -1 +1 @@ -MD5 (mydns-0.9.10.tar.bz2) = 35e2f6bd521c0b3997d1b6cebd5412dc +MD5 (mydns-0.9.13.tar.bz2) = fc2347d6c005121c0d0eecca228ec572 Property changes on: head/dns/mydns/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.9 \ No newline at end of property +1.10 \ No newline at end of property Index: head/dns/mydns/files/patch-doc::texinfo::title.texi =================================================================== --- head/dns/mydns/files/patch-doc::texinfo::title.texi (revision 87455) +++ head/dns/mydns/files/patch-doc::texinfo::title.texi (nonexistent) @@ -1,10 +0,0 @@ ---- doc/texinfo/title.texi.orig Fri Nov 15 10:30:48 2002 -+++ doc/texinfo/title.texi Wed Dec 18 15:18:13 2002 -@@ -1,3 +1,7 @@ -+@dircategory Miscellaneous -+@direntry -+* mydns: (mydns). The MySQL based DNS-server. -+@end direntry - - @ifinfo - This is the manual for MyDNS (version @value{PKGVERSION}, @value{PKGDATE}), Property changes on: head/dns/mydns/files/patch-doc::texinfo::title.texi ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/dns/mydns/files/patch-configure =================================================================== --- head/dns/mydns/files/patch-configure (revision 87455) +++ head/dns/mydns/files/patch-configure (revision 87456) @@ -1,11 +1,11 @@ --- configure.orig Fri Mar 28 11:51:06 2003 +++ configure Fri Mar 28 11:51:21 2003 @@ -7803,6 +7803,7 @@ # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" -+/usr/local/share/libtool/ltconfig $LIBTOOL_DEPS ++$ac_aux_dir/ltconfig $LIBTOOL_DEPS # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' Property changes on: head/dns/mydns/files/patch-configure ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property Index: head/dns/mydns/files/patch-doc::mydns.texi =================================================================== --- head/dns/mydns/files/patch-doc::mydns.texi (nonexistent) +++ head/dns/mydns/files/patch-doc::mydns.texi (revision 87456) @@ -0,0 +1,10 @@ +--- doc/mydns.texi.orig Fri Nov 15 10:30:48 2002 ++++ doc/mydns.texi Wed Dec 18 15:18:13 2002 +@@ -1,3 +1,7 @@ ++@dircategory Miscellaneous ++@direntry ++* mydns: (mydns). The MySQL based DNS-server. ++@end direntry + + @ifinfo + This is the manual for MyDNS (version @value{PKGVERSION}, @value{PKGDATE}), Property changes on: head/dns/mydns/files/patch-doc::mydns.texi ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/dns/mydns/pkg-plist =================================================================== --- head/dns/mydns/pkg-plist (revision 87455) +++ head/dns/mydns/pkg-plist (revision 87456) @@ -1,23 +1,24 @@ +bin/mydns-conf bin/mydnscheck bin/mydnsexport bin/mydnsimport +bin/mydnsptrconvert etc/mydns.conf.sample etc/rc.d/mydns.sh.sample -@unexec install-info --delete %D/info/mydns.info %D/info/dir -info/mydns.info -@exec install-info %D/info/mydns.info %D/info/dir sbin/mydns share/locale/es/LC_MESSAGES/mydns.mo share/locale/fr/LC_MESSAGES/mydns.mo share/locale/pt_BR/LC_MESSAGES/mydns.mo -%%PORTDOCS%%share/doc/mydns/AUTHORS -%%PORTDOCS%%share/doc/mydns/COPYING -%%PORTDOCS%%share/doc/mydns/ChangeLog -%%PORTDOCS%%share/doc/mydns/NEWS -%%PORTDOCS%%share/doc/mydns/QUICKSTART -%%PORTDOCS%%share/doc/mydns/README -%%PORTDOCS%%share/doc/mydns/TODO -%%PORTDOCS%%share/doc/mydns/contrib/README -%%PORTDOCS%%share/doc/mydns/contrib/admin.php -%%PORTDOCS%%@dirrm share/doc/mydns/contrib -%%PORTDOCS%%@dirrm share/doc/mydns +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/COPYING +%%PORTDOCS%%%%DOCSDIR%%/ChangeLog +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/QUICKSTART.mysql +%%PORTDOCS%%%%DOCSDIR%%/QUICKSTART.postgres +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/TODO +%%PORTDOCS%%%%DOCSDIR%%/contrib/README +%%PORTDOCS%%%%DOCSDIR%%/contrib/admin.php +%%PORTDOCS%%%%DOCSDIR%%/contrib/stats.php +%%PORTDOCS%%@dirrm %%DOCSDIR%%/contrib +%%PORTDOCS%%@dirrm %%DOCSDIR%% Property changes on: head/dns/mydns/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.6 \ No newline at end of property +1.7 \ No newline at end of property Index: head/dns/mydns-ng/Makefile =================================================================== --- head/dns/mydns-ng/Makefile (revision 87455) +++ head/dns/mydns-ng/Makefile (revision 87456) @@ -1,62 +1,65 @@ # New ports collection makefile for: mydns # Date created: 23 July 2002 # Whom: Simon Dick # # $FreeBSD$ # PORTNAME= mydns -PORTVERSION= 0.9.10 -PORTREVISION= 1 +PORTVERSION= 0.9.13 +PORTREVISION= 0 CATEGORIES= net databases MASTER_SITES= http://mydns.bboy.net/download/ MAINTAINER= simond@irrelevant.org COMMENT= DNS server designed to utilize the MySQL database LIB_DEPENDS= intl.4:${PORTSDIR}/devel/gettext \ iconv.3:${PORTSDIR}/converters/libiconv GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-confdir=${PREFIX}/etc USE_LIBTOOL= yes USE_BZIP2= yes USE_REINPLACE= yes +INFO= mydns MAN5= mydns.conf.5 -MAN8= mydns.8 mydnscheck.8 mydnsexport.8 mydnsimport.8 +MAN8= mydns.8 mydnscheck.8 mydnsexport.8 mydnsimport.8 mydns-conf.8 -DOCS= AUTHORS COPYING ChangeLog NEWS QUICKSTART README TODO +DOCS= AUTHORS COPYING ChangeLog NEWS QUICKSTART.mysql QUICKSTART.postgres README TODO .include .if defined (WITH_PGSQL) LIB_DEPENDS+= pq.3:${PORTSDIR}/databases/postgresql7 CONFIGURE_ARGS+=--without-mysql PKGNAMESUFFIX= -pg .else CONFIGURE_ARGS+=--without-pgsql PKGNAMESUFFIX= -mysql .if exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.10) LIB_DEPENDS+= mysqlclient.10:${PORTSDIR}/databases/mysql323-client +.elif exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.14) +LIB_DEPENDS+= mysqlclient.14:${PORTSDIR}/databases/mysql41-client .else LIB_DEPENDS+= mysqlclient.12:${PORTSDIR}/databases/mysql40-client .endif .endif post-install: @${SED} 's|%%%PREFIX%%%|${PREFIX}|g' < ${FILESDIR}/mydns.sh > ${WRKSRC}/mydns.sh @${INSTALL_SCRIPT} ${WRKSRC}/mydns.sh ${PREFIX}/etc/rc.d/mydns.sh.sample @install-info ${PREFIX}/info/mydns.info ${PREFIX}/info/dir .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR}/contrib .for f in ${DOCS} @${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/ .endfor - @${INSTALL_DATA} ${WRKSRC}/contrib/admin.php ${DOCSDIR}/contrib/ + @${INSTALL_DATA} ${WRKSRC}/contrib/*.php ${DOCSDIR}/contrib/ @${INSTALL_DATA} ${WRKSRC}/contrib/README ${DOCSDIR}/contrib/ .endif @${PREFIX}/sbin/mydns --dump-config >${PREFIX}/etc/mydns.conf.sample @${SED} -e 's,%%%PREFIX%%%,${PREFIX},g' ${PKGMESSAGE} .include Property changes on: head/dns/mydns-ng/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.13 \ No newline at end of property +1.14 \ No newline at end of property Index: head/dns/mydns-ng/distinfo =================================================================== --- head/dns/mydns-ng/distinfo (revision 87455) +++ head/dns/mydns-ng/distinfo (revision 87456) @@ -1 +1 @@ -MD5 (mydns-0.9.10.tar.bz2) = 35e2f6bd521c0b3997d1b6cebd5412dc +MD5 (mydns-0.9.13.tar.bz2) = fc2347d6c005121c0d0eecca228ec572 Property changes on: head/dns/mydns-ng/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.9 \ No newline at end of property +1.10 \ No newline at end of property Index: head/dns/mydns-ng/files/patch-doc::texinfo::title.texi =================================================================== --- head/dns/mydns-ng/files/patch-doc::texinfo::title.texi (revision 87455) +++ head/dns/mydns-ng/files/patch-doc::texinfo::title.texi (nonexistent) @@ -1,10 +0,0 @@ ---- doc/texinfo/title.texi.orig Fri Nov 15 10:30:48 2002 -+++ doc/texinfo/title.texi Wed Dec 18 15:18:13 2002 -@@ -1,3 +1,7 @@ -+@dircategory Miscellaneous -+@direntry -+* mydns: (mydns). The MySQL based DNS-server. -+@end direntry - - @ifinfo - This is the manual for MyDNS (version @value{PKGVERSION}, @value{PKGDATE}), Property changes on: head/dns/mydns-ng/files/patch-doc::texinfo::title.texi ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/dns/mydns-ng/files/patch-configure =================================================================== --- head/dns/mydns-ng/files/patch-configure (revision 87455) +++ head/dns/mydns-ng/files/patch-configure (revision 87456) @@ -1,11 +1,11 @@ --- configure.orig Fri Mar 28 11:51:06 2003 +++ configure Fri Mar 28 11:51:21 2003 @@ -7803,6 +7803,7 @@ # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" -+/usr/local/share/libtool/ltconfig $LIBTOOL_DEPS ++$ac_aux_dir/ltconfig $LIBTOOL_DEPS # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' Property changes on: head/dns/mydns-ng/files/patch-configure ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property Index: head/dns/mydns-ng/files/patch-doc::mydns.texi =================================================================== --- head/dns/mydns-ng/files/patch-doc::mydns.texi (nonexistent) +++ head/dns/mydns-ng/files/patch-doc::mydns.texi (revision 87456) @@ -0,0 +1,10 @@ +--- doc/mydns.texi.orig Fri Nov 15 10:30:48 2002 ++++ doc/mydns.texi Wed Dec 18 15:18:13 2002 +@@ -1,3 +1,7 @@ ++@dircategory Miscellaneous ++@direntry ++* mydns: (mydns). The MySQL based DNS-server. ++@end direntry + + @ifinfo + This is the manual for MyDNS (version @value{PKGVERSION}, @value{PKGDATE}), Property changes on: head/dns/mydns-ng/files/patch-doc::mydns.texi ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/dns/mydns-ng/pkg-plist =================================================================== --- head/dns/mydns-ng/pkg-plist (revision 87455) +++ head/dns/mydns-ng/pkg-plist (revision 87456) @@ -1,23 +1,24 @@ +bin/mydns-conf bin/mydnscheck bin/mydnsexport bin/mydnsimport +bin/mydnsptrconvert etc/mydns.conf.sample etc/rc.d/mydns.sh.sample -@unexec install-info --delete %D/info/mydns.info %D/info/dir -info/mydns.info -@exec install-info %D/info/mydns.info %D/info/dir sbin/mydns share/locale/es/LC_MESSAGES/mydns.mo share/locale/fr/LC_MESSAGES/mydns.mo share/locale/pt_BR/LC_MESSAGES/mydns.mo -%%PORTDOCS%%share/doc/mydns/AUTHORS -%%PORTDOCS%%share/doc/mydns/COPYING -%%PORTDOCS%%share/doc/mydns/ChangeLog -%%PORTDOCS%%share/doc/mydns/NEWS -%%PORTDOCS%%share/doc/mydns/QUICKSTART -%%PORTDOCS%%share/doc/mydns/README -%%PORTDOCS%%share/doc/mydns/TODO -%%PORTDOCS%%share/doc/mydns/contrib/README -%%PORTDOCS%%share/doc/mydns/contrib/admin.php -%%PORTDOCS%%@dirrm share/doc/mydns/contrib -%%PORTDOCS%%@dirrm share/doc/mydns +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/COPYING +%%PORTDOCS%%%%DOCSDIR%%/ChangeLog +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/QUICKSTART.mysql +%%PORTDOCS%%%%DOCSDIR%%/QUICKSTART.postgres +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/TODO +%%PORTDOCS%%%%DOCSDIR%%/contrib/README +%%PORTDOCS%%%%DOCSDIR%%/contrib/admin.php +%%PORTDOCS%%%%DOCSDIR%%/contrib/stats.php +%%PORTDOCS%%@dirrm %%DOCSDIR%%/contrib +%%PORTDOCS%%@dirrm %%DOCSDIR%% Property changes on: head/dns/mydns-ng/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.6 \ No newline at end of property +1.7 \ No newline at end of property Index: head/net/mydns/Makefile =================================================================== --- head/net/mydns/Makefile (revision 87455) +++ head/net/mydns/Makefile (revision 87456) @@ -1,62 +1,65 @@ # New ports collection makefile for: mydns # Date created: 23 July 2002 # Whom: Simon Dick # # $FreeBSD$ # PORTNAME= mydns -PORTVERSION= 0.9.10 -PORTREVISION= 1 +PORTVERSION= 0.9.13 +PORTREVISION= 0 CATEGORIES= net databases MASTER_SITES= http://mydns.bboy.net/download/ MAINTAINER= simond@irrelevant.org COMMENT= DNS server designed to utilize the MySQL database LIB_DEPENDS= intl.4:${PORTSDIR}/devel/gettext \ iconv.3:${PORTSDIR}/converters/libiconv GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-confdir=${PREFIX}/etc USE_LIBTOOL= yes USE_BZIP2= yes USE_REINPLACE= yes +INFO= mydns MAN5= mydns.conf.5 -MAN8= mydns.8 mydnscheck.8 mydnsexport.8 mydnsimport.8 +MAN8= mydns.8 mydnscheck.8 mydnsexport.8 mydnsimport.8 mydns-conf.8 -DOCS= AUTHORS COPYING ChangeLog NEWS QUICKSTART README TODO +DOCS= AUTHORS COPYING ChangeLog NEWS QUICKSTART.mysql QUICKSTART.postgres README TODO .include .if defined (WITH_PGSQL) LIB_DEPENDS+= pq.3:${PORTSDIR}/databases/postgresql7 CONFIGURE_ARGS+=--without-mysql PKGNAMESUFFIX= -pg .else CONFIGURE_ARGS+=--without-pgsql PKGNAMESUFFIX= -mysql .if exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.10) LIB_DEPENDS+= mysqlclient.10:${PORTSDIR}/databases/mysql323-client +.elif exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.14) +LIB_DEPENDS+= mysqlclient.14:${PORTSDIR}/databases/mysql41-client .else LIB_DEPENDS+= mysqlclient.12:${PORTSDIR}/databases/mysql40-client .endif .endif post-install: @${SED} 's|%%%PREFIX%%%|${PREFIX}|g' < ${FILESDIR}/mydns.sh > ${WRKSRC}/mydns.sh @${INSTALL_SCRIPT} ${WRKSRC}/mydns.sh ${PREFIX}/etc/rc.d/mydns.sh.sample @install-info ${PREFIX}/info/mydns.info ${PREFIX}/info/dir .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR}/contrib .for f in ${DOCS} @${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/ .endfor - @${INSTALL_DATA} ${WRKSRC}/contrib/admin.php ${DOCSDIR}/contrib/ + @${INSTALL_DATA} ${WRKSRC}/contrib/*.php ${DOCSDIR}/contrib/ @${INSTALL_DATA} ${WRKSRC}/contrib/README ${DOCSDIR}/contrib/ .endif @${PREFIX}/sbin/mydns --dump-config >${PREFIX}/etc/mydns.conf.sample @${SED} -e 's,%%%PREFIX%%%,${PREFIX},g' ${PKGMESSAGE} .include Property changes on: head/net/mydns/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.13 \ No newline at end of property +1.14 \ No newline at end of property Index: head/net/mydns/distinfo =================================================================== --- head/net/mydns/distinfo (revision 87455) +++ head/net/mydns/distinfo (revision 87456) @@ -1 +1 @@ -MD5 (mydns-0.9.10.tar.bz2) = 35e2f6bd521c0b3997d1b6cebd5412dc +MD5 (mydns-0.9.13.tar.bz2) = fc2347d6c005121c0d0eecca228ec572 Property changes on: head/net/mydns/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.9 \ No newline at end of property +1.10 \ No newline at end of property Index: head/net/mydns/files/patch-doc::texinfo::title.texi =================================================================== --- head/net/mydns/files/patch-doc::texinfo::title.texi (revision 87455) +++ head/net/mydns/files/patch-doc::texinfo::title.texi (nonexistent) @@ -1,10 +0,0 @@ ---- doc/texinfo/title.texi.orig Fri Nov 15 10:30:48 2002 -+++ doc/texinfo/title.texi Wed Dec 18 15:18:13 2002 -@@ -1,3 +1,7 @@ -+@dircategory Miscellaneous -+@direntry -+* mydns: (mydns). The MySQL based DNS-server. -+@end direntry - - @ifinfo - This is the manual for MyDNS (version @value{PKGVERSION}, @value{PKGDATE}), Property changes on: head/net/mydns/files/patch-doc::texinfo::title.texi ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/net/mydns/files/patch-configure =================================================================== --- head/net/mydns/files/patch-configure (revision 87455) +++ head/net/mydns/files/patch-configure (revision 87456) @@ -1,11 +1,11 @@ --- configure.orig Fri Mar 28 11:51:06 2003 +++ configure Fri Mar 28 11:51:21 2003 @@ -7803,6 +7803,7 @@ # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" -+/usr/local/share/libtool/ltconfig $LIBTOOL_DEPS ++$ac_aux_dir/ltconfig $LIBTOOL_DEPS # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' Property changes on: head/net/mydns/files/patch-configure ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property Index: head/net/mydns/files/patch-doc::mydns.texi =================================================================== --- head/net/mydns/files/patch-doc::mydns.texi (nonexistent) +++ head/net/mydns/files/patch-doc::mydns.texi (revision 87456) @@ -0,0 +1,10 @@ +--- doc/mydns.texi.orig Fri Nov 15 10:30:48 2002 ++++ doc/mydns.texi Wed Dec 18 15:18:13 2002 +@@ -1,3 +1,7 @@ ++@dircategory Miscellaneous ++@direntry ++* mydns: (mydns). The MySQL based DNS-server. ++@end direntry + + @ifinfo + This is the manual for MyDNS (version @value{PKGVERSION}, @value{PKGDATE}), Property changes on: head/net/mydns/files/patch-doc::mydns.texi ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/net/mydns/pkg-plist =================================================================== --- head/net/mydns/pkg-plist (revision 87455) +++ head/net/mydns/pkg-plist (revision 87456) @@ -1,23 +1,24 @@ +bin/mydns-conf bin/mydnscheck bin/mydnsexport bin/mydnsimport +bin/mydnsptrconvert etc/mydns.conf.sample etc/rc.d/mydns.sh.sample -@unexec install-info --delete %D/info/mydns.info %D/info/dir -info/mydns.info -@exec install-info %D/info/mydns.info %D/info/dir sbin/mydns share/locale/es/LC_MESSAGES/mydns.mo share/locale/fr/LC_MESSAGES/mydns.mo share/locale/pt_BR/LC_MESSAGES/mydns.mo -%%PORTDOCS%%share/doc/mydns/AUTHORS -%%PORTDOCS%%share/doc/mydns/COPYING -%%PORTDOCS%%share/doc/mydns/ChangeLog -%%PORTDOCS%%share/doc/mydns/NEWS -%%PORTDOCS%%share/doc/mydns/QUICKSTART -%%PORTDOCS%%share/doc/mydns/README -%%PORTDOCS%%share/doc/mydns/TODO -%%PORTDOCS%%share/doc/mydns/contrib/README -%%PORTDOCS%%share/doc/mydns/contrib/admin.php -%%PORTDOCS%%@dirrm share/doc/mydns/contrib -%%PORTDOCS%%@dirrm share/doc/mydns +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/COPYING +%%PORTDOCS%%%%DOCSDIR%%/ChangeLog +%%PORTDOCS%%%%DOCSDIR%%/NEWS +%%PORTDOCS%%%%DOCSDIR%%/QUICKSTART.mysql +%%PORTDOCS%%%%DOCSDIR%%/QUICKSTART.postgres +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/TODO +%%PORTDOCS%%%%DOCSDIR%%/contrib/README +%%PORTDOCS%%%%DOCSDIR%%/contrib/admin.php +%%PORTDOCS%%%%DOCSDIR%%/contrib/stats.php +%%PORTDOCS%%@dirrm %%DOCSDIR%%/contrib +%%PORTDOCS%%@dirrm %%DOCSDIR%% Property changes on: head/net/mydns/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.6 \ No newline at end of property +1.7 \ No newline at end of property