summaryrefslogtreecommitdiffstats
path: root/www/rejik/Makefile
blob: 0b1e939f06b6478d8af0c3e960a790f2acf3c411 (plain)
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# Created by: Elisey Savateev <b3k@mail.ru>
# $FreeBSD$

PORTNAME=	rejik
PORTVERSION=	3.2.11
CATEGORIES=	www
MASTER_SITES=	http://www.rejik.ru/download/ \
		http://bio3k.softboard.ru/uploads/arch/
DISTNAME=	redirector-${PORTVERSION}
EXTRACT_SUFX=	.tgz
DISTFILES=	${DISTNAME}${EXTRACT_SUFX}

MAINTAINER=	ports@FreeBSD.org
COMMENT=	A squid redirector used for blocking unwanted content

BROKEN=		Fails to checksum

LIB_DEPENDS=	pcre:${PORTSDIR}/devel/pcre
RUN_DEPENDS=	squid:${PORTSDIR}/www/squid

PLIST_SUB=	INSTALL_DIR=${INSTALL_DIR}
SUB_LIST=	INSTALL_PATH=${INSTALL_PATH} SQUID_USER=${SQUID_USER} SQUID_GROUP=${SQUID_GROUP}
SUB_FILES=	pkg-message

WRKSRC=		${WRKDIR}/${DISTNAME}

OPTIONS_DEFINE=	BAN DBL WWW

OPTIONS_DEFAULT=BAN WWW

BAN_DESC=	With banlists
DBL_DESC=	With DBL scripts
WWW_DESC=	With error pages

NO_STAGE=	yes
.include <bsd.port.options.mk>

# Redifine this if you need
SQUID_USER?=	squid
SQUID_GROUP?=	squid
INSTALL_DIR?=	${PORTNAME}
INSTALL_PATH?=	${PREFIX}/${INSTALL_DIR}

.if ${PORT_OPTIONS:MBAN}
DISTFILES+=	banlists-2.x.x.tgz
PLIST_SUB+=	BAN=""
.else
PLIST_SUB+=	BAN="@comment "
.endif

.if ${PORT_OPTIONS:MWWW}
DISTFILES+=	squid-like-www-en.tgz
PLIST_SUB+=	WWW=""
.else
PLIST_SUB+=	WWW="@comment "
.endif

.if ${PORT_OPTIONS:MDBL}
DISTFILES+=	dbl-2.0.tgz
USES+=		perl5
USE_PERL5=	run
RUN_DEPENDS+=	p5-Text-Iconv>=0:${PORTSDIR}/converters/p5-Text-Iconv \
		p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser \
		wget:${PORTSDIR}/ftp/wget
PLIST_SUB+=	DBL=""
.else
PLIST_SUB+=	DBL="@comment "
.endif

.include <bsd.port.pre.mk>

post-extract:
	@${ECHO_MSG} "===>  ----------------------------------------------"
	@${ECHO_MSG} "===>  Make sure that squid runs under user squid"
	@${ECHO_MSG} "===>  and group squid. If not, redefine SQUID_USER"
	@${ECHO_MSG} "===>  and SQUID_GROUP."
	@${ECHO_MSG} "===>  ----------------------------------------------"

post-patch:
	@${REINPLACE_CMD} -e 's|nobody|${SQUID_USER}|g; s|nogroup|${SQUID_GROUP}|g; \
		s|/usr/local/rejik3|${INSTALL_PATH}|g' \
		${WRKSRC}/Makefile
	@${REINPLACE_CMD} -e 's|/usr/local/rejik3|${INSTALL_PATH}|g' \
		${WRKSRC}/vars.h ${WRKSRC}/redirector.conf.dist

post-install:
	@[ -f ${INSTALL_PATH}/redirector.conf ] || \
		${CP} -p ${INSTALL_PATH}/redirector.conf.dist ${INSTALL_PATH}/redirector.conf
.if !defined(WITHOUT_BAN)
.if !exists(${EXAMPLESDIR})
	@${MKDIR} ${EXAMPLESDIR}
.endif
	@${CP} -R ${WRKDIR}/banlists ${EXAMPLESDIR}
.endif
.if defined(WITH_DBL)
	@${REINPLACE_CMD} -e 's|/usr/bin/wget|${LOCALBASE}/bin/wget|g ; \
		s|/usr/local/rejik3|${INSTALL_PATH}|g' \
		${WRKDIR}/dbl/Update ${WRKDIR}/dbl/Update.Fast ${WRKDIR}/dbl/dbl_expand
	@${RM} ${WRKDIR}/dbl/*.bak
	@${CP} ${WRKDIR}/dbl/Update ${WRKDIR}/dbl/Update.dist
	@${CP} ${WRKDIR}/dbl/Update.Fast ${WRKDIR}/dbl/Update.Fast.dist
	@${CP} ${WRKDIR}/dbl/dbl_expand ${WRKDIR}/dbl/dbl_expand.dist
	@${CP} -Rn ${WRKDIR}/dbl ${INSTALL_PATH}
	@${CHOWN} -R ${SQUID_USER}:${SQUID_GROUP} ${INSTALL_PATH}/dbl
	@[ -f ${INSTALL_PATH}/dbl/Update ] || \
		${CP} -p ${INSTALL_PATH}/dbl/Update.dist ${INSTALL_PATH}/dbl/Update
	@[ -f ${INSTALL_PATH}/dbl/Update.Fast ] || \
		${CP} -p ${INSTALL_PATH}/dbl/Update.Fast.dist ${INSTALL_PATH}/dbl/Update.Fast
	@[ -f ${INSTALL_PATH}/dbl/dbl_expand ] || \
		${CP} -p ${INSTALL_PATH}/dbl/dbl_expand.dist ${INSTALL_PATH}/dbl/dbl_expand
.endif
.if !defined(WITHOUT_WWW)
.if !exists(${EXAMPLESDIR})
	@${MKDIR} ${EXAMPLESDIR}
.endif
	@${CP} -R ${WRKDIR}/squid-like-www-en ${EXAMPLESDIR}
.endif

	@${CAT} ${PKGMESSAGE}

.include <bsd.port.post.mk>
OpenPOWER on IntegriCloud