aboutsummaryrefslogtreecommitdiff
path: root/www/tinyproxy/Makefile
blob: c51ccb7b4525995ce0e07f810792b2ac28ed2ec1 (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
# Created by: Mitsuru Yoshida <mitsuru@riken.go.jp>

PORTNAME=	tinyproxy
PORTVERSION=	1.11.0
PORTREVISION=	1
PORTEPOCH=	1
CATEGORIES=	www
MASTER_SITES=	https://github.com/tinyproxy/tinyproxy/releases/download/${PORTVERSION}/

MAINTAINER=	sunpoet@FreeBSD.org
COMMENT=	Small, efficient HTTP proxy server

LICENSE=	GPLv2
LICENSE_FILE=	${WRKSRC}/COPYING

USES=		gmake tar:xz

CONFIGURE_ARGS=	--bindir=${PREFIX}/sbin \
		--disable-manpage_support \
		--program-transform-name=""
GNU_CONFIGURE=	yes
USE_RC_SUBR=	tinyproxy

OPTIONS_DEFINE=	FILTER REVERSE UPSTREAM TRANSPARENT XHEADER
OPTIONS_DEFAULT=FILTER REVERSE UPSTREAM TRANSPARENT XHEADER
FILTER_DESC=		Filter support
REVERSE_DESC=		Reverse proxy support
UPSTREAM_DESC=		Upstream proxying support
TRANSPARENT_DESC=	Transparent proxy support
XHEADER_DESC=		X-Tinyproxy header

FILTER_CONFIGURE_ENABLE=	filter
REVERSE_CONFIGURE_ENABLE=	reverse
UPSTREAM_CONFIGURE_ENABLE=	upstream
TRANSPARENT_CONFIGURE_ENABLE=	transparent
XHEADER_CONFIGURE_ENABLE=	xtinyproxy

post-patch:
	@${REINPLACE_CMD} -e 's|tinyproxy/tinyproxy|tinyproxy|g; s|/etc/tinyproxy|${PREFIX}&|' \
		${WRKSRC}/docs/man5/tinyproxy.conf.5 \
		${WRKSRC}/docs/man8/tinyproxy.8 \
		${WRKSRC}/etc/tinyproxy.conf.in
	@${REINPLACE_CMD} -e '/\/usr\/share\/tinyproxy/d; s|^#\(LogFile \)|\1|; s|^#\(PidFile \)|\1|' ${WRKSRC}/etc/tinyproxy.conf.in

post-install:
	${MV} ${STAGEDIR}${PREFIX}/etc/tinyproxy.conf ${STAGEDIR}${PREFIX}/etc/tinyproxy.conf.sample
	${INSTALL_MAN} ${WRKSRC}/docs/man5/tinyproxy.conf.5 ${STAGEDIR}${PREFIX}/share/man/man5/
	${INSTALL_MAN} ${WRKSRC}/docs/man8/tinyproxy.8 ${STAGEDIR}${PREFIX}/share/man/man8/

.include <bsd.port.mk>