mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
3f651573ad
Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
36 lines
951 B
Makefile
36 lines
951 B
Makefile
# New ports collection makefile for: fwbuilder
|
|
# Date Created: 3 Feb 2001
|
|
# Whom: Roman Shterenzon <roman@xpert.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= fwbuilder
|
|
PORTVERSION= 1.1.2
|
|
PORTREVISION= 2
|
|
CATEGORIES= security
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}/fwbuilder/
|
|
MASTER_SITE_SUBDIR= fwbuilder
|
|
|
|
MAINTAINER= vadim@fwbuilder.org
|
|
COMMENT= Firewall Builder GUI and policy compilers
|
|
|
|
LIB_DEPENDS= gtkmm.2:${PORTSDIR}/x11-toolkits/gtk-- \
|
|
gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf \
|
|
fwbuilder.5:${PORTSDIR}/security/libfwbuilder
|
|
|
|
USE_GNOME= glib12 gtk12
|
|
USE_GMAKE= yes
|
|
USE_LIBTOOL_VER=13
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
CONFIGURE_ARGS+= --with-docdir=${DOCSDIR}
|
|
INSTALLS_SHLIB= yes
|
|
PLIST_SUB+= PORTVERSION="${PORTVERSION}"
|
|
|
|
MAN1= fwbuilder.1 fwblookup.1 fwbedit.1 fwb_ipt.1 fwb_ipf.1 fwb_ipfw.1 fwb_pf.1 \
|
|
fwb_install.1 fwb_compile_all.1
|
|
|
|
.include <bsd.port.mk>
|