aboutsummaryrefslogtreecommitdiff
path: root/ftp/frox/Makefile
blob: 24b6a8ba8833dc37b032285f95afbf6e29faeea6 (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
67
68
69
70
71
72
73
74
# Created by: Sergey Matveychuk <sem@ciam.ru>

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

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

LICENSE=	GPLv2+
LICENSE_FILE=	${WRKSRC}/COPYING

USES=		gmake tar:bzip2
GNU_CONFIGURE=	yes
CONFIGURE_ARGS=	--enable-configfile=${PREFIX}/etc/frox.conf

CFLAGS+=		-fcommon

DEPRECATED=	Unmaintained and dead upstream, does not build with -fno-common (llvm 11)
EXPIRATION_DATE=2021-04-01

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
PORTEXAMPLES=	*
PLIST_FILES=	sbin/frox \
		man/man1/frox.1.gz \
		man/man5/frox.conf.5.gz

OPTIONS_DEFINE=	VIRUS_SCAN HTTP_CACHE LOCAL_CACHE CCP ROOT_RUN DOCS EXAMPLES
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_ENABLE=	run-as-root

do-install:
	${INSTALL_PROGRAM} ${WRKSRC}/src/frox ${STAGEDIR}${PREFIX}/sbin
	${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

do-install-EXAMPLES-on:
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
	${INSTALL_DATA} ${WRKSRC}/src/frox.conf ${STAGEDIR}${EXAMPLESDIR}/frox.conf

do-install-DOCS-on:
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for f in ${PORTDOCS}
	${INSTALL_DATA} ${WRKSRC}/doc/${f} ${STAGEDIR}${DOCSDIR}
.endfor

.include <bsd.port.mk>