blob: d24b6958bba9826862aaf9bd98d21074d92ebc21 (
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
|
# New ports collection makefile for: drizzle
# Date created: 2010-04-22
# Whom: Greg Larkin <glarkin@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= drizzle
PORTVERSION= 2010.05.1561
PORTREVISION= 3
CATEGORIES= databases
MASTER_SITES= http://launchpadlibrarian.net/49101349/ \
LOCAL/glarkin
MAINTAINER= glarkin@FreeBSD.org
COMMENT= A database optimized for Cloud and Net applications
USE_GCC= 4.2+
USE_PERL5= 5.6.0+
USE_PYTHON= yes
GNU_CONFIGURE= yes
USE_GMAKE= yes
USE_LDCONFIG= ${PREFIX}/lib/drizzle
USE_ICONV= yes
.if defined(MAINTAINER_MODE)
UID_FILES+= ../../UIDs
GID_FILES+= ../../GIDs
.endif
USERS= drizzle
GROUPS= drizzle
# Replace token in the rc.d script
SUB_LIST+= USERS=${USERS}
OPTIONS= DOCS "Build documentation with doxygen (very slow)" Off
BUILD_DEPENDS+= libdrizzle>=0:${PORTSDIR}/databases/libdrizzle \
e2fsprogs-libuuid>=0:${PORTSDIR}/misc/e2fsprogs-libuuid \
protobuf>=2.1.0:${PORTSDIR}/devel/protobuf \
boost-libs>=0:${PORTSDIR}/devel/boost-libs \
bison>=0:${PORTSDIR}/devel/bison \
gearmand>=0:${PORTSDIR}/devel/gearmand \
libmemcached>=0:${PORTSDIR}/databases/libmemcached \
libevent>=0:${PORTSDIR}/devel/libevent \
curl>=0:${PORTSDIR}/ftp/curl \
libgcrypt>=0:${PORTSDIR}/security/libgcrypt \
pcre>=0:${PORTSDIR}/devel/pcre
MAN1= drizzle.1 \
drizzledump.1 \
drizzleimport.1 \
drizzleslap.1
MAN8= drizzled.8
USE_RC_SUBR= drizzle-server
.include <bsd.port.pre.mk>
.if ${ARCH} == "i386"
CONFIGURE_ARGS+=--disable-64bit
.endif
.if defined(WITHOUT_NLS)
CONFIGURE_ARGS+=--disable-nls
PLIST_SUB+= NLS="@comment "
.else
USE_GETTEXT= yes
PLIST_SUB+= NLS=""
.endif
.if !defined(NOPORTDOCS)
.if defined(WITH_DOCS)
BUILD_DEPENDS+= doxygen>=0:${PORTSDIR}/devel/doxygen \
${LOCALBASE}/bin/dot:${PORTSDIR}/graphics/graphviz
ALL_TARGET= all doxygen
PLIST_SUB+= PORTDOCS=""
post-install::
@${INSTALL} -d ${DOCSDIR}
@cd ${WRKSRC}/docs && ${COPYTREE_SHARE} . ${DOCSDIR}
.else
PLIST_SUB+= PORTDOCS="@comment "
.endif
.endif
.include <bsd.port.post.mk>
|