mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
e59c88cece
(via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275
34 lines
740 B
Makefile
34 lines
740 B
Makefile
# Created by: Yuri Victorovich <yuri@rawbw.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= opendht
|
|
PORTVERSION= 0.5.2
|
|
PORTREVISION= 3
|
|
CATEGORIES= devel net
|
|
|
|
MAINTAINER= yuri@rawbw.com
|
|
COMMENT= Lightweight Distributed Hash Table implementation
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libmsgpackc.so:devel/msgpack \
|
|
libnettle.so:security/nettle \
|
|
libgnutls.so:security/gnutls
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= savoirfairelinux
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+=--disable-python
|
|
USE_LDCONFIG= yes
|
|
|
|
USES= autoreconf compiler:c++11-lib libtool pathfix pkgconfig readline:port
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
CXXFLAGS+= -I${LOCALBASE}/include
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libopendht.so.0.0.0
|
|
|
|
.include <bsd.port.mk>
|