- USE_AUTO* -> USE_AUTO*_VER=* where required - USE_AUTO* / *_DEPENDS=.*auto*:*/devel/auto* -> GNU_CONFIGURE where OK - Other minor changes to fix things These changes should be no-ops with the current bsd.port.mk, but will assist in preparing for the next generation of USE_AUTO*. Submitted by: bento 4-exp USE_AUTO* cleanups http://people.FreeBSD.org/~will/4-exp/ http://bento.FreeBSD.org/errorlogs/4-exp-latest/
40 lines
813 B
Makefile
40 lines
813 B
Makefile
# New ports collection makefile for: cfengine
|
|
# Date created: March 16, 1998
|
|
# Whom: jseger@FreeBSD.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= cfengine
|
|
PORTVERSION= 1.6.3
|
|
PORTREVISION= 2
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ftp://ftp.iu.hioslo.no/pub/cfengine/ \
|
|
${MASTER_SITE_GNU}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= gordont@gnf.org
|
|
|
|
LIB_DEPENDS= db3:${PORTSDIR}/databases/db3
|
|
.if defined(PACKAGE_BUILDING) && !exists(/usr/include/tcpd.h)
|
|
LIB_DEPENDS+= wrap.7:${PORTSDIR}/security/tcp_wrapper
|
|
.endif
|
|
|
|
USE_GMAKE= yes
|
|
USE_AUTOMAKE_VER=14
|
|
|
|
MAN8= cfengine.8
|
|
|
|
pre-configure:
|
|
@cd ${WRKSRC} && ${ACLOCAL} && ${AUTOHEADER}
|
|
|
|
post-install:
|
|
.if defined(NOPORTDOCS)
|
|
@${RM} -rf ${PREFIX}/share/doc/${PORTNAME}
|
|
.endif
|
|
.for binary in cfd cfengine cfrun cfkey
|
|
@strip ${PREFIX}/sbin/${binary}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|