44 lines
1.3 KiB
Makefile
44 lines
1.3 KiB
Makefile
# $OpenBSD: Makefile,v 1.10 2002/10/28 01:38:46 naddy Exp $
|
|
|
|
COMMENT= "set of programs to enhance firewall security"
|
|
|
|
DISTNAME= proxy-suite-1.7
|
|
HOMEPAGE= http://proxy-suite.suse.de
|
|
CATEGORIES= net security
|
|
|
|
MAINTAINER= Camiel Dobbelaar <cd@sentia.nl>
|
|
|
|
MASTER_SITES= \
|
|
ftp://ftp.suse.com/pub/projects/proxy-suite/src/ \
|
|
ftp://ftp.crc.ca/pub/systems/linux/suse/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/
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
USE_GMAKE= Yes
|
|
CONFIGURE_STYLE=gnu dest
|
|
CONFIGURE_ARGS= --with-libwrap=/usr/lib/
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
# Take care with sysconfdir:
|
|
# - the port will install configuration in fake/etc/ (will be discarded)
|
|
# - post-install copies it from WRKSRC to PREFIX/share/proxy-suite/
|
|
# - pkg/INSTALL installs them in /etc/proxy-suite/
|
|
# (which is where ftp-proxy defaults to, this discrepance has been
|
|
# mailed to the authors)
|
|
|
|
pre-install:
|
|
@strip ${WRKSRC}/ftp-proxy/ftp-proxy
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/proxy-suite
|
|
${INSTALL_DATA} ${WRKSRC}/ftp-proxy/ftp-proxy.conf.sample \
|
|
${PREFIX}/share/proxy-suite
|
|
|
|
.include <bsd.port.mk>
|