root/branches/pdns-dns64/pdns/dist-recursor @ 1742

Revision 1742, 1.9 KB (checked in by ahu, 2 years ago)

and more hooks here too

  • Property svn:executable set to *
RevLine 
[1545]1#!/usr/bin/env bash
2
[1742]3VERSION=3.3-hooks
[691]4
[632]5INCLUDES="iputils.hh arguments.hh base64.hh zoneparser-tng.hh \
[630]6rcpgenerator.hh lock.hh dnswriter.hh  dnsrecords.hh dnsparser.hh utility.hh \
7recursor_cache.hh rec_channel.hh qtype.hh misc.hh dns.hh syncres.hh \
[714]8sstuff.hh mtasker.hh mtasker.cc lwres.hh logger.hh ahuexception.hh \
[811]9mplexer.hh win32_mtasker.hh win32_utility.cc ntservice.hh singleton.hh \
[1424]10recursorservice.hh dns_random.hh lua-pdns-recursor.hh namespaces.hh \
[1704]11recpacketcache.hh base32.hh cachecleaner.hh"
[630]12
13CFILES="syncres.cc  misc.cc unix_utility.cc qtype.cc \
[632]14logger.cc arguments.cc  lwres.cc pdns_recursor.cc  \
[630]15recursor_cache.cc  dnsparser.cc dnswriter.cc  dnsrecords.cc  rcpgenerator.cc  \
[714]16base64.cc  zoneparser-tng.cc  rec_channel.cc rec_channel_rec.cc rec_control.cc \
[801]17selectmplexer.cc epollmplexer.cc kqueuemplexer.cc portsmplexer.cc pdns_hw.cc \
[811]18win32_mtasker.cc win32_rec_channel.cc win32_logger.cc ntservice.cc \
[1424]19recursorservice.cc sillyrecords.cc lua-pdns-recursor.cc randomhelper.cc \
[1631]20devpollmplexer.cc recpacketcache.cc dns.cc reczones.cc base32.cc nsecrecords.cc"
[630]21
[745]22cd docs
23make pdns_recursor.1 rec_control.1
24cd ..
25
[691]26DIRNAME=pdns-recursor-$VERSION
27rm -rf $DIRNAME
28mkdir  $DIRNAME
29cp $INCLUDES $CFILES $DIRNAME
30cp Makefile-recursor $DIRNAME/Makefile
[801]31cp Makefile-recursor.win32 $DIRNAME/Makefile.win32
[691]32cp README-recursor $DIRNAME/README
[1631]33cp ../COPYING $DIRNAME/
[691]34cp config-recursor.h $DIRNAME/config.h
35mkdir $DIRNAME/rrd
36cp tools/rrd/{create,update,makegraphs,index.html} $DIRNAME/rrd
[1160]37cp aes/*.{c,cc,h} $DIRNAME
[745]38cp pdns-recursor.init.d $DIRNAME
39cp docs/pdns_recursor.1 docs/rec_control.1 $DIRNAME
[751]40cp configure-recursor $DIRNAME/configure
[1224]41cp powerdns-example-script.lua $DIRNAME
[714]42
[736]43mkdir -p $DIRNAME/sysdeps
[1529]44rm -f sysdeps-recursor/*~
[736]45cp  sysdeps-recursor/* $DIRNAME/sysdeps
[806]46cp "PowerDNS Recursor.vcproj" $DIRNAME/
[691]47tar cf $DIRNAME.tar $DIRNAME
48bzip2 -f $DIRNAME.tar # .. solaris
[630]49
[806]50zip -q $DIRNAME.zip $DIRNAME/*
51
Note: See TracBrowser for help on using the browser.