2001-04-07 05:54:50 +00: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
|
2007-01-24 21:18:01 +00:00
|
|
|
PORTVERSION= 1.9.2.4
|
2007-09-30 04:47:36 +00:00
|
|
|
PORTREVISION= 1
|
2001-04-07 05:54:50 +00:00
|
|
|
CATEGORIES= net
|
2001-07-08 18:47:39 +00: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 05:54:50 +00:00
|
|
|
|
2007-03-15 04:19:34 +00:00
|
|
|
MAINTAINER= thomas@cuivre.fr.eu.org
|
2003-02-21 13:28:59 +00:00
|
|
|
COMMENT= The SuSE Proxy-Suite, a set of programs to enhance firewall security
|
2001-04-07 05:54:50 +00:00
|
|
|
|
2008-08-20 00:57:32 +00:00
|
|
|
USE_AUTOTOOLS= autoconf:262
|
2001-04-07 05:54:50 +00:00
|
|
|
USE_GMAKE= yes
|
2004-04-29 08:22:24 +00:00
|
|
|
USE_BZIP2= yes
|
2001-04-07 05:54:50 +00:00
|
|
|
|
2001-10-19 15:52:02 +00:00
|
|
|
#
|
|
|
|
# basic configure args
|
|
|
|
#
|
2004-04-29 08:22:24 +00:00
|
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include"
|
2001-10-19 15:52:02 +00:00
|
|
|
CONFIGURE_ARGS= --prefix=${PREFIX} --with-libwrap=/usr/lib --with-regex \
|
|
|
|
--localstatedir=/var/run \
|
2002-01-22 06:03:04 +00:00
|
|
|
--enable-warnings --enable-so-linger \
|
2001-10-19 15:52:02 +00:00
|
|
|
--disable-proc-mods
|
|
|
|
|
2002-01-22 06:03:04 +00:00
|
|
|
#
|
|
|
|
# OPTIONAL: RFC1579 support -- not complete yet.
|
|
|
|
#
|
|
|
|
.if defined(WITH_RFC1579)
|
2004-03-23 08:56:57 +00:00
|
|
|
CONFIGURE_ARGS+= --enable-rfc1579
|
2002-01-22 06:03:04 +00:00
|
|
|
.endif
|
|
|
|
|
2001-10-19 15:52:02 +00:00
|
|
|
#
|
2004-04-29 08:22:24 +00:00
|
|
|
# OPTIONAL: include ldap-support
|
2001-10-19 15:52:02 +00:00
|
|
|
#
|
|
|
|
.if defined(WITH_LDAP)
|
2004-04-29 08:22:24 +00:00
|
|
|
USE_OPENLDAP= yes
|
2003-08-14 15:17:19 +00:00
|
|
|
CONFIGURE_ARGS+= --with-libldap=${LOCALBASE}/lib
|
2001-10-19 15:52:02 +00: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 05:54:50 +00:00
|
|
|
MAN8= ftp-proxy.8
|
|
|
|
MAN5= ftp-proxy.conf.5
|
|
|
|
|
2004-03-18 12:20:43 +00:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
2001-04-07 05:54:50 +00:00
|
|
|
pre-install:
|
2003-09-24 09:37:11 +00:00
|
|
|
@${STRIP_CMD} ${WRKSRC}/ftp-proxy/ftp-proxy
|
2001-04-07 05:54:50 +00:00
|
|
|
|
2002-01-22 06:03:04 +00:00
|
|
|
post-install:
|
|
|
|
@${SED} 's|PREFIX|${PREFIX}|' ${PKGMESSAGE}
|
|
|
|
|
2004-03-18 12:20:43 +00:00
|
|
|
.include <bsd.port.post.mk>
|