diff --git a/security/tinc-devel/Makefile b/security/tinc-devel/Makefile index 332f167b1f0e..7844c8ac0d9c 100644 --- a/security/tinc-devel/Makefile +++ b/security/tinc-devel/Makefile @@ -1,27 +1,28 @@ PORTNAME= tinc PORTVERSION= 1.1pre18 +PORTREVISION= 1 CATEGORIES= security net-vpn MASTER_SITES= https://www.tinc-vpn.org/packages/ \ http://www.tinc-vpn.org/packages/ PKGNAMESUFFIX= -devel MAINTAINER= dinoex@FreeBSD.org COMMENT= Virtual Private Network (VPN) daemon LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= liblzo2.so:archivers/lzo2 USES= cpe ssl makeinfo readline localbase:ldflags CPE_VENDOR= tinc-vpn GNU_CONFIGURE= yes CONFIGURE_ARGS= --localstatedir=/var --with-curses=/usr USE_RC_SUBR= tincd INFO= tinc PLIST_FILES= sbin/tincd sbin/tinc \ share/bash-completion/completions/tinc \ man/man8/tinc-gui.8.gz man/man5/tinc.conf.5.gz \ man/man8/tinc.8.gz man/man8/tincd.8.gz .include diff --git a/security/tinc-devel/files/patch-cipher.c b/security/tinc-devel/files/patch-cipher.c deleted file mode 100644 index 206b330567de..000000000000 --- a/security/tinc-devel/files/patch-cipher.c +++ /dev/null @@ -1,11 +0,0 @@ ---- src/openssl/cipher.c.orig 2018-10-07 11:43:07 UTC -+++ src/openssl/cipher.c -@@ -189,7 +189,7 @@ bool cipher_decrypt(cipher_t *cipher, const void *inda - } else { - int len; - -- if(EVP_EncryptUpdate(cipher->ctx, outdata, &len, indata, inlen)) { -+ if(EVP_DecryptUpdate(cipher->ctx, outdata, &len, indata, inlen)) { - if(outlen) { - *outlen = len; - }