PR: 201733 Submitted by: tremere@cainites.net Approved by: cheffo@freebsd-bg.org (maintainer), pgollucci (mentor)
42 lines
783 B
Makefile
42 lines
783 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= levigo
|
|
PORTVERSION= 20150216
|
|
CATEGORIES= databases
|
|
|
|
MAINTAINER= cheffo@freebsd-bg.org
|
|
COMMENT= Levigo is a Go wrapper for LevelDB
|
|
|
|
LICENSE= MIT
|
|
|
|
BUILD_DEPENDS= go:${PORTSDIR}/lang/go
|
|
LIB_DEPENDS= libleveldb.so:${PORTSDIR}/databases/leveldb
|
|
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
|
|
USES= compiler
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= jmhodges
|
|
GH_PROJECT= levigo
|
|
GH_TAGNAME= 1ddad808d4
|
|
|
|
BROKEN_FreeBSD_8= Build has leftover /readelf.core, PR 194986
|
|
|
|
.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 "${PORTSDIR}/lang/go/files/bsd.go.mk"
|
|
.include <bsd.port.post.mk>
|