diff options
-rw-r--r-- | security/openvpn-admin/Makefile | 10 | ||||
-rw-r--r-- | security/openvpn-admin/distinfo | 5 | ||||
-rw-r--r-- | security/openvpn-admin/files/patch-src-Configuration.cs | 20 | ||||
-rw-r--r-- | security/openvpn-admin/files/patch-src-MainWindow.cs | 11 |
4 files changed, 9 insertions, 37 deletions
diff --git a/security/openvpn-admin/Makefile b/security/openvpn-admin/Makefile index e56a5d80be32..096bb20643f0 100644 --- a/security/openvpn-admin/Makefile +++ b/security/openvpn-admin/Makefile @@ -3,11 +3,12 @@ PORTNAME= openvpn-admin PORTVERSION= 1.9.4 -PORTREVISION= 5 +DISTVERSIONSUFFIX= -2 +PORTREVISION= 6 CATEGORIES= security gnome -MASTER_SITES= SF/${PORTNAME}/OldFiles +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/release-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= egypcio@googlemail.com COMMENT= GUI frontend to openvpn LICENSE= LGPL21+ @@ -15,8 +16,9 @@ LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= openvpn:security/openvpn -WRKSRC= ${WRKDIR}/${DISTNAME:S/b//} +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +NO_ARCH= yes USES= gettext gmake pkgconfig USE_GNOME= gtksharp20 intltool GNU_CONFIGURE= yes diff --git a/security/openvpn-admin/distinfo b/security/openvpn-admin/distinfo index 2c2e5e759abd..2e14b5d250c6 100644 --- a/security/openvpn-admin/distinfo +++ b/security/openvpn-admin/distinfo @@ -1,2 +1,3 @@ -SHA256 (openvpn-admin-1.9.4.tar.gz) = 7ef54d77a594da74e233d25437161879feaddadf1416f083c3b3e852e9bd0c31 -SIZE (openvpn-admin-1.9.4.tar.gz) = 358930 +TIMESTAMP = 1532600215 +SHA256 (openvpn-admin-1.9.4-2.tar.gz) = e939a507b24c4486ef3de0d2177511ef7829183162892322db0e3bae4f2f70b0 +SIZE (openvpn-admin-1.9.4-2.tar.gz) = 358941 diff --git a/security/openvpn-admin/files/patch-src-Configuration.cs b/security/openvpn-admin/files/patch-src-Configuration.cs deleted file mode 100644 index fff3361c1e17..000000000000 --- a/security/openvpn-admin/files/patch-src-Configuration.cs +++ /dev/null @@ -1,20 +0,0 @@ ---- src/Configuration.cs.orig Mon Oct 8 11:57:02 2007 -+++ src/Configuration.cs Mon Oct 8 11:57:30 2007 -@@ -33,7 +33,7 @@ - - namespace OpenVPN.Admin - { -- public delegate void ActivateDelegate(System.IO.StreamWriter input, bool askname); -+ public delegate void ConnectionActivateDelegate(System.IO.StreamWriter input, bool askname); - - public class Configuration - { -@@ -409,7 +409,7 @@ - throw new Exception(Catalog.GetString("Invalid passphrase")); - } - -- public static bool Activate(string entry, ActivateDelegate input) -+ public static bool Activate(string entry, ConnectionActivateDelegate input) - { - string contents; - string filename = Configuration.FileFromEntry(entry); diff --git a/security/openvpn-admin/files/patch-src-MainWindow.cs b/security/openvpn-admin/files/patch-src-MainWindow.cs deleted file mode 100644 index e56907f61aea..000000000000 --- a/security/openvpn-admin/files/patch-src-MainWindow.cs +++ /dev/null @@ -1,11 +0,0 @@ ---- src/MainWindow.cs.orig Mon Oct 8 11:55:37 2007 -+++ src/MainWindow.cs Mon Oct 8 11:55:53 2007 -@@ -500,7 +500,7 @@ - return; - } - -- if (Configuration.Activate(this.SelectedEntry, new ActivateDelegate(RequestPassword))) -+ if (Configuration.Activate(this.SelectedEntry, new ConnectionActivateDelegate(RequestPassword))) - { - this.activeConnections = this.activeConnections + 1; - this.RefreshCurrentEntry(); |