diff options
Diffstat (limited to 'security')
-rw-r--r-- | security/Makefile | 2 | ||||
-rw-r--r-- | security/py-xmlsec/Makefile | 46 | ||||
-rw-r--r-- | security/py-xmlsec/distinfo | 2 | ||||
-rw-r--r-- | security/py-xmlsec/files/patch-setup.py | 53 | ||||
-rw-r--r-- | security/py-xmlsec/pkg-descr | 3 | ||||
-rw-r--r-- | security/samba-virusfilter/Makefile | 32 | ||||
-rw-r--r-- | security/samba-virusfilter/distinfo | 2 | ||||
-rw-r--r-- | security/samba-virusfilter/pkg-descr | 9 | ||||
-rw-r--r-- | security/samba-virusfilter/pkg-plist | 4 |
9 files changed, 0 insertions, 153 deletions
diff --git a/security/Makefile b/security/Makefile index 1d30fc8479ec..9dd9df31cfe5 100644 --- a/security/Makefile +++ b/security/Makefile @@ -975,7 +975,6 @@ SUBDIR += py-virustotal-api SUBDIR += py-volatility SUBDIR += py-vulndb - SUBDIR += py-xmlsec SUBDIR += py-yara SUBDIR += py-yubioath-desktop SUBDIR += py-zope.app.authentication @@ -1124,7 +1123,6 @@ SUBDIR += rubygem-webpush SUBDIR += s2n SUBDIR += safesh - SUBDIR += samba-virusfilter SUBDIR += samhain SUBDIR += samhain-client SUBDIR += samhain-server diff --git a/security/py-xmlsec/Makefile b/security/py-xmlsec/Makefile deleted file mode 100644 index e3a3d1edff7e..000000000000 --- a/security/py-xmlsec/Makefile +++ /dev/null @@ -1,46 +0,0 @@ -# Created by: ijliao -# $FreeBSD$ - -PORTNAME= xmlsec -PORTVERSION= 0.3.0 -PORTREVISION= 4 -CATEGORIES= security python -MASTER_SITES= http://labs.libre-entreprise.org/frs/download.php/430/ -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= py${PORTNAME}-${PORTVERSION} - -MAINTAINER= ports@FreeBSD.org -COMMENT= Python bindings for XML Security Library - -LICENSE= GPLv2+ -LICENSE_FILE= ${WRKSRC}/COPYING - -BROKEN= does not build (x509.c:46:60: error: too many arguments to function call, expected 2, have 3) -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2017-11-09 - -LIB_DEPENDS= libxmlsec1.so:security/xmlsec1 -RUN_DEPENDS= ${PYTHON_SITELIBDIR}/libxml2.py:textproc/py-libxml2 - -USES= python:2 ssl -USE_PYTHON= distutils autoplist - -DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} -EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} -PORTDOCS= * -PORTEXAMPLES= * - -OPTIONS_DEFINE= DOCS EXAMPLES - -post-install: - @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/xmlsecmod.so - -post-install-DOCS-on: - @${MKDIR} ${STAGEDIR}${DOCSDIR} - (cd ${WRKSRC}/docs/html/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}/) - -post-install-EXAMPLES-on: - @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} - (cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}/) - -.include <bsd.port.mk> diff --git a/security/py-xmlsec/distinfo b/security/py-xmlsec/distinfo deleted file mode 100644 index f293db04aade..000000000000 --- a/security/py-xmlsec/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (pyxmlsec-0.3.0.tar.gz) = 4ddb5a548fb44d77463cae11b8f3e77c4e8c0e84d5c562e146e752fc653e2c35 -SIZE (pyxmlsec-0.3.0.tar.gz) = 224312 diff --git a/security/py-xmlsec/files/patch-setup.py b/security/py-xmlsec/files/patch-setup.py deleted file mode 100644 index 073eab6bd794..000000000000 --- a/security/py-xmlsec/files/patch-setup.py +++ /dev/null @@ -1,53 +0,0 @@ ---- setup.py.orig Fri Feb 13 08:55:47 2004 -+++ setup.py Fri Feb 13 08:57:30 2004 -@@ -71,22 +71,22 @@ - - # the crypto engine name : openssl, gnutls or nss - xmlsec1_crypto = "openssl" --if 'build' in sys.argv: -- msg = '\nChoose a crypto engine :\n' \ -- ' 1. OpenSSL\n' \ -- ' 2. GnuTLS\n' \ -- ' 3. NSS\n' \ -- 'Your choice : ' -- reply = raw_input(msg) -- choice = None -- if reply: -- choice = reply[0] -- if choice == '1': -- xmlsec1_crypto = "openssl" -- elif choice == '2': -- xmlsec1_crypto = "gnutls" -- elif choice == '3': -- xmlsec1_crypto = "nss" -+#if 'build' in sys.argv: -+# msg = '\nChoose a crypto engine :\n' \ -+# ' 1. OpenSSL\n' \ -+# ' 2. GnuTLS\n' \ -+# ' 3. NSS\n' \ -+# 'Your choice : ' -+# reply = raw_input(msg) -+# choice = None -+# if reply: -+# choice = reply[0] -+# if choice == '1': -+# xmlsec1_crypto = "openssl" -+# elif choice == '2': -+# xmlsec1_crypto = "gnutls" -+# elif choice == '3': -+# xmlsec1_crypto = "nss" - - define_macros = [] - include_dirs = [] -@@ -104,7 +104,10 @@ - if flag[2:] not in include_dirs: - include_dirs.append(flag[2:]) - elif flag[:2] == "-D": -- t = tuple(flag[2:].split('=')) -+ t = flag[2:].split('=') -+ if (len(t) == 1): -+ t.append('1') -+ t = tuple(t) - if t not in define_macros: - define_macros.append(t) - else: diff --git a/security/py-xmlsec/pkg-descr b/security/py-xmlsec/pkg-descr deleted file mode 100644 index 72c8982acb38..000000000000 --- a/security/py-xmlsec/pkg-descr +++ /dev/null @@ -1,3 +0,0 @@ -PyXMLSec is a set of Python bindings for the XML Security library (XMLSec). - -WWW: http://pyxmlsec.labs.libre-entreprise.org/ diff --git a/security/samba-virusfilter/Makefile b/security/samba-virusfilter/Makefile deleted file mode 100644 index d38cc9a6441e..000000000000 --- a/security/samba-virusfilter/Makefile +++ /dev/null @@ -1,32 +0,0 @@ -# $FreeBSD$ - -PORTNAME= samba-virusfilter -PORTVERSION= 0.1.3 -PORTREVISION= 1 -CATEGORIES= security -MASTER_SITES= GHC - -MAINTAINER= kuriyama@FreeBSD.org -COMMENT= On-access anti-virus filter for Samba - -BROKEN= fails to configure with samba 4 -DEPRECATED= Broken for more than 6 months -EXPIRATION_DATE= 2017-11-09 - -PATCH_DEPENDS= smbclient:${SAMBAPORT} -BUILD_DEPENDS= ${NONEXISTENT}:${SAMBAPORT}:configure -RUN_DEPENDS= ksh:shells/pdksh - -GNU_CONFIGURE= yes -USES= gmake samba:env shebangfix tar:bzip2 -SHEBANG_FILES= bin/svf-notify.ksh -USE_GITHUB= yes -GH_ACCOUNT= fumiyas - -ALL_TARGET= # should empty -CONFIGURE_ARGS= --with-samba-source=`cd ${PORTSDIR}/${SAMBAPORT}; ${MAKE} -VWRKSRC` \ - --with-clamd=${PREFIX}/sbin/clamd --with-savdid=${PREFIX}/bin/savdid -USE_AUTOTOOLS= autoconf autoheader # for ${SAMBAPORT} configure -MAKE_ARGS= SAMBA_DATADIR=${PREFIX} - -.include <bsd.port.mk> diff --git a/security/samba-virusfilter/distinfo b/security/samba-virusfilter/distinfo deleted file mode 100644 index 50d6018607d8..000000000000 --- a/security/samba-virusfilter/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (samba-virusfilter-0.1.3.tar.bz2) = b3c1bcb0a9fa1517017637c5e010dd95a967ff5e069b851625a2bb2d379bc73a -SIZE (samba-virusfilter-0.1.3.tar.bz2) = 73103 diff --git a/security/samba-virusfilter/pkg-descr b/security/samba-virusfilter/pkg-descr deleted file mode 100644 index 889a5466f122..000000000000 --- a/security/samba-virusfilter/pkg-descr +++ /dev/null @@ -1,9 +0,0 @@ -This is a set of various Samba VFS modules to scan and filter virus -files on Samba file services with an anti-virus scanner. - -Supported Anti-Virus engines: - - ClamAV (clamd daemon) - - F-Secure Anti-Virus (fsavd daemon) - - Sophos Anti-Virus (savdid daemon) - -WWW: https://github.com/fumiyas/samba-virusfilter diff --git a/security/samba-virusfilter/pkg-plist b/security/samba-virusfilter/pkg-plist deleted file mode 100644 index 88635cf19c5e..000000000000 --- a/security/samba-virusfilter/pkg-plist +++ /dev/null @@ -1,4 +0,0 @@ -bin/svf-notify -lib/samba/vfs/svf-clamav.so -lib/samba/vfs/svf-fsav.so -lib/samba/vfs/svf-sophos.so |