blob: 8d5f1c8b73a89b9e1d51b8d035c392e6bf66e397 (
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
|
# Created by: Geoff Garside
# $FreeBSD$
PORTNAME= rabbitmq-c
PORTVERSION= 0.0.1
PORTREVISION= 2
CATEGORIES= net
MASTER_SITES= http://hg.rabbitmq.com/rabbitmq-c/archive/:c \
http://hg.rabbitmq.com/rabbitmq-codegen/archive/:codegen
DISTNAME= ${PORTNAME}-4e789c776a45
DISTFILES= 4e789c776a45.tar.bz2:c \
821f5ee7b040.tar.bz2:codegen
DIST_SUBDIR= rabbitmq
MAINTAINER= rabbitmq@geoffgarside.co.uk
COMMENT= RabbitMQ C AMQP client library
LICENSE= GPLv2 MPL
LICENSE_COMB= dual
BUILD_DEPENDS= python:lang/python \
${PYTHON_PKGNAMEPREFIX}simplejson>=2.0:devel/py-simplejson
CONFLICTS= rabbitmq-c-devel-[0-9]*
GNU_CONFIGURE= yes
INSTALL_TARGET= install-strip
USES= autoreconf gmake libtool python tar:bzip2
USE_LDCONFIG= yes
OPTIONS_DEFINE= 64BIT POPT
64BIT_DESC= Produce 64-bit library
POPT_DESC= Popt support in tools
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:M64BIT}
ONLY_FOR_ARCHS= amd64 sparc64 powerpc
ONLY_FOR_ARCHS_REASON= 64BIT option is set
CONFIGURE_ARGS+= --enable-64-bit
.endif
.if ${PORT_OPTIONS:MPOPT}
LIB_DEPENDS+= libpopt.so:devel/popt
CFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
PLIST_SUB+= POPT=''
CONFIGURE_ARGS+= --with-popt
.else
PLIST_SUB+= POPT='@comment '
CONFIGURE_ARGS+= --without-popt
.endif
post-patch:
@${REINPLACE_CMD} -e 's|rabbitmq-codegen|rabbitmq-codegen-821f5ee7b040|g' ${WRKSRC}/configure.ac
.include <bsd.port.mk>
|