Prune devel/py-EnthoughtBase
[dports.git] / devel / msgpack / Makefile
1 # $FreeBSD$
2
3 PORTNAME=       msgpack
4 PORTVERSION=    1.1.0
5 DISTVERSIONPREFIX=      cpp-
6 CATEGORIES=     devel
7
8 MAINTAINER=     kuriyama@FreeBSD.org
9 COMMENT=        MessagePack implementation for C and C++
10
11 LICENSE=        APACHE20
12
13 USE_GITHUB=     yes
14 GH_PROJECT= msgpack-c
15
16 USES=           libtool:build autoreconf:build
17
18 GNU_CONFIGURE=  yes
19 USE_LDCONFIG=   yes
20
21 .include <bsd.port.pre.mk>
22
23 .if ${ARCH} == "sparc64"
24 # required for __sync _* atomic operations on sparc
25 USE_GCC=        yes
26 .endif
27
28 .if ${ARCH} == "i386"
29 # Mayby not working on i386/i486/i586...
30 CONFIGURE_ARGS= CFLAGS="${CFLAGS} -march=i686" CXXFLAGS="${CXXFLAGS} -march=i686"
31 .endif
32
33 pre-configure:
34         cd ${WRKSRC} && ./bootstrap
35
36 .include <bsd.port.post.mk>