diff options
Diffstat (limited to 'security')
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/drwebd/Makefile | 42 | ||||
-rw-r--r-- | security/drwebd/files/drweb-0.sh | 22 | ||||
-rw-r--r-- | security/drwebd/pkg-plist | 3 |
4 files changed, 0 insertions, 68 deletions
diff --git a/security/Makefile b/security/Makefile index 68fdb689722..7f7f6e32137 100644 --- a/security/Makefile +++ b/security/Makefile @@ -71,7 +71,6 @@ SUBDIR += drweb-postfix SUBDIR += drweb-qmail SUBDIR += drweb-sendmail - SUBDIR += drwebd SUBDIR += dsniff SUBDIR += f-prot SUBDIR += f-prot-sig diff --git a/security/drwebd/Makefile b/security/drwebd/Makefile deleted file mode 100644 index 915cca3009e..00000000000 --- a/security/drwebd/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -# New ports collection makefile for: drwebd -# Date created: 10.05.2002 -# Whom: Andrey A. Chernov <ache@freebsd.org> -# -# $FreeBSD$ -# - -PORTNAME= drwebd -PORTVERSION= 1.0 -CATEGORIES= security -EXTRACT_ONLY= - -MAINTAINER= ports@FreeBSD.org -COMMENT= Satellite port to activate DrWeb daemon - -DEPRECATED= Port security/drweb already contains startup script -EXPIRATION_DATE= 2004-06-21 - -DESCR= ${PORTSDIR}/security/drweb/pkg-descr - -RUN_DEPENDS= ${LOCALBASE}/drweb/drwebd:${PORTSDIR}/security/drweb - -NO_BUILD= yes -NO_WRKSUBDIR= yes -NO_CHECKSUM= yes - -do-fetch: - @${DO_NADA} - -do-patch: - ${SED} "s#%PREFIX%#${PREFIX}#g" < ${FILESDIR}/drweb-0.sh \ - > ${WRKSRC}/drweb-0.sh - -do-install: - ${INSTALL_DATA} ${WRKSRC}/drweb-0.sh \ - ${PREFIX}/etc/rc.d/drweb-0.sh-dist - if [ ! -f ${PREFIX}/etc/rc.d/drweb-0.sh ]; then \ - ${INSTALL_SCRIPT} ${WRKSRC}/drweb-0.sh \ - ${PREFIX}/etc/rc.d/drweb-0.sh; \ - fi - -.include <bsd.port.mk> diff --git a/security/drwebd/files/drweb-0.sh b/security/drwebd/files/drweb-0.sh deleted file mode 100644 index e38ed7cf801..00000000000 --- a/security/drwebd/files/drweb-0.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh - -case "$1" in -start) - if [ -x %PREFIX%/drweb/drwebd ]; then - rm -f %PREFIX%/drweb/run/drwebd.sock; - %PREFIX%/drweb/drwebd -ini:%PREFIX%/drweb/drweb32.ini && \ - echo -n ' drwebd'; - fi - ;; -stop) - if [ -r %PREFIX%/drweb/run/drwebd.pid ]; then - kill `cat %PREFIX%/drweb/run/drwebd.pid` >/dev/null 2>& 1; - echo -n ' drwebd'; - fi - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - ;; -esac - -exit 0 diff --git a/security/drwebd/pkg-plist b/security/drwebd/pkg-plist deleted file mode 100644 index 6520a94b788..00000000000 --- a/security/drwebd/pkg-plist +++ /dev/null @@ -1,3 +0,0 @@ -@unexec if cmp -s %D/etc/rc.d/drweb-0.sh %D/etc/rc.d/drweb-0.sh-dist; then rm -f %D/etc/rc.d/drweb-0.sh; fi -etc/rc.d/drweb-0.sh-dist -@exec [ -f %B/drweb-0.sh ] || ( cp %B/%f %B/drweb-0.sh; chmod 755 %B/drweb-0.sh ) |