mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
54a0b86543
in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run.
47 lines
1.1 KiB
Makefile
47 lines
1.1 KiB
Makefile
# New ports collection makefile for: privoxy+ipv6
|
|
# Date created: 17 June 2003
|
|
# Whom: Lars Eggert
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= privoxy+ipv6
|
|
PORTVERSION= 20030523
|
|
PORTREVISION= 2
|
|
CATEGORIES= www ipv6
|
|
MASTER_SITES= ftp://ftp.deepspace6.net/pub/ds6/sources/privoxy/
|
|
DISTNAME= privoxy_CVS_${PORTVERSION}_ipv6_5
|
|
|
|
MAINTAINER= lars.eggert@gmx.net
|
|
COMMENT= Privoxy is a web proxy with advanced filtering capabilities
|
|
|
|
WRKSRC= ${WRKDIR}/privoxy
|
|
|
|
ETCDIR= ${PREFIX}/etc/privoxy
|
|
USER= nobody
|
|
GROUP= nobody
|
|
DOCSDIR= ${PREFIX}/share/doc/${PORTNAME:S/+ipv6//}
|
|
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
USE_AUTOTOOLS= autoheader:213
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --prefix=${PREFIX} \
|
|
--with-user=${USER} --with-group=${GROUP} \
|
|
--sysconfdir=${ETCDIR} --localstatedir=/var
|
|
|
|
MAKEFILE= GNUmakefile
|
|
|
|
MAN1= privoxy.1
|
|
|
|
post-install:
|
|
@for file in config user.action; do \
|
|
if [ ! -f ${ETCDIR}/$$file ]; then \
|
|
${CP} ${ETCDIR}/$$file.sample ${ETCDIR}/$$file; \
|
|
${CHOWN} ${USER}:${GROUP} ${ETCDIR}/$$file; \
|
|
${CHMOD} ug+rw ${ETCDIR}/$$file; \
|
|
fi; \
|
|
done
|
|
|
|
.include <bsd.port.mk>
|