[64282] trunk/dports/net
ryandesign at macports.org
ryandesign at macports.org
Sun Feb 28 02:58:08 PST 2010
Revision: 64282
http://trac.macports.org/changeset/64282
Author: ryandesign at macports.org
Date: 2010-02-28 02:58:08 -0800 (Sun, 28 Feb 2010)
Log Message:
-----------
vantages: new port, version 0.8.31b; see #23868
Added Paths:
-----------
trunk/dports/net/vantages/
trunk/dports/net/vantages/Portfile
trunk/dports/net/vantages/files/
trunk/dports/net/vantages/files/patch-destroot_variable_fix.diff
Added: trunk/dports/net/vantages/Portfile
===================================================================
--- trunk/dports/net/vantages/Portfile (rev 0)
+++ trunk/dports/net/vantages/Portfile 2010-02-28 10:58:08 UTC (rev 64282)
@@ -0,0 +1,43 @@
+# $Id$
+
+PortSystem 1.0
+
+name vantages
+version 0.8.3.1b
+categories net
+platforms darwin
+maintainers nomaintainer
+description A suite of services and tools to make adoption of DNSSEC easier.
+long_description Vantages is a suite of services designed to make the adoption of \
+ DNSSEC easier for administrators of both authoritative name servers \
+ (i.e. zone administrators) and recursive resolvers. Though the suite \
+ comes with a set of useful command line tools (dnsfunnel, dnskey-grab, \
+ etc.), its main functionality is a single daemon (vantaged) that \
+ performs the various tasks needed to smoothly operate either a DNSSEC \
+ zone, or a validating recursive resolver. Vantages' single daemon acts \
+ as a one-stop-shopping solution for the needs of DNSSEC operators. \
+ This is in contrast to other DNSSEC tool suites that require users to \
+ become familiar with numerous daemons and tools and must configure and \
+ run them all separately. With Vantages, operators just install the \
+ daemon and use its web dashboards to configure the services that are needed.
+
+homepage http://vantage-points.org/
+master_sites ${homepage}src/
+checksums sha1 e78bb8de21f7302335d2d73a5423613593e1d6fa
+extract.suffix .tgz
+patchfiles patch-destroot_variable_fix.diff
+
+depends_lib port:curl-ca-bundle \
+ port:expat \
+ port:gnupg \
+ port:gpgme \
+ port:libgpg-error \
+ port:libtool \
+ port:libpcap \
+ port:openssl \
+ port:p5-term-readkey \
+ port:sqlite3
+
+livecheck.type regex
+livecheck.url ${master_sites}
+livecheck.regex "${name}-(\\d+(?:\\.\\d+)*)${extract.suffix}"
Property changes on: trunk/dports/net/vantages/Portfile
___________________________________________________________________
Added: svn:keywords
+ Id
Added: svn:eol-style
+ native
Added: trunk/dports/net/vantages/files/patch-destroot_variable_fix.diff
===================================================================
--- trunk/dports/net/vantages/files/patch-destroot_variable_fix.diff (rev 0)
+++ trunk/dports/net/vantages/files/patch-destroot_variable_fix.diff 2010-02-28 10:58:08 UTC (rev 64282)
@@ -0,0 +1,63 @@
+--- Makefile.in.orig 2010-02-26 16:42:37.000000000 +0100
++++ Makefile.in 2010-02-26 17:00:57.000000000 +0100
+@@ -99,35 +99,35 @@
+ $(MAKE) clean -C shttpd-1.42/src
+
+ install: installman installldconfig
+- -( mkdir -p $(bindir) )
+- $(INSTALL_PROGRAM) $(INSTALL_MODE) bin/vantaged $(bindir)/vantaged
+- $(INSTALL_PROGRAM) $(INSTALL_MODE) bin/dnsfunnel $(bindir)/dnsfunnel
+- $(INSTALL_PROGRAM) $(INSTALL_MODE) bin/dnskey-grab $(bindir)/dnskey-grab
+- $(INSTALL_PROGRAM) $(INSTALL_MODE) scripts/create-db.pl $(bindir)/create-db.pl
+- $(INSTALL_PROGRAM) $(INSTALL_MODE) scripts/vant-setup $(bindir)/vant-setup
+- $(INSTALL) -m 755 -d $(libdir)
+- $(LIBTOOL) --mode=install cp dns/libvdns.la $(libdir)
+- $(LIBTOOL) --mode=finish $(libdir)
+- $(INSTALL_PROGRAM) $(INSTALL_MODE) -d $(includedir)/vantages
+- for i in `ls dns/*.h`; do $(INSTALL_PROGRAM) $(DOC_MODE) $$i $(includedir)/vantages/; done
+- -( mkdir -p $(docdir) )
+- -( mkdir -p $(datarootdir)/vantages )
+- cp -RL sql $(datarootdir)/vantages/
+- $(INSTALL_PROGRAM) $(DOC_MODE) doc/vantaged.conf.sample $(datarootdir)/vantages/vantaged.conf.sample
+- $(INSTALL_PROGRAM) $(DOC_MODE) LICENSE $(datarootdir)/vantages/LICENSE
+- $(INSTALL_PROGRAM) $(DOC_MODE) README $(datarootdir)/vantages/README
+- $(INSTALL_PROGRAM) $(DOC_MODE) ERRATA $(datarootdir)/vantages/ERRATA
++ -( mkdir -p $(DESTDIR)$(bindir) )
++ $(INSTALL_PROGRAM) $(INSTALL_MODE) bin/vantaged $(DESTDIR)$(bindir)/vantaged
++ $(INSTALL_PROGRAM) $(INSTALL_MODE) bin/dnsfunnel $(DESTDIR)$(bindir)/dnsfunnel
++ $(INSTALL_PROGRAM) $(INSTALL_MODE) bin/dnskey-grab $(DESTDIR)$(bindir)/dnskey-grab
++ $(INSTALL_PROGRAM) $(INSTALL_MODE) scripts/create-db.pl $(DESTDIR)$(bindir)/create-db.pl
++ $(INSTALL_PROGRAM) $(INSTALL_MODE) scripts/vant-setup $(DESTDIR)$(bindir)/vant-setup
++ $(INSTALL) -m 755 -d $(DESTDIR)$(libdir)
++ $(LIBTOOL) --mode=install cp dns/libvdns.la $(DESTDIR)$(libdir)
++ $(LIBTOOL) --mode=finish $(DESTDIR)$(libdir)
++ $(INSTALL_PROGRAM) $(INSTALL_MODE) -d $(DESTDIR)$(includedir)/vantages
++ for i in `ls dns/*.h`; do $(INSTALL_PROGRAM) $(DOC_MODE) $$i $(DESTDIR)$(includedir)/vantages/; done
++ -( mkdir -p $(DESTDIR)$(docdir) )
++ -( mkdir -p $(DESTDIR)$(datarootdir)/vantages )
++ cp -RL sql $(DESTDIR)$(datarootdir)/vantages/
++ $(INSTALL_PROGRAM) $(DOC_MODE) doc/vantaged.conf.sample $(DESTDIR)$(datarootdir)/vantages/vantaged.conf.sample
++ $(INSTALL_PROGRAM) $(DOC_MODE) LICENSE $(DESTDIR)$(datarootdir)/vantages/LICENSE
++ $(INSTALL_PROGRAM) $(DOC_MODE) README $(DESTDIR)$(datarootdir)/vantages/README
++ $(INSTALL_PROGRAM) $(DOC_MODE) ERRATA $(DESTDIR)$(datarootdir)/vantages/ERRATA
+ @echo ""
+ @grep '^--' README
+
+ installman:
+- $(INSTALL) -m 755 -d $(man1dir)
+- $(INSTALL) -m 755 -d $(man5dir)
+- $(INSTALL) -m 755 -d $(man8dir)
+- $(INSTALL_PROGRAM) $(DOC_MODE) doc/dnsfunnel.1 $(man1dir)/dnsfunnel.1
+- $(INSTALL_PROGRAM) $(DOC_MODE) doc/dnskey-grab.1 $(man1dir)/dnskey-grab.1
+- $(INSTALL_PROGRAM) $(DOC_MODE) doc/vantaged.conf.5 $(man5dir)/vantaged.conf.5
+- $(INSTALL_PROGRAM) $(DOC_MODE) doc/vantaged.8 $(man8dir)/vantaged.8
++ $(INSTALL) -m 755 -d $(DESTDIR)$(man1dir)
++ $(INSTALL) -m 755 -d $(DESTDIR)$(man5dir)
++ $(INSTALL) -m 755 -d $(DESTDIR)$(man8dir)
++ $(INSTALL_PROGRAM) $(DOC_MODE) doc/dnsfunnel.1 $(DESTDIR)$(man1dir)/dnsfunnel.1
++ $(INSTALL_PROGRAM) $(DOC_MODE) doc/dnskey-grab.1 $(DESTDIR)$(man1dir)/dnskey-grab.1
++ $(INSTALL_PROGRAM) $(DOC_MODE) doc/vantaged.conf.5 $(DESTDIR)$(man5dir)/vantaged.conf.5
++ $(INSTALL_PROGRAM) $(DOC_MODE) doc/vantaged.8 $(DESTDIR)$(man8dir)/vantaged.8
+
+ installldconfig:
+ -( if [ -e /etc/ld.so.conf ]; then if [ "x" = "x`grep '^$(libdir)' /etc/ld.so.conf`" ];then echo "$(libdir)" >> /etc/ld.so.conf; ldconfig; fi; fi )
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20100228/9f916d42/attachment.html>
More information about the macports-changes
mailing list