mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
c3d8037aeb
after 5.4-RELEASE.
49 lines
1.2 KiB
Makefile
49 lines
1.2 KiB
Makefile
# New ports collection makefile for: cfengine2
|
|
# Date created: 2002-07-29
|
|
# Whom: fanf@FreeBSD.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= cfengine
|
|
PORTVERSION= 2.1.13
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ftp://ftp.iu.hio.no/pub/cfengine/ \
|
|
${MASTER_SITE_GNU}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= paul@aps.org
|
|
COMMENT= A systems administration tool for networks
|
|
|
|
USE_OPENSSL= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
CONFIGURE_ARGS= --with-berkeleydb=${LOCALBASE} --with-docs
|
|
USE_REINPLACE= yes
|
|
|
|
INFO= cfengine-Anomalies cfengine-Reference cfengine-Tutorial
|
|
MAN8= cfengine.8 cfagent.8 cfenvd.8 cfenvgraph.8 cfexecd.8 cfkey.8 \
|
|
cfrun.8 cfservd.8 cfshow.8
|
|
|
|
WITH_BDB_VER?= 42
|
|
|
|
.if ${WITH_BDB_VER} == 42
|
|
LIB_DEPENDS+= db-4.2.2:${PORTSDIR}/databases/db42
|
|
CPPFLAGS+= -I${LOCALBASE}/include/db42
|
|
LDFLAGS+= -L${LOCALBASE}/lib/db42 -ldb-4.2
|
|
.elif ${WITH_BDB_VER} == 41
|
|
LIB_DEPENDS+= db41.1:${PORTSDIR}/databases/db41
|
|
CPPFLAGS+= -I${LOCALBASE}/include/db41
|
|
LDFLAGS+= -L${LOCALBASE}/lib/db41 -ldb41
|
|
.else
|
|
.error WITH_BDB_VER must be 41 or 42
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 500000
|
|
BROKEN= "Does not compile on FreeBSD 4.x"
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|