f935a609c5
supports them. This is determined by running ``configure --help'' in do-configure target and set the shell variable _LATE_CONFIGURE_ARGS which is then passed to CONFIGURE_ARGS. - Remove --mandir and --infodir in ports' Makefile where applicable Few ports use REINPLACE_CMD to achieve the same effect, remove them too. - Correct some manual pages location from PREFIX/man to MANPREFIX/man - Define INFO_PATH where necessary - Document that .info files are installed in a subdirectory relative to PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and subdirectory detection. PR: ports/111470 Approved by: portmgr Discussed with: stas (Mk/*), gerald (info related stuffs) Tested by: pointyhat exp run
46 lines
1.2 KiB
Makefile
46 lines
1.2 KiB
Makefile
# New ports collection makefile for: cfengine
|
|
# Date created: March 16, 1998
|
|
# Whom: jseger@FreeBSD.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= cfengine
|
|
PORTVERSION= 2.2.1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ftp://ftp.iu.hio.no/pub/cfengine/ \
|
|
${MASTER_SITE_GNU}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= sergei@FreeBSD.org
|
|
COMMENT= A systems administration tool for networks
|
|
|
|
USE_RC_SUBR= cfexecd cfservd
|
|
|
|
USE_BDB?= 44
|
|
USE_OPENSSL= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
CONFIGURE_ARGS= --with-docs \
|
|
--docdir=${DOCSDIR}
|
|
CONFIGURE_ENV+= PTHREAD_CFLAGS=${PTHREAD_CFLAGS} PTHREAD_LIBS=${PTHREAD_LIBS} \
|
|
BERKELEY_DB_CFLAGS=-I${BDB_INCLUDE_DIR} \
|
|
BERKELEY_DB_LDFLAGS=-L${BDB_LIB_DIR} \
|
|
BERKELEY_DB_LIB=-l${BDB_LIB_NAME}
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
INFO= cfengine-Anomalies cfengine-Reference cfengine-Tutorial
|
|
.endif
|
|
|
|
MAN8= cfagent.8 cfengine.8 cfenvd.8 cfenvgraph.8 cfetoolcheck.8 \
|
|
cfetoolcreate.8 cfetooldump.8 cfetoolgraph.8 cfetoolimport.8 \
|
|
cfetoolinfo.8 cfetoolupdate.8 cfexecd.8 cfkey.8 \
|
|
cfrun.8 cfservd.8 cfshow.8
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e s,-pthread,${PTHREAD_CFLAGS},g \
|
|
-e s,-lpthread,${PTHREAD_LIBS},g \
|
|
-e s,lpthread,${PTHREAD_LIBS},g \
|
|
${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|