mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
6f6fbe4bdf
- 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
31 lines
680 B
Makefile
31 lines
680 B
Makefile
# New ports collection makefile for: ffproxy
|
|
# Date created: Jul 20 2003
|
|
# Whom: Kirill Ponomarew <ponomarew@oberon.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ffproxy
|
|
PORTVERSION= 1.6
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://${PORTNAME}.sourceforge.net/${PORTNAME}/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Filtering HTTP proxy server
|
|
|
|
BROKEN= does not fetch
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib"
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
|
|
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>
|