mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
53405c8756
SSS is a simple socks server written in perl that implements the SOCKS v5 protocol. WWW: http://sourceforge.net/projects/ssspl/ PR: ports/156398 Submitted by: Hung-Yi Chen <gaod@hychen.org>
35 lines
697 B
Makefile
35 lines
697 B
Makefile
# New ports collection makefile for: ssspl
|
|
# Date created: 2011-04-02
|
|
# Whom: Hung-Yi Chen <gaod@hychen.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ssspl
|
|
PORTVERSION= 0.1
|
|
CATEGORIES= net perl5
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/sss.pl%20v${PORTVERSION}/
|
|
DISTNAME= sss
|
|
EXTRACT_SUFX= .pl
|
|
|
|
MAINTAINER= gaod@hychen.org
|
|
COMMENT= A Simple Socks Server for Perl
|
|
|
|
RUN_DEPENDS= p5-URI>=0:${PORTSDIR}/net/p5-URI \
|
|
p5-libwww>=0:${PORTSDIR}/www/p5-libwww
|
|
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= sbin/sss.pl
|
|
STRIP=
|
|
|
|
do-extract:
|
|
@${MKDIR} ${WRKSRC}
|
|
@${CP} ${DISTDIR}/${DISTFILES} ${WRKSRC}
|
|
|
|
do-install:
|
|
${CHMOD} +x ${WRKSRC}/${DISTFILES}
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${DISTFILES} ${PREFIX}/sbin
|
|
|
|
.include <bsd.port.mk>
|