aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils/cfengine34/Makefile
blob: 382472dade3fe127db9536efac63f8c425ffb0fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94

# Date created:     February 2, 2009
# Whom:         jrhett@netconsonance.com
#
# $FreeBSD$
#

PORTNAME=   cfengine
PORTVERSION=    3.4.0
PORTREVISION=   1
CATEGORIES= sysutils
MASTER_SITES=   http://cfengine.com/source-code/download?file=

MAINTAINER= cy@FreeBSD.org
#       gjb@FreeBSD.org is also committer for this port
COMMENT=    A systems administration tool for networks

LATEST_LINK=    cfengine34
FETCH_BEFORE_ARGS=  -o ${DISTDIR}/${DISTFILES}

CONFLICTS=  cfengine-2* cfengine-3.[23]* cfengine-devel-*

USE_RC_SUBR=    cf-execd cf-serverd

USE_LDCONFIG=   yes
USE_OPENSSL=    yes
GNU_CONFIGURE=  yes
USE_GMAKE=  yes
# EXAMPLESDIR=  ${PREFIX}/share/examples/cfengine3
DOCSDIR=    ${PREFIX}/share/doc/cfengine
CONFIGURE_ARGS= --docdir=${DOCSDIR} \
        --htmldir=${DOCSDIR}/html \
        --libexecdir=${PREFIX}/libexec \
        --libdir=${PREFIX}/libexec \
        --mandir=${PREFIX}/man \
        --with-workdir=/var/cfengine \
        --with-pcre=${LOCALBASE} \
        --enable-fhs

LIB_DEPENDS+=   pcre.3:${PORTSDIR}/devel/pcre

OPTIONS=    TOKYOCABINET    "Enable TokyoCabinet support"       on \
        QDBM    "Enable QDBM support"               off \
        PGSQL   "Enable PostgreSQL connector"           off \
        MYSQL   "Enable MySQL connector"            off \
        LIBVIRT "Enable libvirt compatibility"          off

.include <bsd.port.pre.mk>

.if defined(WITH_TOKYOCABINET) && defined(WITH_QDBM)
BROKEN=     TOKYOCABINET and QDBM are mutuallly exclusive
.endif

.if !defined(WITH_TOKYOCABINET) && !defined(WITH_QDBM)
BROKEN=     TOKYOCABINET or QDBM must be defined
.endif

.if defined(WITH_TOKYOCABINET)
CONFIGURE_ARGS+=    --with-tokyocabinet=${LOCALBASE}
LIB_DEPENDS+=   tokyocabinet.9:${PORTSDIR}/databases/tokyocabinet
.endif

.if defined(WITH_QDBM)
CONFIGURE_ARGS+=    --with-qdbm=${LOCALBASE}
LIB_DEPENDS+=   qdbm.14:${PORTSDIR}/databases/qdbm
.endif

.if defined(WITH_PGSQL)
USE_PGSQL=      yes
CONFIGURE_ARGS+=    --with-postgresql=${LOCALBASE}
LIB_DEPENDS+=       pq:${PORTSDIR}/databases/postgresql${PGSQL_VER}-client
.endif

.if defined(WITH_MYSQL)
USE_MYSQL=      yes
CONFIGURE_ARGS+=    --with-mysql=${LOCALBASE}
LIB_DEPENDS+=       mysqlclient:${PORTSDIR}/${_MYSQL_CLIENT}
LDFLAGS+=       -L${LOCALBASE}/lib/mysql
.endif

.if defined(WITH_LIBVIRT)
CONFIGURE_ARGS+=    --with-libvirt=${LOCALBASE}
LIB_DEPENDS+=       virt:${PORTSDIR}/devel/libvirt
.endif

MAN8=   cf-agent.8  cf-key.8    cf-monitord.8   \
    cf-report.8 cf-serverd.8    cf-execd.8  \
    cf-promises.8   cf-runagent.8

post-patch:
        @${REINPLACE_CMD} -e '/^htmldir/s!=.*!= @htmldir@!'\
                  ${WRKSRC}/docs/Makefile.in

.include <bsd.port.post.mk>