mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-01 05:45:45 +00:00
b6e98759b2
- Make dependency on tor optional Approved by: glarkin@ (mentor) Feature safe: yes
58 lines
1.3 KiB
Makefile
58 lines
1.3 KiB
Makefile
# ports collection makefile for: arm
|
|
# Date created: 20111019
|
|
# Whom: Carlo Strub
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= arm
|
|
DISTVERSION= 1.4.4.1
|
|
CATEGORIES= security net python
|
|
MASTER_SITES= https://archive.torproject.org/arm/ \
|
|
http://www.c-s.li/ports/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= cs@FreeBSD.org
|
|
COMMENT= A terminal status monitor for Tor
|
|
|
|
LICENSE= GPLv3
|
|
|
|
MAN1= arm.1
|
|
MANCOMPRESSED= yes
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS=yes
|
|
USE_BZIP2= yes
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}
|
|
PORTDOCS= armrc.sample
|
|
|
|
OPTIONS= TOR "Install tor locally" On
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_TOR)
|
|
RUN_DEPENDS+= lsof:${PORTSDIR}/sysutils/lsof \
|
|
tor:${PORTSDIR}/security/tor
|
|
.endif
|
|
|
|
post-patch:
|
|
.if defined(NOPORTDOCS)
|
|
@${REINPLACE_CMD} -e 's,/usr/share/doc/,${WRKSRC}/src,g' \
|
|
${WRKSRC}/setup.py
|
|
.else
|
|
@${REINPLACE_CMD} -e 's,/usr/share/doc,${PREFIX}/share/doc,g' \
|
|
${WRKSRC}/setup.py
|
|
.endif
|
|
|
|
@${REINPLACE_CMD} -e 's,/usr/bin,${PREFIX}/bin,g' \
|
|
${WRKSRC}/arm ${WRKSRC}/setup.py ${WRKSRC}/src/uninstall
|
|
@${REINPLACE_CMD} -e 's,/usr/share/man/man1,${PREFIX}/man/man1,g' \
|
|
${WRKSRC}/setup.py
|
|
@${REINPLACE_CMD} -e 's,/usr/share,${PYTHON_SITELIBDIR},g' \
|
|
${WRKSRC}/arm ${WRKSRC}/setup.py ${WRKSRC}/src/uninstall \
|
|
${WRKSRC}/src/gui/controller.py
|
|
|
|
.include <bsd.port.post.mk>
|