aboutsummaryrefslogtreecommitdiffstats
path: root/devel/gearmand/Makefile
blob: 77a5a564c3dfd553e4bc1232499e96d171dc5d40 (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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
# Created by: Gea-Suan Lin <gslin@gslin.org>
# $FreeBSD$

PORTNAME=   gearmand
PORTVERSION=    1.0.6
CATEGORIES= devel
MASTER_SITES=   http://launchpad.net/gearmand/1.0/${PORTVERSION}/+download/

MAINTAINER= glarkin@FreeBSD.org
COMMENT=    Gearman C Server and Library

BUILD_DEPENDS=  boost-libs>=0:${PORTSDIR}/devel/boost-libs \
        libexecinfo>=0:${PORTSDIR}/devel/libexecinfo \
        ${PYTHON_PKGNAMEPREFIX}sphinx>=0:${PORTSDIR}/textproc/py-sphinx
LIB_DEPENDS=    event:${PORTSDIR}/devel/libevent \
        uuid:${PORTSDIR}/misc/e2fsprogs-libuuid \
        execinfo:${PORTSDIR}/devel/libexecinfo

CONFLICTS=  p5-Gearman-Server-1.* gearmand-1.1.*

.if defined(MAINTAINER_MODE) && ${MAINTAINER_MODE:Myes}
UID_FILES=  ../../UIDs
GID_FILES=  ../../GIDs
.if !exists(${UID_FILES}) || !exists(${GID_FILES})
.error ${UID_FILES} or ${GID_FILES} does not exist - please check
.endif
.endif

USERS=      gearmand
GROUPS=     gearmand

FETCH_ARGS= -pRr
USE_PERL5=  build
GNU_CONFIGURE=  yes
USES=       pathfix gmake perl5
USE_LDCONFIG=   yes
USE_PYTHON_BUILD=yes
USE_RC_SUBR=    gearmand
SUB_LIST+=  USERS=${USERS} GROUPS=${GROUPS}

CONFIGURE_ARGS+=--with-lib-prefix=${LOCALBASE} --with-boost=${LOCALBASE} \
        --localstatedir=/var/db/${PORTNAME} --enable-static
CPPFLAGS+=  -I${LOCALBASE}/include
LDFLAGS+=   -L${LOCALBASE}/lib -lexecinfo

OPTIONS_DEFINE= DRIZZLE MEMCACHED PGSQL SQLITE MYSQL HIREDIS TOKYOCAB
OPTIONS_DEFAULT=SQLITE

DRIZZLE_DESC=   Enable Drizzle support for persistent queue
MEMCACHED_DESC= Enable memcached support for persistent queue
MYSQL_DESC= Enable MySQL support for persistent queue
PGSQL_DESC= Enable PostgreSQL support for persistent queue
SQLITE_DESC=    Enable SQLite support for persistent queue
HIREDIS_DESC=   Enable Hiredis support for persistent queue
TOKYOCAB_DESC=  Enable Tokyo Cabinet support for persistent queue

MAN1=   gearadmin.1 \
    gearman.1
MAN3=   gearman_actions_t.3 \
    gearman_allocator_t.3 \
    gearman_argument_make.3 \
    gearman_argument_t.3 \
    gearman_bugreport.3 \
    gearman_client_add_options.3 \
    gearman_client_add_server.3 \
    gearman_client_add_servers.3 \
    gearman_client_add_task.3 \
    gearman_client_add_task_background.3 \
    gearman_client_add_task_high.3 \
    gearman_client_add_task_high_background.3 \
    gearman_client_add_task_low.3 \
    gearman_client_add_task_low_background.3 \
    gearman_client_add_task_status.3 \
    gearman_client_clear_fn.3 \
    gearman_client_clone.3 \
    gearman_client_context.3 \
    gearman_client_create.3 \
    gearman_client_do.3 \
    gearman_client_do_background.3 \
    gearman_client_do_high.3 \
    gearman_client_do_high_background.3 \
    gearman_client_do_job_handle.3 \
    gearman_client_do_low.3 \
    gearman_client_do_low_background.3 \
    gearman_client_do_status.3 \
    gearman_client_echo.3 \
    gearman_client_errno.3 \
    gearman_client_error.3 \
    gearman_client_free.3 \
    gearman_client_has_option.3 \
    gearman_client_job_status.3 \
    gearman_client_options.3 \
    gearman_client_options_t.3 \
    gearman_client_remove_options.3 \
    gearman_client_remove_servers.3 \
    gearman_client_run_tasks.3 \
    gearman_client_set_complete_fn.3 \
    gearman_client_set_context.3 \
    gearman_client_set_created_fn.3 \
    gearman_client_set_data_fn.3 \
    gearman_client_set_exception_fn.3 \
    gearman_client_set_fail_fn.3 \
    gearman_client_set_log_fn.3 \
    gearman_client_set_memory_allocators.3 \
    gearman_client_set_namespace.3 \
    gearman_client_set_options.3 \
    gearman_client_set_status_fn.3 \
    gearman_client_set_task_context_free_fn.3 \
    gearman_client_set_timeout.3 \
    gearman_client_set_warning_fn.3 \
    gearman_client_set_workload_fn.3 \
    gearman_client_set_workload_free_fn.3 \
    gearman_client_set_workload_malloc_fn.3 \
    gearman_client_st.3 \
    gearman_client_task_free_all.3 \
    gearman_client_timeout.3 \
    gearman_client_wait.3 \
    gearman_continue.3 \
    gearman_execute.3 \
    gearman_failed.3 \
    gearman_job_free.3 \
    gearman_job_free_all.3 \
    gearman_job_function_name.3 \
    gearman_job_handle.3 \
    gearman_job_handle_t.3 \
    gearman_job_send_complete.3 \
    gearman_job_send_data.3 \
    gearman_job_send_exception.3 \
    gearman_job_send_fail.3 \
    gearman_job_send_status.3 \
    gearman_job_send_warning.3 \
    gearman_job_st.3 \
    gearman_job_take_workload.3 \
    gearman_job_unique.3 \
    gearman_job_workload.3 \
    gearman_job_workload_size.3 \
    gearman_log_fn.3 \
    gearman_parse_servers.3 \
    gearman_result_boolean.3 \
    gearman_result_integer.3 \
    gearman_result_is_null.3 \
    gearman_result_size.3 \
    gearman_result_store_integer.3 \
    gearman_result_store_string.3 \
    gearman_result_store_value.3 \
    gearman_result_string.3 \
    gearman_return_t.3 \
    gearman_strerror.3 \
    gearman_string_t.3 \
    gearman_success.3 \
    gearman_task_attr_init.3 \
    gearman_task_attr_init_background.3 \
    gearman_task_attr_init_epoch.3 \
    gearman_task_attr_t.3 \
    gearman_task_context.3 \
    gearman_task_data.3 \
    gearman_task_data_size.3 \
    gearman_task_denominator.3 \
    gearman_task_error.3 \
    gearman_task_free.3 \
    gearman_task_function_name.3 \
    gearman_task_give_workload.3 \
    gearman_task_is_known.3 \
    gearman_task_is_running.3 \
    gearman_task_job_handle.3 \
    gearman_task_numerator.3 \
    gearman_task_recv_data.3 \
    gearman_task_return.3 \
    gearman_task_send_workload.3 \
    gearman_task_set_context.3 \
    gearman_task_st.3 \
    gearman_task_take_data.3 \
    gearman_task_unique.3 \
    gearman_verbose_name.3 \
    gearman_verbose_t.3 \
    gearman_version.3 \
    gearman_worker_add_function.3 \
    gearman_worker_add_options.3 \
    gearman_worker_add_server.3 \
    gearman_worker_add_servers.3 \
    gearman_worker_clone.3 \
    gearman_worker_context.3 \
    gearman_worker_create.3 \
    gearman_worker_define_function.3 \
    gearman_worker_echo.3 \
    gearman_worker_errno.3 \
    gearman_worker_error.3 \
    gearman_worker_free.3 \
    gearman_worker_function_exist.3 \
    gearman_worker_grab_job.3 \
    gearman_worker_options.3 \
    gearman_worker_register.3 \
    gearman_worker_remove_options.3 \
    gearman_worker_remove_servers.3 \
    gearman_worker_set_context.3 \
    gearman_worker_set_identifier.3 \
    gearman_worker_set_log_fn.3 \
    gearman_worker_set_memory_allocators.3 \
    gearman_worker_set_namespace.3 \
    gearman_worker_set_options.3 \
    gearman_worker_set_timeout.3 \
    gearman_worker_set_workload_free_fn.3 \
    gearman_worker_set_workload_malloc_fn.3 \
    gearman_worker_st.3 \
    gearman_worker_timeout.3 \
    gearman_worker_unregister.3 \
    gearman_worker_unregister_all.3 \
    gearman_worker_wait.3 \
    gearman_worker_work.3 \
    libgearman.3
MAN8=   gearmand.8

NO_STAGE=   yes
.include <bsd.port.options.mk>

# Workaround for missing sigignore that wasn't introduced until
# FreeBSD 8.0
.if ${OSVERSION} < 800041
BROKEN= Does not compile without POSIX spawn() support
.endif

.if ${PORT_OPTIONS:MDRIZZLE}
LIB_DEPENDS+=       drizzle:${PORTSDIR}/databases/libdrizzle
CONFIGURE_ARGS+=    --enable-libdrizzle
.else
CONFIGURE_ARGS+=    --disable-libdrizzle
.endif

.if ${PORT_OPTIONS:MMEMCACHED}
LIB_DEPENDS+=       memcached:${PORTSDIR}/databases/libmemcached
BUILD_DEPENDS+=     memcached>=0:${PORTSDIR}/databases/memcached
CONFIGURE_ARGS+=    --enable-libmemcached
# This hack is required for the test programs invoked by configure,
# in the event that libmemcached was compiled with SASL support.
.if exists(${LOCALBASE}/lib/libsasl.so)
LDFLAGS+=       -L${LOCALBASE}/lib -lsasl
CONFIGURE_ARGS+=    --with-memcached-sasl=${LOCALBASE}/bin/memcached
.elif exists(${LOCALBASE}/lib/libsasl2.a)
LDFLAGS+=       -L${LOCALBASE}/lib -lsasl2
CONFIGURE_ARGS+=    --with-memcached-sasl=${LOCALBASE}/bin/memcached
.else
LDFLAGS+=       -L${LOCALBASE}/lib
CONFIGURE_ARGS+=    --with-memcached=${LOCALBASE}/bin/memcached
.endif
.else
CONFIGURE_ARGS+=    --disable-libmemcached
.endif

.if ${PORT_OPTIONS:MMYSQL}
USE_MYSQL=      yes
CONFIGURE_ARGS+=    --with-mysql=yes
.else
CONFIGURE_ARGS+=    --with-mysql=no
.endif

.if ${PORT_OPTIONS:MPGSQL}
USE_PGSQL=      yes
CONFIGURE_ARGS+=    --enable-libpq
.else
CONFIGURE_ARGS+=    --disable-libpq
.endif

.if ${PORT_OPTIONS:MSQLITE}
BUILD_DEPENDS+=     sqlite3>=3.0.0:${PORTSDIR}/databases/sqlite3
LIB_DEPENDS+=       sqlite3:${PORTSDIR}/databases/sqlite3
CONFIGURE_ARGS+=    --with-sqlite3=${LOCALBASE}
.else
CONFIGURE_ARGS+=    --without-sqlite3
.endif

.if ${PORT_OPTIONS:MTOKYOCAB}
LIB_DEPENDS+=       tokyocabinet:${PORTSDIR}/databases/tokyocabinet
CONFIGURE_ARGS+=    --enable-libtokyocabinet
CONFIGURE_ENV+=     LIBTOKYOCABINET_CPPFLAGS=-I${LOCALBASE}/include \
            LIBTOKYOCABINET_LDFLAGS=-L${LOCALBASE}/lib
.else
CONFIGURE_ARGS+=    --disable-libtokyocabinet
.endif

.if ${PORT_OPTIONS:MHIREDIS}
LIB_DEPENDS+=       hiredis:${PORTSDIR}/databases/hiredis
CONFIGURE_ARGS+=    --enable-hires
CONFIGURE_ENV+=     LIBHIREDIS_CPPFLAGS=-I${LOCALBASE}/include/hiredis \
            LIBHIREDIS_LDFLAGS=-L${LOCALBASE}/lib
.else
CONFIGURE_ARGS+=    --disable-hires
.endif

.include <bsd.port.mk>