diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-09-01 21:25:59 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-09-01 21:25:59 +0000 |
commit | 8003ba152f15aa82aaadd76fcd6b669cc0cc9981 (patch) | |
tree | 7842527232644d8f0fc76639a38e9596a910d381 /mail/p3scan/files/p3scan.in | |
parent | Convert 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/p3scan/files/p3scan.in')
-rw-r--r-- | mail/p3scan/files/p3scan.in | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/mail/p3scan/files/p3scan.in b/mail/p3scan/files/p3scan.in deleted file mode 100644 index 09e185ba21e3..000000000000 --- a/mail/p3scan/files/p3scan.in +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# PROVIDE: p3scan -# REQUIRE: DAEMON -# -# Add the following lines to /etc/rc.conf to enable p3scan: -# p3scan_enable="YES" -# -# Optional: -# p3scan_config="%%PREFIX%%/etc/p3scan/p3scan.conf -# - -. /etc/rc.subr - -name=p3scan -rcvar=p3scan_enable - -required_files=%%PREFIX%%/etc/p3scan/p3scan.conf - -# set defaults - -p3scan_enable=${p3scan_enable:-"NO"} -p3scan_config=${p3scan_config:-"%%PREFIX%%/etc/p3scan/p3scan.conf"} - -load_rc_config $name -run_rc_command "$1" - -start_cmd="p3scan_start" - -p3scan_start() -{ - %%PREFIX%%/sbin/p3scan -f ${p3scan_config} -} - -run_rc_command "$1" |