blob: cebe164e5c13b9b68669f6936d7dd7be8cd461a2 (
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
|
# $FreeBSD$
PORTNAME= levigo
PORTVERSION= 20150216
PORTREVISION= 3
CATEGORIES= databases
MAINTAINER= cheffo@freebsd-bg.org
COMMENT= Levigo is a Go wrapper for LevelDB
LICENSE= MIT
BUILD_DEPENDS= go:lang/go
LIB_DEPENDS= libleveldb.so:databases/leveldb
ONLY_FOR_ARCHS= i386 amd64
USES= compiler go
USE_GITHUB= yes
GH_ACCOUNT= jmhodges
GH_TAGNAME= 1ddad808d4
.include <bsd.port.pre.mk>
# Build fails on FreeBSD10+ if value of "CC" is not set to "clang"
# (checked by configure)
.if ${COMPILER_TYPE} == clang
CC= clang
.else
USE_GCC= yes
.endif
CONFIGURE_ENV+= CC=${CC} \
CXX=${CXX}
GO_ENV+= ${CONFIGURE_ENV}
.include <bsd.port.post.mk>
|