As previously announced, remove drwebd. Its functionality is already

included in security/drweb.
This commit is contained in:
Mark Linimon 2004-06-29 09:35:22 +00:00
parent 274abb9676
commit f238fcc3f8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=112530
4 changed files with 0 additions and 68 deletions

View file

@ -71,7 +71,6 @@
SUBDIR += drweb-postfix
SUBDIR += drweb-qmail
SUBDIR += drweb-sendmail
SUBDIR += drwebd
SUBDIR += dsniff
SUBDIR += f-prot
SUBDIR += f-prot-sig

View file

@ -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>

View file

@ -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

View file

@ -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 )