head	1.18;
access;
symbols
	RELEASE_8_3_0:1.17
	RELEASE_9_0_0:1.17
	RELEASE_7_4_0:1.13
	RELEASE_8_2_0:1.13
	RELEASE_6_EOL:1.13
	RELEASE_8_1_0:1.13
	RELEASE_7_3_0:1.13
	RELEASE_8_0_0:1.13
	RELEASE_7_2_0:1.13
	RELEASE_7_1_0:1.13
	RELEASE_6_4_0:1.13
	RELEASE_5_EOL:1.12
	RELEASE_7_0_0:1.12
	RELEASE_6_3_0:1.12
	PRE_XORG_7:1.12
	RELEASE_4_EOL:1.12
	RELEASE_6_2_0:1.12
	RELEASE_6_1_0:1.12
	RELEASE_5_5_0:1.12
	RELEASE_6_0_0:1.12
	RELEASE_5_4_0:1.9
	RELEASE_4_11_0:1.8
	RELEASE_5_3_0:1.8
	RELEASE_4_10_0:1.8
	RELEASE_5_2_1:1.6
	RELEASE_5_2_0:1.6
	RELEASE_4_9_0:1.6;
locks; strict;
comment	@# @;


1.18
date	2012.11.17.06.02.33;	author svnexp;	state Exp;
branches;
next	1.17;

1.17
date	2011.10.18.14.23.40;	author ehaupt;	state Exp;
branches;
next	1.16;

1.16
date	2011.09.23.22.26.00;	author amdmi3;	state Exp;
branches;
next	1.15;

1.15
date	2011.08.02.19.24.30;	author bapt;	state Exp;
branches;
next	1.14;

1.14
date	2011.03.11.23.46.32;	author bapt;	state Exp;
branches;
next	1.13;

1.13
date	2008.08.21.06.18.35;	author rafan;	state Exp;
branches;
next	1.12;

1.12
date	2005.04.21.17.44.08;	author krion;	state Exp;
branches;
next	1.11;

1.11
date	2005.04.12.03.26.43;	author obrien;	state Exp;
branches;
next	1.10;

1.10
date	2005.04.11.08.04.19;	author obrien;	state Exp;
branches;
next	1.9;

1.9
date	2005.01.16.21.26.48;	author krion;	state Exp;
branches;
next	1.8;

1.8
date	2004.04.16.14.42.38;	author krion;	state Exp;
branches;
next	1.7;

1.7
date	2004.01.30.14.05.14;	author krion;	state Exp;
branches;
next	1.6;

1.6
date	2003.08.18.14.02.09;	author krion;	state Exp;
branches;
next	1.5;

1.5
date	2003.08.10.16.55.12;	author krion;	state Exp;
branches;
next	1.4;

1.4
date	2003.08.09.19.53.40;	author krion;	state Exp;
branches;
next	1.3;

1.3
date	2003.08.02.18.07.29;	author krion;	state Exp;
branches;
next	1.2;

1.2
date	2003.08.02.14.11.47;	author krion;	state Exp;
branches;
next	1.1;

1.1
date	2003.07.21.14.28.03;	author krion;	state Exp;
branches;
next	;


desc
@@


1.18
log
@Switch exporter over
@
text
@# New ports collection makefile for: 	ffproxy
# Date created:				Jul 20 2003
# Whom:                			Kirill Ponomarew <ponomarew@@oberon.net>
#
# $FreeBSD: head/www/ffproxy/Makefile 300897 2012-07-14 14:29:18Z beat $
#

PORTNAME=	ffproxy
PORTVERSION=	1.6
CATEGORIES=	www
MASTER_SITES=	http://${PORTNAME}.sourceforge.net/${PORTNAME}/ \
		http://www.sourcefiles.org/System/Daemons/Proxy/ \
		http://www.nevm.de/${PORTNAME}/ \
		http://faith.eu.org/${PORTNAME}/

MAINTAINER=	ports@@FreeBSD.org
COMMENT=	Filtering HTTP proxy server

LICENSE=	GPLv2

GNU_CONFIGURE=	yes
MAKE_JOBS_SAFE=	yes

MAN5=	${PORTNAME}.conf.5
MAN7=	${PORTNAME}.quick.7
MAN8=	${PORTNAME}.8

post-install:
	@@[ -f ${PREFIX}/etc/ffproxy.conf ] || \
	${CP} ${PREFIX}/etc/ffproxy.conf.sample ${PREFIX}/etc/ffproxy.conf

.include <bsd.port.mk>
@


1.17
log
@- Fix MASTER_SITES
- Add LICENSE
- Add MAKE_JOBS_SAFE

PR:		161642
Submitted by:	KATO Tsuguru <tkato432@@yahoo.com>
@
text
@d5 1
a5 1
# $FreeBSD$
@


1.16
log
@- Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead

PR:		157936
Submitted by:	myself
Exp-runs by:	pav
Approved by:	pav
@
text
@d11 4
a14 1
MASTER_SITES=	http://${PORTNAME}.sourceforge.net/${PORTNAME}/
d19 1
a19 1
BROKEN=	does not fetch
d22 1
a22 2
CONFIGURE_ENV=	LIBS="-L${LOCALBASE}/lib"
CPPFLAGS+=	-I${LOCALBASE}/include
@


