mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
1f11b850f7
Approved by: portmgr@ (blanket approval)
46 lines
991 B
Makefile
46 lines
991 B
Makefile
# Created by: Philip Jenvey <pjenvey@groovie.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= hellanzb
|
|
PORTVERSION= 0.13
|
|
PORTREVISION= 2
|
|
CATEGORIES= news
|
|
MASTER_SITES= http://www.hellanzb.com/distfiles/
|
|
|
|
MAINTAINER= pjenvey@groovie.org
|
|
COMMENT= Nzb downloader and post processor
|
|
|
|
LICENSE= BSD
|
|
|
|
RUN_DEPENDS= par2:${PORTSDIR}/archivers/par2cmdline \
|
|
flac:${PORTSDIR}/audio/flac \
|
|
shorten:${PORTSDIR}/audio/shorten \
|
|
${PYTHON_PKGNAMEPREFIX}yenc>=0:${PORTSDIR}/news/py-yenc \
|
|
mac:${PORTSDIR}/audio/mac
|
|
|
|
USE_PYTHON= 2
|
|
USE_PYDISTUTILS=yes
|
|
USES= twisted:run,web
|
|
PORTDOCS= CHANGELOG CREDITS README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
# more fully-featured rar needs i386
|
|
.if ${ARCH} == "i386"
|
|
RUN_DEPENDS+= rar:${PORTSDIR}/archivers/rar
|
|
.else
|
|
RUN_DEPENDS+= unrar:${PORTSDIR}/archivers/unrar
|
|
.endif
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for doc in ${PORTDOCS}
|
|
@${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|