aboutsummaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorDoug Barton <dougb@FreeBSD.org>2011-10-09 02:47:51 +0000
committerDoug Barton <dougb@FreeBSD.org>2011-10-09 02:47:51 +0000
commitc3ef22e5074da76f3c1ee829ef48d204ce040fc8 (patch)
treee774af268961483556ceccc49ef1a585f2e45ce0 /security
parentb701e182a654c26eba0d8736d26c90cc1ffc7811 (diff)
Notes
Diffstat (limited to 'security')
-rw-r--r--security/Makefile3
-rw-r--r--security/execwrap/Makefile53
-rw-r--r--security/execwrap/distinfo2
-rw-r--r--security/execwrap/pkg-descr3
-rw-r--r--security/libparanoia/Makefile38
-rw-r--r--security/libparanoia/distinfo2
-rw-r--r--security/libparanoia/pkg-descr21
-rw-r--r--security/libparanoia/pkg-plist3
-rw-r--r--security/p5-Email-Obfuscate/Makefile24
-rw-r--r--security/p5-Email-Obfuscate/distinfo2
-rw-r--r--security/p5-Email-Obfuscate/files/patch-Makefile.PL8
-rw-r--r--security/p5-Email-Obfuscate/pkg-descr9
-rw-r--r--security/p5-Email-Obfuscate/pkg-plist6
13 files changed, 0 insertions, 174 deletions
diff --git a/security/Makefile b/security/Makefile
index 10b1877847f9..271fa1f31632 100644
--- a/security/Makefile
+++ b/security/Makefile
@@ -118,7 +118,6 @@
SUBDIR += duo
SUBDIR += easypg
SUBDIR += engine_pkcs11
- SUBDIR += execwrap
SUBDIR += expiretable
SUBDIR += f-prot
SUBDIR += fakebo
@@ -249,7 +248,6 @@
SUBDIR += libntlm
SUBDIR += libotr
SUBDIR += libp11
- SUBDIR += libparanoia
SUBDIR += libprelude
SUBDIR += libpreludedb
SUBDIR += libpwstor
@@ -509,7 +507,6 @@
SUBDIR += p5-Digest-SV1
SUBDIR += p5-Digest-Tiger
SUBDIR += p5-Digest-Whirlpool
- SUBDIR += p5-Email-Obfuscate
SUBDIR += p5-File-Scan
SUBDIR += p5-File-Scan-ClamAV
SUBDIR += p5-Filter-CBC
diff --git a/security/execwrap/Makefile b/security/execwrap/Makefile
deleted file mode 100644
index 3776e6b972f8..000000000000
--- a/security/execwrap/Makefile
+++ /dev/null
@@ -1,53 +0,0 @@
-# New ports collection makefile for: execwrap
-# Date created: 22 June 2007
-# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= execwrap
-PORTVERSION= 0.5
-CATEGORIES= security
-MASTER_SITES= http://freebsd.unixfreunde.de/sources/
-DISTNAME= ExecWrap-${DISTVERSION}
-EXTRACT_SUFX= .tgz
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Super-user exec wrapper
-
-DEPRECATED= No more public distfiles
-EXPIRATION_DATE= 2011-09-01
-
-NO_WRKSUBDIR= yes
-PORTDOCS= README
-PLIST_FILES= bin/${PORTNAME}
-EXECWRAP_VARS= PARENT_UID TARGET_MIN_UID TARGET_MIN_GID \
- TARGET_PATH_PREFIX DEFAULT_UID DEFAULT_GID
-EXECWRAP_TARGET_PATH_PREFIX?= "${WWWDIR:S|/${PORTNAME}$||}"
-.for _var in ${EXECWRAP_VARS}
-. ifdef EXECWRAP_${_var}
-_SED_LINE+= s|${_var}.*|${_var} ${EXECWRAP_${_var}}|;
-. endif
-.endfor
-
-post-patch:
- @${REINPLACE_CMD} -e '${_SED_LINE}' ${WRKSRC}/execwrap_config.h
-
-pre-build:
- @${ECHO_CMD} "============================================"
- @${ECHO_CMD} "You can use the following variables to tweak"
- @${ECHO_CMD} "compile-time options:"
- @for opt in ${EXECWRAP_VARS:S|^|EXECWRAP_|};do ${ECHO_MSG} " $$opt";done
- @${ECHO_CMD} "============================================"
-
-do-build:
- @cd ${WRKSRC}/ && ${CC} ${CFLAGS} -o ${PORTNAME} ${PORTNAME}.c
-
-do-install:
- @${INSTALL_PROGRAM} -m 4511 ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/
-.ifndef NOPORTDOCS
- @${INSTALL} -d ${DOCSDIR}/
- @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}/
-.endif
-
-.include <bsd.port.mk>
diff --git a/security/execwrap/distinfo b/security/execwrap/distinfo
deleted file mode 100644
index 5b46756d1151..000000000000
--- a/security/execwrap/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (ExecWrap-0.5.tgz) = 912d8cf63291dd14790e32ef5738077be6b9ce6750e5b004aeb326a4b21e9f4f
-SIZE (ExecWrap-0.5.tgz) = 7980
diff --git a/security/execwrap/pkg-descr b/security/execwrap/pkg-descr
deleted file mode 100644
index 3d0a80c55e2d..000000000000
--- a/security/execwrap/pkg-descr
+++ /dev/null
@@ -1,3 +0,0 @@
-ExecWrap is a super-user exec wrapper for the lighttpd web-server, but
-it can be used in any environment as long as arguments can be passed
-from the server to its children via the environment.
diff --git a/security/libparanoia/Makefile b/security/libparanoia/Makefile
deleted file mode 100644
index 499ea5f71ebf..000000000000
--- a/security/libparanoia/Makefile
+++ /dev/null
@@ -1,38 +0,0 @@
-# New ports collection makefile for: libparanoia
-# Date created: 1 Jan 1999
-# Whom: Alexandre Snarskii <snar@paranoia.ru>
-#
-# $FreeBSD$
-
-PORTNAME= libparanoia
-PORTVERSION= 1.4.1
-CATEGORIES= security
-MASTER_SITES= ftp://ftp.lexa.ru/pub/domestic/snar/
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Safe (in the mean of stack smashing) reincarnation of strcpy et al
-
-DEPRECATED= No more public distfiles
-EXPIRATION_DATE= 2011-09-01
-
-BROKEN= does not fetch
-
-ONLY_FOR_ARCHS= i386
-
-USE_LDCONFIG= yes
-
-# this library depends on system-defined headers "SYS.h" and "DEFS.h"
-# which may differ from release to release.
-
-.if !exists(/usr/src/lib/libc)
-IGNORE= you need to have libc sources installed in /usr/src/lib/libc \
- before compiling
-.endif
-
-.include <bsd.port.pre.mk>
-
-do-patch:
- @${REINPLACE_CMD} -e 's|#include <varargs.h>||' \
- ${WRKSRC}/stentry.c
-
-.include <bsd.port.post.mk>
diff --git a/security/libparanoia/distinfo b/security/libparanoia/distinfo
deleted file mode 100644
index 4a7bf305a7b0..000000000000
--- a/security/libparanoia/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (libparanoia-1.4.1.tar.gz) = 3eb3183f47a32d5ae3efb6fef4a3773de4a3979020a3de357f487af8b4c00861
-SIZE (libparanoia-1.4.1.tar.gz) = 10231
diff --git a/security/libparanoia/pkg-descr b/security/libparanoia/pkg-descr
deleted file mode 100644
index 482d092220b1..000000000000
--- a/security/libparanoia/pkg-descr
+++ /dev/null
@@ -1,21 +0,0 @@
-This is a library, which contains a safe reincarnations
-of strcpy/strcat/sprintf and some other functions,
-which is known to be a source to 99% of stack smashing
-attacks since Morrison Worm.
-
-Basic idea is: these functions never return in case
-of modified stack frames. Instead, they kills current
-process with SIG_SEGV, and, in case when program
-just ignores it - calls exit(2). In 'paranoidal'
-point of view, termination of a process is a much
-less worth, than possible incorrect continuation.
-
-This library can be used in two ways - you can just
-install it as a port/package, and then relink critical
-applications (such as a network daemons) with
--lparanoia -L/usr/local/lib, or you can override
-standard functions in libc (using libparanoia/copy-to-libc
-shell script) - in this case you'll get any application,
-which uses shared libc, automatically protected.
-
-WWW: http://www.lexa.ru/snar/libparanoia/
diff --git a/security/libparanoia/pkg-plist b/security/libparanoia/pkg-plist
deleted file mode 100644
index da0687f43536..000000000000
--- a/security/libparanoia/pkg-plist
+++ /dev/null
@@ -1,3 +0,0 @@
-lib/libparanoia.a
-lib/libparanoia.so
-lib/libparanoia.so.1
diff --git a/security/p5-Email-Obfuscate/Makefile b/security/p5-Email-Obfuscate/Makefile
deleted file mode 100644
index 409ff712122b..000000000000
--- a/security/p5-Email-Obfuscate/Makefile
+++ /dev/null
@@ -1,24 +0,0 @@
-# New ports collection makefile for: p5-Email-Obfuscate
-# Date created: 7 November 2004
-# Whom: Aaron Dalton <aaron@daltons.ca>
-#
-# $FreeBSD$
-#
-
-PORTNAME= Email-Obfuscate
-PORTVERSION= 1.13
-CATEGORIES= security perl5
-MASTER_SITES= CPAN
-PKGNAMEPREFIX= p5-
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Obfuscates email addresses
-
-DEPRECATED= No more public distfiles
-EXPIRATION_DATE= 2011-09-01
-
-PERL_CONFIGURE= yes
-
-MAN3= Email::Obfuscate.3
-
-.include <bsd.port.mk>
diff --git a/security/p5-Email-Obfuscate/distinfo b/security/p5-Email-Obfuscate/distinfo
deleted file mode 100644
index c25be46a0212..000000000000
--- a/security/p5-Email-Obfuscate/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (Email-Obfuscate-1.13.tar.gz) = 708f4a655ba29a43f2c0da62210a53c4bc517ca46fa941f3a7d4a703bf5579d1
-SIZE (Email-Obfuscate-1.13.tar.gz) = 22442
diff --git a/security/p5-Email-Obfuscate/files/patch-Makefile.PL b/security/p5-Email-Obfuscate/files/patch-Makefile.PL
deleted file mode 100644
index ce42c4f14888..000000000000
--- a/security/p5-Email-Obfuscate/files/patch-Makefile.PL
+++ /dev/null
@@ -1,8 +0,0 @@
---- Makefile.PL Tue Dec 9 03:46:48 2003
-+++ Makefile.PL.patched Wed Nov 10 17:53:26 2004
-@@ -11,4 +11,4 @@
-
- &Meta->write;
- &Build->write if lc($0) eq 'build.pl';
--&Makefile->write if lc($0) eq 'makefile.pl';
-+&Makefile->write if ((lc($0) eq 'makefile.pl') || (lc($0) eq './makefile.pl'));
diff --git a/security/p5-Email-Obfuscate/pkg-descr b/security/p5-Email-Obfuscate/pkg-descr
deleted file mode 100644
index 4bdc2aef7602..000000000000
--- a/security/p5-Email-Obfuscate/pkg-descr
+++ /dev/null
@@ -1,9 +0,0 @@
-This package provides for the obfuscation of email address in
-an ostensibly superficial, attempt to thwart email address harvesters.
-
-Currently, there are eight different "types" of email address obfuscation
-transformations that this module employs. One of these transformations is
-randomly selected and used as a basis for obfuscation when
-obfuscate_email_address() is called.
-
-WWW: http://search.cpan.org/dist/Email-Obfuscate/
diff --git a/security/p5-Email-Obfuscate/pkg-plist b/security/p5-Email-Obfuscate/pkg-plist
deleted file mode 100644
index e0f640ec95d2..000000000000
--- a/security/p5-Email-Obfuscate/pkg-plist
+++ /dev/null
@@ -1,6 +0,0 @@
-%%SITE_PERL%%/Email/Obfuscate.pm
-%%SITE_PERL%%/Email/Obfuscate.pod
-%%SITE_PERL%%/%%PERL_ARCH%%/auto/Email/Obfuscate/.packlist
-@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Email/Obfuscate
-@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Email
-@dirrmtry %%SITE_PERL%%/Email