aboutsummaryrefslogtreecommitdiffstats
path: root/net/rabbitmq-c/Makefile
blob: 95dcceb745e331279662db6e40233dae9a3f94da (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
# New ports collection makefile for:    rabbitmq-c
# Date created:             31 March 2010
# Whom:                 Geoff Garside
#
# $FreeBSD$
#

PORTNAME=   rabbitmq-c
PORTVERSION=    0.0.1
PORTREVISION=   1
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

BUILD_DEPENDS=  ${PYTHON_PKGNAMEPREFIX}simplejson>=2.0:${PORTSDIR}/devel/py-simplejson

CONFLICTS=  rabbitmq-c-devel-[0-9]*

USE_BZIP2=  YES
USE_GMAKE=  YES
USE_PYTHON= YES
USE_LDCONFIG=   YES
GNU_CONFIGURE=  YES
USE_AUTOTOOLS=  aclocal:111 autoconf:267 automake:111 autoheader:267 libtool:22
AUTOMAKE_ARGS=  -i --add-missing
ACLOCAL_ARGS=   -I . -I ${LOCALBASE}/share/aclocal

LICENSE=        GPLv2 MPL
LICENSE_COMB=       dual
LICENSE_FILE_MPL=   ${WRKSRC}/LICENSE-GPL-2.0
LICENSE_FILE_GPLv2= ${WRKSRC}/LICENSE-MPL-RabbitMQ

OPTIONS=    64BIT "Produce 64-bit library" Off \
        POPT  "Popt support in tools" Off

.include <bsd.port.options.mk>

.if defined(WITH_64BIT)
ONLY_FOR_ARCHS=     amd64 sparc64 powerpc
ONLY_FOR_ARCHS_REASON=  WITH_64BIT is set
CONFIGURE_ARGS+=    --enable-64-bit
.endif

.if defined(WITH_POPT)
LIB_DEPENDS+=   popt.0:${PORTSDIR}/devel/popt
CFLAGS+=    -I${LOCALBASE}/include
LDFLAGS+=   -L${LOCALBASE}/lib
CONFIGURE_ENV+= CFLAGS="${CFLAGS}" \
        LDFLAGS="${LDFLAGS}"

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

pre-configure:
    @(cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${LIBTOOLIZE})

post-install:
    ${STRIP_CMD} ${PREFIX}/lib/librabbitmq.so.0

.include <bsd.port.mk>