mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-06 22:51:41 +00:00
7810fb706b
eb-2.3, I changed the versions and recalculated the checksums. Also, ndtpd/patches/patch-aa (by me) is for quieting ndtpd somewhat so it won't leave dozens of lines to /var/log/messages every time someone looks up a word, and eb/patches/patch-aa (by Kasahara-san, the original author) is for changing the shared lib versions. ndtpd/Makefile's LIB_DEPENDS was adjusted accordingly. PR: 12130 Submitted by: maintainer Reviewed (my changes) by: maintainer
16 lines
361 B
Bash
16 lines
361 B
Bash
#!/bin/sh -
|
|
#
|
|
# NDTPD: rc-file for FreeBSD.
|
|
#
|
|
|
|
### NDTPD options: ###
|
|
ndtpd_program=@prefix@/sbin/ndtpd # path to ndtpd.
|
|
ndtpd_enable=YES # Run ndtpd (or NO).
|
|
ndtpd_flags= # Flags to ndtpd (if enabled).
|
|
### End of NDTPD options: ###
|
|
|
|
if [ "x${ndtpd_enable}" = xYES -a -x ${ndtpd_program} ]; then
|
|
echo -n " ndtpd"
|
|
${ndtpd_program} ${ndtpd_flags}
|
|
fi
|