mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
88bfe4bd43
When appropriate: - Try to use DISTVERSION{SUF,PRE}FIX - Replace PORTNAME-PORTVERSION by DISTNAME - Convert MASTER_SITES to use macros - Other light cleanup With hat: portmgr Sponsored by: Absolight
27 lines
573 B
Makefile
27 lines
573 B
Makefile
# Created by: alfred@FreeBSD.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= proxy-connect
|
|
PORTVERSION= 100
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.exit2shell.com/~skreuzer/distfiles/ \
|
|
http://www.atarininja.org/distfiles/
|
|
|
|
MAINTAINER= skreuzer@FreeBSD.org
|
|
COMMENT= Command to make network connections via SOCKS and HTTPS proxies
|
|
|
|
USES= tar:bzip2
|
|
|
|
EXENAME= ${PORTNAME}
|
|
|
|
PLIST_FILES= sbin/${EXENAME}
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${CC} ${CFLAGS} -o ${EXENAME} connect.c
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} \
|
|
${WRKSRC}/${EXENAME} ${STAGEDIR}${PREFIX}/sbin/${EXENAME}
|
|
|
|
.include <bsd.port.mk>
|