summaryrefslogtreecommitdiff
path: root/mail/vm-pop3d/files/vm-pop3d.sh
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2014-09-01 21:25:59 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2014-09-01 21:25:59 +0000
commit8003ba152f15aa82aaadd76fcd6b669cc0cc9981 (patch)
tree7842527232644d8f0fc76639a38e9596a910d381 /mail/vm-pop3d/files/vm-pop3d.sh
parentConvert to USES=libtool and add INSTALL_TARGET=install-strip (diff)
Remove non staged ports without pending PR from ma*
Notes
Notes: svn path=/head/; revision=366959
Diffstat (limited to 'mail/vm-pop3d/files/vm-pop3d.sh')
-rw-r--r--mail/vm-pop3d/files/vm-pop3d.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/mail/vm-pop3d/files/vm-pop3d.sh b/mail/vm-pop3d/files/vm-pop3d.sh
deleted file mode 100644
index 43e28e9b3fdd..000000000000
--- a/mail/vm-pop3d/files/vm-pop3d.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-case "$1" in
-start)
- [ -x %%PREFIX%%/sbin/vm-pop3d ] && %%PREFIX%%/sbin/vm-pop3d -d && echo -n " vm-pop3d"
- ;;
-stop)
- killall vm-pop3d && echo -n " vm-pop3d"
- ;;
-*)
- echo "Usage: `basename $0` {start|stop}" >&2
- ;;
-esac
-
-exit 0