mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-05 11:35:01 +00:00
2a58169b19
I am not touching the husky ports with a 10 foot pole. atp: stage, improve pkg-message crashmail: stage diablo: too wacky to stage, but convert WITH_* to OPTIONS, unmute commands that shouldn't be muted, use :MDOCS fidogate-ds: stage, OPTIONS, treat examples as EXAMPLES, not DOCS, handle /var/* in the plist properly golded+: stage, OPTIONS, protect examples behind %%PORTEXAMPLES%% nntpbtr: this was an unbelievably PITA stage, add missing prototypes, add missing return types, rename patch files to what they actually patch nntpcache: stage support, required lots of Makefile.in patching, call submakes correctly, handle config files properly nzbperl: stage, use OPTIONS, remove obsolete pkg-message papercut: stage, handle config file properly py-pynzb: stage, use OPTIONS helper to avoid bsd.port.options.mk inclusion s-news: stage slrnconf: stage slrnface: stage, install required files to datadir, not examplesdir, generate proper pkg-message sn: stage
39 lines
983 B
Makefile
39 lines
983 B
Makefile
# Created by: Tim Welch <ports@thepentagon.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= nzbperl
|
|
PORTVERSION= 0.6.8
|
|
PORTREVISION= 1
|
|
CATEGORIES= news
|
|
MASTER_SITES= http://www.thepentagon.org/local_distfiles/ \
|
|
http://noisybox.net/computers/nzbperl/ \
|
|
ftp://ftp.foss.org.my/pub/FreeBSD/misc/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}.pl
|
|
EXTRACT_SUFX=
|
|
|
|
MAINTAINER= ports@thepentagon.org
|
|
COMMENT= A perl script for downloading nzb files
|
|
|
|
RUN_DEPENDS= p5-XML-DOM>=0:${PORTSDIR}/textproc/p5-XML-DOM \
|
|
p5-Term-ReadKey>=0:${PORTSDIR}/devel/p5-Term-ReadKey \
|
|
uudeview:${PORTSDIR}/converters/uudeview
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
NO_BUILD= yes
|
|
USES= perl5 shebangfix
|
|
USE_PERL5= run
|
|
SHEBANG_FILES= ${DISTNAME}
|
|
WRKSRC= ${WRKDIR}
|
|
|
|
OPTIONS_DEFINE= SSL
|
|
SSL_RUN_DEPENDS=p5-Net-SSLeay>=0:${PORTSDIR}/security/p5-Net-SSLeay
|
|
|
|
do-extract:
|
|
@${MKDIR} ${WRKDIR}
|
|
${CP} ${DISTDIR}/${DISTNAME} ${WRKDIR}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/${DISTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|