1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-03 01:23:49 +00:00
mod_ifsession should be the last in modules list
Matus UHLAR - fantomas <uhlar@fantomas.sk>

85675
Add reload command to rc.d/proftpd.sh script
Patrick Gibson <patrick@retrix.com>

85616
Added mod_radius
Boris Kovalenko <boris@tagnet.ru>
This commit is contained in:
Michael Haro 2005-10-10 05:38:26 +00:00
parent a3ccfe5776
commit c22100a3d5
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=144768
4 changed files with 30 additions and 14 deletions

View File

@ -7,7 +7,7 @@
PORTNAME= proftpd
DISTVERSION= 1.3.0rc2
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= ftp
MASTER_SITES= ftp://ftp.proftpd.org/distrib/source/ \
ftp://ftp.fastorama.com/mirrors/ftp.proftpd.org/distrib/source/ \
@ -50,16 +50,13 @@ OPTIONS= IPV6 "Use IPv6" off \
README "Include mod_readme" on \
RATIO "Include mod_ratio" on \
REWRITE "Include mod_rewrite" on \
WRAP "Include mod_wrap" on
WRAP "Include mod_wrap" on \
RADIUS "Include mod_radius" off
MODULES?=
.include <bsd.port.pre.mk>
.if defined(WITH_IFSESSION)
MODULES:=${MODULES}:mod_ifsession
.endif
.if defined(WITH_RATIO)
MODULES:=${MODULES}:mod_ratio
.endif
@ -76,6 +73,10 @@ MODULES:=${MODULES}:mod_rewrite
MODULES:=${MODULES}:mod_wrap
.endif
.if defined(WITH_RADIUS)
MODULES:=${MODULES}:mod_radius
.endif
.if defined(WITH_SETPASSENT)
CONFIGURE_ARGS+= --enable-force-setpassent
.endif
@ -93,7 +94,7 @@ CONFIGURE_ARGS+= --disable-ipv6
.endif
#allow user to override
MODULES?= mod_ifsession:mod_ratio:mod_readme:mod_rewrite:mod_wrap
MODULES?= mod_ratio:mod_readme:mod_rewrite:mod_wrap:mod_ifsession
INCLUDEDIRS=
LIBDIRS=
@ -145,6 +146,11 @@ MODULES:=${MODULES}:mod_quotatab_sql
.endif
.endif
# mod_ifsession should be the last item in the modules list
.if defined(WITH_IFSESSION)
MODULES:=${MODULES}:mod_ifsession
.endif
# Keep this here below, in case similar constructs need to be made
CONFIGURE_ENV+= "LIBS=${PROFTPD_LIBS}"

View File

@ -37,5 +37,7 @@ stop_postcmd()
proftpd_enable=${proftpd_enable:-"NO"}
proftpd_flags=${proftpd_flags:-""}
extra_commands="reload"
load_rc_config $name
run_rc_command "$1"

View File

@ -7,7 +7,7 @@
PORTNAME= proftpd
DISTVERSION= 1.3.0rc2
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= ftp
MASTER_SITES= ftp://ftp.proftpd.org/distrib/source/ \
ftp://ftp.fastorama.com/mirrors/ftp.proftpd.org/distrib/source/ \
@ -50,16 +50,13 @@ OPTIONS= IPV6 "Use IPv6" off \
README "Include mod_readme" on \
RATIO "Include mod_ratio" on \
REWRITE "Include mod_rewrite" on \
WRAP "Include mod_wrap" on
WRAP "Include mod_wrap" on \
RADIUS "Include mod_radius" off
MODULES?=
.include <bsd.port.pre.mk>
.if defined(WITH_IFSESSION)
MODULES:=${MODULES}:mod_ifsession
.endif
.if defined(WITH_RATIO)
MODULES:=${MODULES}:mod_ratio
.endif
@ -76,6 +73,10 @@ MODULES:=${MODULES}:mod_rewrite
MODULES:=${MODULES}:mod_wrap
.endif
.if defined(WITH_RADIUS)
MODULES:=${MODULES}:mod_radius
.endif
.if defined(WITH_SETPASSENT)
CONFIGURE_ARGS+= --enable-force-setpassent
.endif
@ -93,7 +94,7 @@ CONFIGURE_ARGS+= --disable-ipv6
.endif
#allow user to override
MODULES?= mod_ifsession:mod_ratio:mod_readme:mod_rewrite:mod_wrap
MODULES?= mod_ratio:mod_readme:mod_rewrite:mod_wrap:mod_ifsession
INCLUDEDIRS=
LIBDIRS=
@ -145,6 +146,11 @@ MODULES:=${MODULES}:mod_quotatab_sql
.endif
.endif
# mod_ifsession should be the last item in the modules list
.if defined(WITH_IFSESSION)
MODULES:=${MODULES}:mod_ifsession
.endif
# Keep this here below, in case similar constructs need to be made
CONFIGURE_ENV+= "LIBS=${PROFTPD_LIBS}"

View File

@ -37,5 +37,7 @@ stop_postcmd()
proftpd_enable=${proftpd_enable:-"NO"}
proftpd_flags=${proftpd_flags:-""}
extra_commands="reload"
load_rc_config $name
run_rc_command "$1"