2001-04-07 07:54:50 +02:00
|
|
|
# New ports collection Makefile for: proxy-suite
|
|
|
|
# Date created: 06 April 2001
|
|
|
|
# Whom: Thomas Quinot <thomas@cuivre.fr.eu.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= proxy-suite
|
2005-10-22 23:32:48 +02:00
|
|
|
PORTVERSION= 1.9.2.3
|
2001-04-07 07:54:50 +02:00
|
|
|
CATEGORIES= net
|
2001-07-08 20:47:39 +02:00
|
|
|
MASTER_SITES= ftp://ftp.suse.com/pub/projects/proxy-suite/src/ \
|
|
|
|
ftp://ftp.gwdg.de/pub/linux/suse/ftp.suse.com/projects/proxy-suite/src/ \
|
|
|
|
ftp://ftp.funet.fi/pub/mirrors/ftp.gwdg.de/pub/linux/suse/ftp.suse.com/projects/proxy-suite/src/
|
2001-04-07 07:54:50 +02:00
|
|
|
|
|
|
|
MAINTAINER= thomas@cuivre.fr.eu.org
|
2003-02-21 14:28:59 +01:00
|
|
|
COMMENT= The SuSE Proxy-Suite, a set of programs to enhance firewall security
|
2001-04-07 07:54:50 +02:00
|
|
|
|
2005-11-15 07:52:12 +01:00
|
|
|
USE_AUTOTOOLS= autoconf:253
|
2001-04-07 07:54:50 +02:00
|
|
|
USE_GMAKE= yes
|
2004-04-29 10:22:24 +02:00
|
|
|
USE_BZIP2= yes
|
2001-04-07 07:54:50 +02:00
|
|
|
|
2001-10-19 17:52:02 +02:00
|
|
|
#
|
|
|
|
# basic configure args
|
|
|
|
#
|
2004-04-29 10:22:24 +02:00
|
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include"
|
2001-10-19 17:52:02 +02:00
|
|
|
CONFIGURE_ARGS= --prefix=${PREFIX} --with-libwrap=/usr/lib --with-regex \
|
|
|
|
--localstatedir=/var/run \
|
2002-01-22 07:03:04 +01:00
|
|
|
--enable-warnings --enable-so-linger \
|
2001-10-19 17:52:02 +02:00
|
|
|
--disable-proc-mods
|
|
|
|
|
2002-01-22 07:03:04 +01:00
|
|
|
#
|
|
|
|
# OPTIONAL: RFC1579 support -- not complete yet.
|
|
|
|
#
|
|
|
|
.if defined(WITH_RFC1579)
|
2004-03-23 09:56:57 +01:00
|
|
|
CONFIGURE_ARGS+= --enable-rfc1579
|
2002-01-22 07:03:04 +01:00
|
|
|
.endif
|
|
|
|
|
2001-10-19 17:52:02 +02:00
|
|
|
#
|
2004-04-29 10:22:24 +02:00
|
|
|
# OPTIONAL: include ldap-support
|
2001-10-19 17:52:02 +02:00
|
|
|
#
|
|
|
|
.if defined(WITH_LDAP)
|
2004-04-29 10:22:24 +02:00
|
|
|
USE_OPENLDAP= yes
|
2003-08-14 17:17:19 +02:00
|
|
|
CONFIGURE_ARGS+= --with-libldap=${LOCALBASE}/lib
|
2001-10-19 17:52:02 +02:00
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --without-libldap
|
|
|
|
.endif
|
|
|
|
|
|
|
|
#
|
|
|
|
# OPTIONAL: re-build the sgml documentation (postscript, html)
|
|
|
|
# unfortunatenly this docu it is not up to date :-((
|
|
|
|
# reading of the manual pages and HOWTO's makes more sense...
|
|
|
|
#
|
|
|
|
.if !defined(WITH_SGMLDOC)
|
|
|
|
ALL_TARGET= -C ftp-proxy
|
|
|
|
.endif
|
|
|
|
|
2001-04-07 07:54:50 +02:00
|
|
|
MAN8= ftp-proxy.8
|
|
|
|
MAN5= ftp-proxy.conf.5
|
|
|
|
|
2004-03-18 13:20:43 +01:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
2001-04-07 07:54:50 +02:00
|
|
|
pre-install:
|
2003-09-24 11:37:11 +02:00
|
|
|
@${STRIP_CMD} ${WRKSRC}/ftp-proxy/ftp-proxy
|
2001-04-07 07:54:50 +02:00
|
|
|
|
2002-01-22 07:03:04 +01:00
|
|
|
post-install:
|
|
|
|
@${SED} 's|PREFIX|${PREFIX}|' ${PKGMESSAGE}
|
|
|
|
|
2004-03-18 13:20:43 +01:00
|
|
|
.include <bsd.port.post.mk>
|