1.15
log
@Mark BROKEN: Does not fetch
@
text
@d19 2
a20 2
CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include" \
		LIBS="-L${LOCALBASE}/lib"
@


1.14
log
@point to the new SF home
while here remove MD5

thanks eadler
@
text
@d16 2
@


1.13
log
@Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.
Specifically, newer autoconf (> 2.13) has different semantic of the
configure target. In short, one should use --build=CONFIGURE_TARGET
instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning
and the old semantic may be removed in later autoconf releases.

To workaround this issue, many ports hack the CONFIGURE_TARGET variable
so that it contains the ``--build='' prefix.

To solve this issue, under the fact that some ports still have
configure script generated by the old autoconf, we use runtime detection
in the do-configure target so that the proper argument can be used.

Changes to Mk/*:
 - Add runtime detection magic in bsd.port.mk
 - Remove CONFIGURE_TARGET hack in various bsd.*.mk
 - USE_GNOME=gnometarget is now an no-op

Changes to individual ports, other than removing the CONFIGURE_TARGET hack:

= pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables)
  - comms/gnuradio
  - science/abinit
  - science/elmer-fem
  - science/elmer-matc
  - science/elmer-meshgen2d
  - science/elmerfront
  - science/elmerpost

= use x86_64 as ARCH
  - devel/g-wrap

= other changes
  - print/magicfilter
    GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf

Total # of ports modified:  1,027
Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes)

PR:		126524 (obsoletes 52917)
Submitted by:	rafan
Tested on:	two pointyhat 7-amd64 exp runs (by pav)
Approved by:	portmgr (pav)
@
text
@d11 1
a11 1
MASTER_SITES=	http://faith.eu.org/${PORTNAME}/
@


1.12
log
@Drop maintership.
@
text
@a16 1
CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
@


1.11
log
@At Kris's request, back out the MACHINE_ARCH spelling correction until
after 5.4-RELEASE.
@
text
@d13 1
a13 1
MAINTAINER=	krion@@FreeBSD.org
@


1.10
log
@Assist getting more ports working on AMD64 by obeying the
Ports Collection documentation and use 'ARCH' rather than 'MACHINE_ARCH'.
@
text
@d17 1
a17 1
CONFIGURE_TARGET=--build=${ARCH}-portbld-freebsd${OSREL}
@


1.9
log
@Update to 1.6
@
text
@d17 1
a17 1
CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
@


1.8
log
@- Remove USE_SIZE knob
@
text
@d9 1
a9 1
PORTVERSION=	1.5.1
d16 4
a19 1
USE_REINPLACE=	yes
d25 3
a27 30
post-patch:
	${REINPLACE_CMD} -e \
		's|/etc|${PREFIX}/etc|g ; \
		s|/usr/local|${PREFIX}|g ; \
		s|^CFLAGS =|CFLAGS +=|g ; \
		s|/var/ffproxy|${DOCSDIR}|g' \
			${WRKSRC}/Makefile
	${REINPLACE_CMD} -e \
		's|/etc|${PREFIX}/etc|g' \
			${WRKSRC}/${PORTNAME}.8 \
			${WRKSRC}/${PORTNAME}.conf.5

do-install:
	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
	${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 \
		${PREFIX}/man/man8
	${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.conf.5 \
		${PREFIX}/man/man5
	${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.quick.7 \
		${PREFIX}/man/man7
	${INSTALL_DATA} ${WRKSRC}/sample.config \
		${PREFIX}/etc/ffproxy.conf.sample
.if !defined(NOPORTDOCS)
	${MKDIR} ${DOCSDIR}
	${MKDIR} ${DOCSDIR}/db
	${MKDIR} ${DOCSDIR}/html
	${INSTALL_DATA} ${WRKSRC}/html/* ${DOCSDIR}/html
	${INSTALL_DATA} ${WRKSRC}/db/* ${DOCSDIR}/db
	${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
@


1.7
log
@- SIZEify
@
text
@a15 1
USE_SIZE=	yes
@


1.6
log
@- Update to 1.5.1
@
text
@d16 1
@


1.5
log
@Add 2 new manpages
Bump PORTREVISION

Pointed by:	Niklas Olmes <niklas@@noxa.de>
@
text
@d9 1
a9 2
PORTVERSION=	1.5
PORTREVISION=	1
@


1.4
log
@Update to 1.5
@
text
@d10 1
d19 2
d32 2
a33 1
			${WRKSRC}/${PORTNAME}.8
d39 4
@


1.3
log
@Honor CFLAGS

Submitted by:	Jolan Luff
Approved by:	fjoe (mentor) (implicit)
@
text
@d9 1
a9 1
PORTVERSION=	1.4.1
@


1.2
log
@Update to 1.4.1

Approved by:	fjoe (mentor) (implicit)
@
text
@d24 1
@


1.1
log
@ffproxy is a filtering HTTP proxy server. It is able
to filter by host, URL, and header. Custom header entries
can be filtered and added. It can even drop its privileges
and optionally chroot() to some directory. Logging to
syslog() is supported, as is using another auxiliary proxy
server. Contacting IPv6 servers is supported and allows
transparent IPv6 over IPv4 browsing.

PR:		54669
Approved by:	fjoe (mentor)
@
text
@d9 1
a9 1
PORTVERSION=	1.4
d13 1
a13 1
MAINTAINER=	krion@@FreeBSD.org	
d16 2
d19 10
@

