mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
7dc406a7a1
COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Category N. CR: D307 Approved by: portmgr (bapt)
32 lines
674 B
Makefile
32 lines
674 B
Makefile
# Created by: 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= Simple Socks Server for Perl
|
|
|
|
RUN_DEPENDS= p5-URI>=0:${PORTSDIR}/net/p5-URI \
|
|
p5-libwww>=0:${PORTSDIR}/www/p5-libwww
|
|
|
|
NO_BUILD= yes
|
|
USES= shebangfix
|
|
SHEBANG_FILES= sss.pl
|
|
PLIST_FILES= sbin/sss.pl
|
|
STRIP=
|
|
|
|
do-extract:
|
|
@${MKDIR} ${WRKSRC}
|
|
@${CP} ${DISTDIR}/${DISTFILES} ${WRKSRC}
|
|
|
|
do-install:
|
|
${CHMOD} +x ${WRKSRC}/${DISTFILES}
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${DISTFILES} ${STAGEDIR}${PREFIX}/sbin
|
|
|
|
.include <bsd.port.mk>
|