freebsd-ports/www/squirm/Makefile
Clement Laforet 30de5bbab5 - Change runtime dependency from www/squid24 (which is about to be retired) to
www/squid. Since the squid redirector interface should not have changed from
  squid 2.4 to 2.5, squirm should work with squid 2.5 as well (testers welcome).
- Reinstate original MASTER_SITE: while the content on that site only refers to
  squirm 1.0-BetaB, squirm-1.23 is actually fetchable from there.
- Bump PORTREVISION.

PR:             60991
Submitted by:   Thomas-Martin Seck <tmseck@netcologne.de>
Approved by:    erwin (mentor) (implicitly)
2004-01-06 21:55:47 +00:00

51 lines
1.5 KiB
Makefile

# New ports collection makefile for: squirm
# Date created: 24 May 1999
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= squirm
PORTVERSION= 1.23
PORTREVISION= 2
CATEGORIES= www
MASTER_SITES= http://squirm.foote.com.au/
EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.org
COMMENT= A fast & configurable redirector for the Squid
RUN_DEPENDS= ${LOCALBASE}/sbin/squid:${PORTSDIR}/www/squid
NO_PACKAGE= must set SQUID_UID and SQUID_GID before building
MAKE_ENV+= SQUID_UID=${SQUID_UID} SQUID_GID=${SQUID_GID}
PLIST_SUB= SQUID_UID=${SQUID_UID} SQUID_GID=${SQUID_GID}
pre-install:
.if defined(SQUID_UID) && defined(SQUID_GID)
.if (${SQUID_UID} == "nobody") || (${SQUID_GID} == "nogroup")
@${ECHO_MSG}
@${ECHO_MSG} 'WARNING! You are going to install squirm files with either nobody owner or'
@${ECHO_MSG} 'nogroup group, which may be insecure.'
@${ECHO_MSG}
.endif
.else
@${ECHO_MSG}
@${ECHO_MSG} 'You should set SQUID_UID and SQUID_GID variables to your squid effective'
@${ECHO_MSG} 'user/group. For example: SQUID_UID=squid SQUID_GID=squid.'
@${ECHO_MSG}
@${FALSE}
.endif
post-install:
@${ECHO_MSG}
@${ECHO_MSG} ' +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++'
@${ECHO_MSG} ' You have to manually add "redirect_program ${PREFIX}/bin/squirm"'
@${ECHO_MSG} ' into your squid.conf file.'
@${ECHO_MSG} ' For help on configuring squirm try http://www.senet.com.au/squirm/'
@${ECHO_MSG} ' +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++'
@${ECHO_MSG}
.include <bsd.port.mk>