mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-27 10:03:20 +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
36 lines
721 B
Makefile
36 lines
721 B
Makefile
# Created by: Fabian Keil <fk@fabiankeil.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= obfsclient
|
|
PORTVERSION= 0.0.2
|
|
DISTVERSIONPREFIX= v
|
|
PORTREVISION= 7
|
|
CATEGORIES= security
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Tor-managed pluggable transport client
|
|
|
|
LICENSE= BSD2CLAUSE MIT ISCL BSD3CLAUSE
|
|
LICENSE_COMB= multi
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= liballium-1.0.so:devel/liballium \
|
|
libevent.so:devel/libevent
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= Yawning
|
|
|
|
GNU_CONFIGURE= yes
|
|
USES= autoreconf compiler:c++11-lib localbase pkgconfig ssl
|
|
TEST_TARGET= check
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
PORTDOCS= COPYING
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/COPYING ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|