diff --git a/net/qadsl/Makefile b/net/qadsl/Makefile index 1710611d0174..8f102c6ddd76 100644 --- a/net/qadsl/Makefile +++ b/net/qadsl/Makefile @@ -1,36 +1,36 @@ PORTNAME= qadsl PORTVERSION= 1.3.3 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= net MASTER_SITES= SAVANNAH/alive MAINTAINER= ports@FreeBSD.org COMMENT= Auto login/Keep-alive for Telia AB ADSL, COMHEM Cable, and Tiscali Internet WWW= https://www.gnu.org/software/alive/ LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING USE_RC_SUBR= qadsl SUB_FILES= pkg-message GNU_CONFIGURE= yes GNU_CONFIGURE_MANPREFIX=${PREFIX}/share CONFIGURE_ARGS= --with-global-cfg=${PREFIX}/etc/qadsl.conf \ --with-pidfile=/var/run/qadsl.pid INFO= qadsl PLIST_FILES= sbin/qadsl etc/qadsl.conf.sample \ share/man/man5/qadsl.conf.5.gz \ share/man/man8/qadsl.8.gz post-extract: @${CP} ${WRKSRC}/etc/qadsl.conf ${WRKSRC}/etc/qadsl.conf.sample post-patch: @${REINPLACE_CMD} -e \ '/echo $${CFLAGS}/s|^|#| ; \ /echo $${CXXFLAGS}/s|^|#| ; \ s|$$OPTIMIZER_CFLAGS||' ${WRKSRC}/configure .include diff --git a/net/qadsl/files/qadsl.in b/net/qadsl/files/qadsl.in index aa94a1ba5d77..128b1fa81567 100644 --- a/net/qadsl/files/qadsl.in +++ b/net/qadsl/files/qadsl.in @@ -1,35 +1,35 @@ #!/bin/sh # PROVIDE: qadsl -# REQUIRE: NETWORK +# REQUIRE: NETWORKING # BEFORE: DAEMON SERVERS LOGIN # KEYWORD: shutdown # # Add the following lines to /etc/rc.conf to enable qadsl: # #qadsl_enable="YES" # # Configuration flags can be set with qadsl_flags="" # # See qadsl(8) for flags. # # DO NOT CHANGE THESE DEFAULT VALUES HERE # # Default flags qadsl_enable=${qadsl_enable-"NO"} qadsl_flags=${qadsl_flags-"-l"} qadsl_pidfile=${qadsl_pidfile-"/var/run/qadsl.pid"} . /etc/rc.subr name="qadsl" rcvar=qadsl_enable command=%%PREFIX%%/sbin/qadsl load_rc_config $name pidfile=${qadsl_pidfile} required_files=%%PREFIX%%/etc/qadsl.conf qadsl_flags="${qadsl_flags} -p ${qadsl_pidfile}" run_rc_command "$1"