cebdb0c2fc
- Use fixed uid and gid - Rewrite the rc script to use the new rc.d style and split into two scripts: hts (for server) and htc (for client) - Bump PORTREVISION for this PR: ports/125714 (based on) Submitted by: G.V. Tjong A Hung <gvtjongahung at users.sourceforge.net> (based on)
33 lines
736 B
Makefile
33 lines
736 B
Makefile
# New ports collection makefile for: httptunnel
|
|
# Date created: March 20 2000
|
|
# Whom: Brian Somers <brian@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= httptunnel
|
|
PORTVERSION= 3.3
|
|
PORTREVISION= 2
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.Awfulhak.org/httptunnel/ \
|
|
ftp://ftp.nocrew.org/pub/nocrew/unix/ \
|
|
http://www.nocrew.org/software/httptunnel/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Tunnel a tcp/ip connection through a http/tcp/ip connection
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --quiet
|
|
.if defined(ENABLE_DEBUG)
|
|
CONFIGURE_ARGS+=--enable-debug
|
|
.endif
|
|
MAN1= hts.1 htc.1
|
|
|
|
USE_RC_SUBR= hts htc
|
|
|
|
PLIST_FILES= bin/hts bin/htc
|
|
|
|
post-install:
|
|
@${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
|
|
|
|
.include <bsd.port.mk>
|