# $FreeBSD$ # SUBDIR += accessibility SUBDIR += arabic SUBDIR += archivers SUBDIR += astro SUBDIR += audio SUBDIR += benchmarks SUBDIR += biology SUBDIR += cad SUBDIR += chinese SUBDIR += comms SUBDIR += converters SUBDIR += databases SUBDIR += deskutils SUBDIR += devel SUBDIR += dns SUBDIR += editors SUBDIR += emulators SUBDIR += finance SUBDIR += french SUBDIR += ftp SUBDIR += games SUBDIR += german SUBDIR += graphics SUBDIR += hebrew SUBDIR += hungarian SUBDIR += irc SUBDIR += japanese SUBDIR += java SUBDIR += korean SUBDIR += lang SUBDIR += mail SUBDIR += math SUBDIR += mbone SUBDIR += misc SUBDIR += multimedia SUBDIR += net SUBDIR += net-im SUBDIR += net-mgmt SUBDIR += net-p2p SUBDIR += news SUBDIR += palm SUBDIR += polish SUBDIR += ports-mgmt SUBDIR += portuguese SUBDIR += print SUBDIR += russian SUBDIR += science SUBDIR += security SUBDIR += shells SUBDIR += sysutils SUBDIR += textproc SUBDIR += ukrainian SUBDIR += vietnamese SUBDIR += www SUBDIR += x11 SUBDIR += x11-clocks SUBDIR += x11-drivers SUBDIR += x11-fm SUBDIR += x11-fonts SUBDIR += x11-servers SUBDIR += x11-themes SUBDIR += x11-toolkits SUBDIR += x11-wm PORTSTOP= yes .include index: @rm -f ${INDEXDIR}/${INDEXFILE} @cd ${.CURDIR} && make ${INDEXDIR}/${INDEXFILE} fetchindex: ${INDEXDIR}/${INDEXFILE}.bz2 @bunzip2 < ${INDEXDIR}/${INDEXFILE}.bz2 > ${INDEXDIR}/${INDEXFILE} && \ chmod a+r ${INDEXDIR}/${INDEXFILE} && ${RM} -f ${INDEXDIR}/${INDEXFILE}.bz2 ${INDEXDIR}/${INDEXFILE}.bz2: .PHONY @${FETCHINDEX} ${INDEXDIR}/${INDEXFILE}.bz2 ${MASTER_SITE_INDEX}${INDEXFILE}.bz2 MASTER_SITE_INDEX?= http://www.FreeBSD.org/ports/ SETENV?= /usr/bin/env FETCHINDEX?= ${SETENV} ${FETCH_ENV} fetch -am -o INDEX_JOBS?= 2 .if !defined(INDEX_VERBOSE) INDEX_ECHO_MSG= true INDEX_ECHO_1ST= echo -n .else INDEX_ECHO_MSG= echo 1>&2 INDEX_ECHO_1ST= echo .endif # /rescue/sh is statically linked and much faster to execute than the # dynamically linked /bin/sh. This is significant for targets like # make index that execute the shell tens of thousands of times. .if exists(/rescue/sh) INDEX_SHELL= /rescue/sh .else INDEX_SHELL= /bin/sh .endif ${INDEXDIR}/${INDEXFILE}: @${INDEX_ECHO_1ST} "Generating ${INDEXFILE} - please wait.."; \ if [ "${INDEX_PRISTINE}" != "" ]; then \ export LOCALBASE=/nonexistentlocal; \ fi; \ tmpdir=`/usr/bin/mktemp -d -t index` || exit 1; \ trap "rm -rf $${tmpdir}; exit 1" 1 2 3 5 10 13 15; \ ( cd ${.CURDIR} && make -j${INDEX_JOBS} INDEX_TMPDIR=$${tmpdir} BUILDING_INDEX=1 \ __MAKE_SHELL=${INDEX_SHELL} \ ECHO_MSG="${INDEX_ECHO_MSG}" describe ) || \ (rm -rf $${tmpdir} ; \ if [ "${INDEX_QUIET}" = "" ]; then \ echo; \ echo "********************************************************************"; \ echo "Before reporting this error, verify that you are running a supported"; \ echo "version of FreeBSD (see http://www.FreeBSD.org/ports/) and that you"; \ echo "have a complete and up-to-date ports collection. (INDEX builds are"; \ echo "not supported with partial or out-of-date ports collections -- in"; \ echo "particular, if you are using cvsup, you must cvsup the \"ports-all\""; \ echo "collection, and have no \"refuse\" files.) If that is the case, then"; \ echo "report the failure to ports@FreeBSD.org together with relevant"; \ echo "details of your ports configuration (including FreeBSD version,"; \ echo "your architecture, your environment, and your /etc/make.conf"; \ echo "settings, especially compiler flags and WITH/WITHOUT settings)."; \ echo; \ echo "Note: the latest pre-generated version of INDEX may be fetched"; \ echo "automatically with \"make fetchindex\"."; \ echo "********************************************************************"; \ echo; \ fi; \ exit 1); \ cat $${tmpdir}/${INDEXFILE}.desc.* | (cd ${.CURDIR} ; perl ${.CURDIR}/Tools/make_index) | \ sed -e 's/ */ /g' -e 's/| */|/g' -e 's/ *|/|/g' -e 's./..g' | \ sort -t '|' +1 -2 | \ sed -e 's../.g' > ${INDEXDIR}/${INDEXFILE}.tmp; \ if [ "${INDEX_PRISTINE}" != "" ]; then \ sed -e "s,$${LOCALBASE},/usr/local," ${INDEXDIR}/${INDEXFILE}.tmp > ${INDEXDIR}/${INDEXFILE}; \ else \ mv ${INDEXDIR}/${INDEXFILE}.tmp ${INDEXDIR}/${INDEXFILE}; \ fi; \ rm -rf $${tmpdir}; \ echo " Done." print-index: ${INDEXDIR}/${INDEXFILE} @awk -F\| '{ printf("Port:\t%s\nPath:\t%s\nInfo:\t%s\nMaint:\t%s\nIndex:\t%s\nB-deps:\t%s\nR-deps:\t%s\nE-deps:\t%s\nP-deps:\t%s\nF-deps:\t%s\nWWW:\t%s\n\n", $$1, $$2, $$4, $$6, $$7, $$8, $$9, $$11, $$12, $$13, $$10); }' < ${INDEXDIR}/${INDEXFILE} CVS?= cvs .if ${OSVERSION} >= 601101 SUP?= csup .else SUP?= cvsup .endif PORTSNAP?= portsnap PORTSNAP_FLAGS?= -p ${.CURDIR} .if defined(SUPHOST) SUPFLAGS+= -h ${SUPHOST} .endif .if !target(update) update: .if defined(SUP_UPDATE) && defined(PORTSSUPFILE) @echo "--------------------------------------------------------------" @echo ">>> Running ${SUP}" @echo "--------------------------------------------------------------" @${SUP} ${SUPFLAGS} ${PORTSSUPFILE} .elif defined(CVS_UPDATE) @echo "--------------------------------------------------------------" @echo ">>> Updating ${.CURDIR} from cvs repository" ${CVSROOT} @echo "--------------------------------------------------------------" cd ${.CURDIR}; ${CVS} -R -q update -A -P -d -I! .else @echo "--------------------------------------------------------------" @echo ">>> Running ${PORTSNAP}" @echo "--------------------------------------------------------------" .if !exists(${PORTSDIR}/.portsnap.INDEX) @echo "Error: 'make update' uses portsnap(8) by default and" @echo "needs ${PORTSDIR} to be created by portsnap on its first run." @echo "Please run 'portsnap fetch extract' first." @echo "You can also define SUP_UPDATE and PORTSSUPFILE to use csup(1)" @echo "or CVS_UPDATE to use cvs(1) for updating." .else @${PORTSNAP} ${PORTSNAP_FLAGS} fetch @${PORTSNAP} ${PORTSNAP_FLAGS} update .endif .endif .endif lantw44/cgit/cgit.cgi/freebsd-ports-gnome/log/dns/p5-Net-DNS'>
path: root/dns/p5-Net-DNS
Commit message (Expand)AuthorAgeFilesLines
* Update to 1.15sunpoet2018-02-092-4/+4
* Update to 1.14sunpoet2017-12-172-4/+4
* Update to 1.13sunpoet2017-10-202-8/+9
* Update to 1.12sunpoet2017-08-202-5/+12
* Update to 1.11sunpoet2017-06-272-4/+4
* Remove outdated PERL_LEVEL checksunpoet2017-06-021-8/+1
* Update to 1.10sunpoet2017-05-063-4/+6
* Update to 1.09sunpoet2017-03-252-4/+4
* Update to 1.08sunpoet2017-02-222-4/+4
* - Update to 1.07sunpoet2016-12-312-5/+4
* Remove explicit BUILD/RUN depends on p5-Digest-HMAC.adamw2016-06-101-3/+1
* dns/p5-Net-DNS: re-add TSIG optionpi2016-06-101-1/+6
* dns/p5-Net-DNS: 1.0.5 -> 1.0.6pi2016-06-102-9/+7
* Digest::HMAC is only needed for TSIG support, so put it behind a TSIGadamw2016-06-091-3/+5
* Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.mat2016-04-011-11/+11
* Don't overwrite BUILD_DEPENDS and RUN_DEPENDS.mat2016-03-121-2/+3
* - Update to 1.05sunpoet2016-03-093-6/+8
* - Update to 1.04sunpoet2015-12-112-6/+11
* Revert because upstream is really buggy with many impacts: https://rt.cpan.or...jadawin2015-11-202-3/+4
* - Update to 1.03jadawin2015-11-102-3/+3
* - Update to 1.02sunpoet2015-09-182-5/+4
* - Update to 1.01sunpoet2015-07-203-86/+109
* After r390893, chmod u+w/u-w for stripping perl XS modules is unnecessary,adamw2015-06-291-2/+0
* As pointed out by sunpoet, the addition of Digest::MD5 and Digest::SHAadamw2015-02-271-3/+2
* Update to 0.83. Register dependencies on Digest::MD5 and Digest::SHA.adamw2015-02-273-5/+12
* - Update to 0.82sunpoet2015-01-233-73/+74
* Change the way Perl modules are installed, update the default Perl to 5.18.mat2014-11-262-70/+70
* Replace some occurences of mach with PERL_ARCH (and a couple of other small n...mat2014-11-071-1/+1
* Update to 0.81.tobez2014-10-302-3/+3
* Cleanup plistbapt2014-10-271-6/+0
* - Update to 0.79jadawin2014-09-053-3/+7
* - Update to 0.78jadawin2014-07-112-3/+3
* dns/p5-Net-DNS: Update 0.76 -> 0.77pi2014-06-202-3/+6
* - Update to 0.76jadawin2014-06-112-3/+3
* Remove all the bootstrap files (.bs) from the plists.mat2014-06-101-1/+0
* - Update to 0.75jadawin2014-05-153-10/+3
* Fix plist after upgrade to 0.74antoine2014-01-252-0/+9
* Update to 0.74skreuzer2014-01-172-3/+3
* - Update to 0.73sunpoet2013-11-302-25/+12
* Support STAGEDIR.vanilla2013-11-032-29/+68
* Try and be consistent with what commands are silent and not in *install.mat2013-10-231-1/+1
* Add NO_STAGE all over the place in preparation for the staging support (cat: ...bapt2013-09-211-0/+1
* - Convert to new perl frameworkmat2013-08-031-2/+2
* - Add BUILD_DEPENDSsunpoet2013-01-313-60/+53
* - Update to 0.72jadawin2013-01-042-3/+3
* - Update to 0.71jadawin2012-12-182-3/+3
* Cleanup supporting perl version 5.8 and 5.10,az2012-12-171-4/+0
* - Update to 0.70jadawin2012-12-123-17/+25
* Convert to new options frameworkbapt2012-10-121-7/+6
* Throw my ports back in the pool, and make my intentions clear for thedougb2012-10-081-5/+2
* Fix Perl package name dependenciesdougb2012-06-041-5/+5
* Convert to specifying the port name in _DEPENDS instead ofdougb2012-06-011-5/+5
* Restore support for ${PERL_LEVEL} < 501000dougb2012-03-121-0/+4
* Fix OPTIONS broken by the perl < 5.12 sweep [1]dougb2012-03-121-4/+5
* - Remove ports that only work with < perl 5.12 (devel/p5-B-Size, devel/p5-Dev...pgollucci2012-03-091-7/+1
* Update to version 0.68; Jan 30, 2012dougb2012-02-153-10/+18
* **** 0.67 Nov 4, 2011dougb2011-11-093-6/+6
* Remove more tags from pkg-descr files fo the form:dougb2011-10-241-3/+0
* Miscellaneous cleanups and fixes, some of the windowmaker stuffdougb2011-05-162-2/+2
* - Get Rid MD5 supportmiwi2011-03-201-1/+0
* Explicitly depend on p5-Digest-MD5 only if PERL_LEVEL < 500703mm2010-09-221-1/+5
* - Rename net/p5-IO-INET6 to net/p5-IO-Socket-INET6.nemoliu2010-08-091-1/+1
* Update to version 0.66, which is a major upgrade. Users are cautioneddougb2010-01-013-4/+11
* Where it matters, update regarding MAKE_JOBS_{UN}SAFE for my portsdougb2009-03-251-0/+2
* Update to 0.65 which contains the following small fix:dougb2009-02-042-4/+4
* Update to version 0.64 which adds support for the APL record in additiondougb2008-12-313-5/+9
* Update to version 0.63, which has a couple of bug fixes, including:dougb2008-03-172-9/+7
* Remove the old bytes files for ancient Perl. These were behind adougb2008-01-091-2/+0
* 1. Update to version 0.62. If you are doing uncommon things includingdougb2008-01-084-149/+4
* 1. Upgrade to 0.61 which has a few small code cleanups.dougb2007-08-072-11/+5
* Update to 0.60, which includes some important security fixes:dougb2007-07-043-5/+7
* Update to 0.59, which mostly cleans up the PTR code.dougb2006-09-282-4/+4
* 1. Update to 0.58, which contains numerous small bug fixes, and newdougb2006-07-092-8/+11
* Update to 0.57 (which contains no functional changes from 0.56),dougb2006-04-192-15/+9
* Version 0.56, which contains a new method for the SPF RR, anddougb2006-02-213-5/+6
* Replace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtryedwin2006-01-221-3/+3
* Make the second RUN_DEPENDS +=dougb2005-12-161-1/+1
* Upgrade to 0.55, an emergency release to fix a problem with TCPdougb2005-12-152-4/+4
* upgrade to 0.54, which contains many bug fixesdougb2005-12-132-7/+18
* Be more friendly to other ports that might leave files heredougb2005-12-131-1/+1
* Add SHA256 checksums to my portsdougb2005-11-241-0/+1
* Change to the standardized version of the CPAN URLdougb2005-09-111-1/+1
* Update to 0.53, which fixes a stray AFINET_6, and a few other bugs.dougb2005-07-232-3/+3
* Upgrade to the eagerly anticipated 0.52. If you are using a versiondougb2005-07-062-4/+6
* Make this work on Perl 5.005.03 (ala RELENG_4) by installingdougb2005-06-274-0/+146
* Upgrade to 0.51, which fixes extra debugging that should not havedougb2005-06-132-4/+5
* Upgrade to 0.50, the latest version. Usual assortmentdougb2005-06-112-3/+3
* Update to the latest version, mostly bug fixes.dougb2005-04-052-3/+3
* Update to 0.48, a minor bugfix release.dougb2004-08-233-4/+5
* Update to 0.47. The few small bug fixes can be found in the CHANGES file.dougb2004-06-062-3/+3
* this perl module creates/parses 'dynamic' updates, not 'dymanic' ones.billf2004-03-171-1/+1
* Update to 0.46, which has better IPv6 reverse DNS handling, anddougb2004-03-143-5/+4
* Upgrade to 0.45. This version has major speed enhancements,dougb2004-02-082-2/+3
* Fix duplicate %%PERL_ARCH%%'ification in one of the conditional rmdirdougb2004-01-051-1/+1
* Update to version 0.44, the latest available. Version 0.43 had thedougb2004-01-022-6/+7
* * Update for version 0.44dougb2004-01-021-51/+55
* This patch is no longer needed as of 0.44dougb2004-01-021-53/+0