mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
cdedada0e6
- Fix overwriting of Update, Update.Fast and dbl_expand files while upgrading (with WITH_DBL=yes) PR: 95300 Submitted by: Elisey O. Savateev (maintainer) Reported by: pointyhat via kris [1]
115 lines
3.4 KiB
Makefile
115 lines
3.4 KiB
Makefile
# 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>
|