mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
24 lines
629 B
Makefile
24 lines
629 B
Makefile
# Created by: Hammurabi Mendes <hmendes@brturbo.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= proxytunnel
|
|
PORTVERSION= 1.9.0
|
|
CATEGORIES= security
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}%20source%20tarballs/${PORTNAME}%20${PORTVERSION}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
|
COMMENT= Connects stdin and stdout to an origin server through an HTTPS proxy
|
|
|
|
USES= pkgconfig gmake
|
|
|
|
ALL_TARGET= ${PORTNAME}
|
|
|
|
PLIST_FILES= bin/proxytunnel man/man1/proxytunnel.1.gz
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|