aboutsummaryrefslogtreecommitdiffstats
path: root/www/rejik/Makefile
blob: 969bd8521186610760e14990450ab8181e260948 (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
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
# New ports collection makefile for:    rejik
# Date created:             29 October 2005
# Whom:                 Elisey Savateev <b3k@mail.ru>
#
# $FreeBSD$
#

PORTNAME=   rejik
PORTVERSION=    3.2.1
PORTREVISION=   1
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= b3k@mail.ru
COMMENT=    A squid redirector used for blocking unwanted content

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

OPTIONS=    BAN "With banlists" on \
        DBL "With DBL scripts"  off \
        WWW "With error pages"  on \

.include <bsd.port.pre.mk>

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

.if !defined(WITHOUT_BAN)
DISTFILES+= banlists-2.x.x.tgz
PLIST_SUB+= BAN=""
.else
PLIST_SUB+= BAN="@comment "
.endif

.if !defined(WITHOUT_WWW)
DISTFILES+= squid-like-www-en.tgz
PLIST_SUB+= WWW=""
.else
PLIST_SUB+= WWW="@comment "
.endif

.if defined(WITH_DBL)
DISTFILES+= dbl-2.0.tgz
USE_PERL5_RUN=  yes
RUN_DEPENDS+=   ${SITE_PERL}/mach/Text/Iconv.pm:${PORTSDIR}/converters/p5-Text-Iconv \
        ${SITE_PERL}/mach/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser \
        wget:${PORTSDIR}/ftp/wget
PLIST_SUB+= DBL=""
.else
PLIST_SUB+= DBL="@comment "
.endif

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>