mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
5d7b880ff0
Reviewed by: bapt Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D6057
25 lines
784 B
Makefile
25 lines
784 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= meek
|
|
PORTVERSION= 0.21
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://c-s.li/ports/
|
|
|
|
MAINTAINER= cs@FreeBSD.org
|
|
COMMENT= Pluggable transport proxy that relays through third-party server
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/${GO_LIBDIR}/git.torproject.org/pluggable-transports/goptlib.git.a:security/goptlib
|
|
|
|
USES= go
|
|
PLIST_FILES= bin/meek-client bin/meek-server man/man1/meek-client.1.gz man/man1/meek-server.1.gz
|
|
SUB_FILES= pkg-message
|
|
GO_PKGNAME= git.torproject.org/pluggable-transports/${PORTNAME}.git
|
|
GO_TARGET= ${GO_PKGNAME}/${PORTNAME}-server \
|
|
${GO_PKGNAME}/${PORTNAME}-client
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/doc/meek-server.1 ${STAGEDIR}${PREFIX}/man/man1
|
|
${INSTALL_MAN} ${WRKSRC}/doc/meek-client.1 ${STAGEDIR}${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|