aboutsummaryrefslogtreecommitdiffstats
path: root/ftp/frox/Makefile
blob: 5aa2cc84df155018ce3ff93a2ce5fe1ddc95e676 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Created by: Sergey Matveychuk <sem@ciam.ru>
# $FreeBSD$

PORTNAME=   frox
PORTVERSION=    0.7.18
PORTREVISION=   2
CATEGORIES= ftp
MASTER_SITES=   http://www.hollo.org/frox/download/ \
        http://frox.sourceforge.net/download/ \
        SF

MAINTAINER= sem@FreeBSD.org
COMMENT=    Transparent FTP proxy with caching support

LICENSE=    GPLv2

USES=       gmake tar:bzip2
GNU_CONFIGURE=  yes

USE_RC_SUBR=    frox
SUB_FILES=  pkg-message

PORTDOCS=   SECURITY CREDITS ChangeLog FAQ.html FAQ-1.html FAQ-2.html \
        FAQ-3.html FAQ-4.html FAQ-5.html FAQ-6.html FAQ-7.html \
        FAQ-8.html
PLIST_FILES=    sbin/frox ${EXAMPLESDIR:S,${PREFIX}/,,}/frox.conf \
        man/man1/frox.1.gz man/man5/frox.conf.5.gz

PKGMESSAGE= ${WRKDIR}/pkg-message

CONFIGURE_ARGS= --enable-configfile=${PREFIX}/etc/frox.conf

OPTIONS_DEFINE= VIRUS_SCAN HTTP_CACHE LOCAL_CACHE CCP ROOT_RUN DOCS
OPTIONS_DEFAULT=    HTTP_CACHE CCP

OPTIONS_RADIO=  PFILTER
OPTIONS_RADIO_PFILTER=  IPFILTER PF

IPFILTER_DESC=      Use ipfilter instead of ipfw
PF_DESC=        Build with pf(4) support
VIRUS_SCAN_DESC=    Run external virus scaner on each download
HTTP_CACHE_DESC=    Enable use of external cache
LOCAL_CACHE_DESC=   Enable use of local cache
CCP_DESC=       Ftp-proxy style command control programs
ROOT_RUN_DESC=      Allow frox running as root (not recomended)

IPFILTER_CONFIGURE_ENABLE=  ipfilter
PF_CPPFLAGS=        -DPF
VIRUS_SCAN_CONFIGURE_ENABLE=    virus-scan
HTTP_CACHE_CONFIGURE_ENABLE=    http-cache
LOCAL_CACHE_CONFIGURE_ENABLE=   local-cache
CCP_CONFIGURE_ENABLE=   ccp
ROOT_RUN_CONFIGURE_ARGS=    run-as-root

do-install:
    ${INSTALL_PROGRAM} ${WRKSRC}/src/frox ${STAGEDIR}${PREFIX}/sbin
    @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
    ${INSTALL_DATA} ${WRKSRC}/src/frox.conf ${STAGEDIR}${EXAMPLESDIR}/frox.conf
    ${INSTALL_MAN} ${WRKSRC}/doc/frox.man ${STAGEDIR}${MANPREFIX}/man/man1/frox.1
    ${INSTALL_MAN} ${WRKSRC}/doc/frox.conf.man ${STAGEDIR}${MANPREFIX}/man/man5/frox.conf.5
    @${MKDIR} ${STAGEDIR}${DOCSDIR}
.for f in ${PORTDOCS}
    ${INSTALL_DATA} ${WRKSRC}/doc/${f} ${STAGEDIR}${DOCSDIR}
.endfor

.include <bsd.port.mk>