diff options
author | leeym <leeym@FreeBSD.org> | 2003-04-08 02:26:01 +0800 |
---|---|---|
committer | leeym <leeym@FreeBSD.org> | 2003-04-08 02:26:01 +0800 |
commit | 5e583998d4d93f67a48a7d19ff30c13857beab35 (patch) | |
tree | 4b51c1d51cb0f6f14591a7f833bdd3182378186d /ftp/frox/Makefile | |
parent | ad9d9aa195c9a7cf8c770a25517403ed8f4cb288 (diff) | |
download | freebsd-ports-gnome-5e583998d4d93f67a48a7d19ff30c13857beab35.tar.gz freebsd-ports-gnome-5e583998d4d93f67a48a7d19ff30c13857beab35.tar.zst freebsd-ports-gnome-5e583998d4d93f67a48a7d19ff30c13857beab35.zip |
* Update to 0.7.7
* Move from minium build to maximum (change WITH_ to WITHOUT_) by default
* Allow to build with local-cache and virus-scan features
* make startup script more smarter
PR: 50674
Submitted by: Sergey Matveychuk <sem@ciam.ru>
Diffstat (limited to 'ftp/frox/Makefile')
-rw-r--r-- | ftp/frox/Makefile | 29 |
1 files changed, 19 insertions, 10 deletions
diff --git a/ftp/frox/Makefile b/ftp/frox/Makefile index 7d3be6f50041..a7a651c30509 100644 --- a/ftp/frox/Makefile +++ b/ftp/frox/Makefile @@ -6,7 +6,7 @@ # PORTNAME= frox -PORTVERSION= 0.7.4 +PORTVERSION= 0.7.7 CATEGORIES= ftp MASTER_SITES= http://www.hollo.org/frox/download/ \ http://frox.sourceforge.net/download/ \ @@ -29,13 +29,19 @@ PKGMESSAGE= ${WRKDIR}/pkg-message CONFIGURE_ARGS= --enable-configfile=${PREFIX}/etc/frox.conf -.if defined(WITH_HTTP_CACHE) -CONFIGURE_ARGS+= --enable-http-cache -.endif .if defined(WITH_IPFILTER) CONFIGURE_ARGS+= --enable-ipfilter .endif -.if defined(WITH_CCP) +.if defined(WITH_VIRUS_SCAN) +CONFIGURE_ARGS+= --enable-virus-scan +.endif +.if !defined(WITHOUT_HTTP_CACHE) +CONFIGURE_ARGS+= --enable-http-cache +.endif +.if !defined(WITHOUT_LOCAL_CACHE) +CONFIGURE_ARGS+= --enable-local-cache +.endif +.if !defined(WITHOUT_CCP) CONFIGURE_ARGS+= --enable-ccp .endif .if defined(RUN_AS_ROOT) @@ -46,11 +52,14 @@ pre-fetch: @${ECHO} "" @${ECHO} "You can use the following build options:" @${ECHO} "" - @${ECHO} " WITH_HTTP_CACHE=yes enable http-cache (like squid) using;" - @${ECHO} " WITH_IPFILTER=yes force use ipfilter instead of ipfw;" - @${ECHO} " WITH_CCP=yes enable ftp-proxy style command control programs;" - @${ECHO} " RUN_AS_ROOT=yes allow frox running as root (not recomended)" - @${ECHO} " for using port number <1024." + @${ECHO} " WITH_IPFILTER=yes use ipfilter instead of ipfw;" + @${ECHO} " WITH_VIRUS_SCAN=yes enable to run external virus scaner on each" + @${ECHO} " download (experimental);" + @${ECHO} " WITHOUT_HTTP_CACHE=yes disable use of external cache;" + @${ECHO} " WITHOUT_LOCAL_CACHE=yes disable use of local cache;" + @${ECHO} " WITHOUT_CCP=yes disable ftp-proxy style command control programs;" + @${ECHO} " RUN_AS_ROOT=yes allow frox running as root for using" + @${ECHO} " port number <1024 (not recomended)." @${ECHO} "" pre-patch: |