diff options
author | dinoex <dinoex@FreeBSD.org> | 2018-06-18 18:33:00 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2018-06-18 18:33:00 +0800 |
commit | f485f51f74e78a6fe6c1fb87f55dbe8b2b7e6a7d (patch) | |
tree | 9de0e1e882f92e25ce6a03e868adcd272fb2de80 /security | |
parent | 226d4973525710af1abd98a7e579706cab9c1283 (diff) | |
download | freebsd-ports-gnome-f485f51f74e78a6fe6c1fb87f55dbe8b2b7e6a7d.tar.gz freebsd-ports-gnome-f485f51f74e78a6fe6c1fb87f55dbe8b2b7e6a7d.tar.zst freebsd-ports-gnome-f485f51f74e78a6fe6c1fb87f55dbe8b2b7e6a7d.zip |
- update to 1.0.34
Diffstat (limited to 'security')
-rw-r--r-- | security/tinc/Makefile | 5 | ||||
-rw-r--r-- | security/tinc/distinfo | 6 | ||||
-rw-r--r-- | security/tinc/files/patch-doc-Makefile.am | 41 |
3 files changed, 5 insertions, 47 deletions
diff --git a/security/tinc/Makefile b/security/tinc/Makefile index 4291dc62f8bb..9f1e50405ee0 100644 --- a/security/tinc/Makefile +++ b/security/tinc/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= tinc -PORTVERSION= 1.0.33 -PORTREVISION= 1 +PORTVERSION= 1.0.34 CATEGORIES= security MASTER_SITES= https://www.tinc-vpn.org/packages/ \ http://www.tinc-vpn.org/packages/ @@ -15,7 +14,7 @@ LICENSE= GPLv3 LIB_DEPENDS= liblzo2.so:archivers/lzo2 -USES= cpe ssl makeinfo autoreconf +USES= cpe ssl makeinfo CPE_VENDOR= tinc-vpn GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include diff --git a/security/tinc/distinfo b/security/tinc/distinfo index a34cbc98813b..b554bcde8316 100644 --- a/security/tinc/distinfo +++ b/security/tinc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1515127532 -SHA256 (tinc-1.0.33.tar.gz) = 7f6f5dc6444bc651ac635c81f4745bcce581bbd1d45ed60cbdc4ee11bebb10f4 -SIZE (tinc-1.0.33.tar.gz) = 486374 +TIMESTAMP = 1529083849 +SHA256 (tinc-1.0.34.tar.gz) = c03a9b61dedd452116dd9a8db231545ba08a7c96bce011e0cbd3cfd2c56dcfda +SIZE (tinc-1.0.34.tar.gz) = 484174 diff --git a/security/tinc/files/patch-doc-Makefile.am b/security/tinc/files/patch-doc-Makefile.am deleted file mode 100644 index b0fc44ba4d27..000000000000 --- a/security/tinc/files/patch-doc-Makefile.am +++ /dev/null @@ -1,41 +0,0 @@ -From 0a95c77f23352aafb08edd85da1c044c02bcb0b7 Mon Sep 17 00:00:00 2001 -From: Guus Sliepen <guus@tinc-vpn.org> -Date: Sat, 4 Nov 2017 19:52:08 +0100 -Subject: [PATCH] Fix building documentation when using OpenBSD's make. - ---- - doc/Makefile.am | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -diff --git a/doc/Makefile.am b/doc/Makefile.am -index fed46b7..60afb12 100644 ---- doc/Makefile.am -+++ doc/Makefile.am -@@ -6,7 +6,7 @@ man_MANS = tincd.8 tinc.conf.5 - - EXTRA_DIST = tincinclude.texi.in tincd.8.in tinc.conf.5.in sample-config - --CLEANFILES = *.html tincd.8 tinc.conf.5 tincinclude.texi -+CLEANFILES = *.html tincd.8 tinc.conf.5 tincinclude.texi tinc.info - - texi2html: tinc.texi - $(AM_V_GEN)texi2html -split=chapter $< -@@ -25,12 +25,12 @@ substitute = sed \ - -e s,'@localstatedir\@',"$(localstatedir)",g - - tincd.8: $(srcdir)/tincd.8.in -- $(AM_V_GEN)$(substitute) $< > $@ -+ $(AM_V_GEN)$(substitute) $(srcdir)/tincd.8.in > $@ - - tinc.conf.5: $(srcdir)/tinc.conf.5.in -- $(AM_V_GEN)$(substitute) $< > $@ -+ $(AM_V_GEN)$(substitute) $(srcdir)/tinc.conf.5.in > $@ - - tincinclude.texi: $(srcdir)/tincinclude.texi.in -- $(AM_V_GEN)$(substitute) $< > $@ -+ $(AM_V_GEN)$(substitute) $(srcdir)/tincinclude.texi.in > $@ - - tinc.texi: tincinclude.texi --- -2.16.2 - |