mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
ab40e8506b
- change USE_PYTHON to ``yes'' since it's now py3-ready changelog: https://bitbucket.org/blueluna/transmissionrpc/wiki/releasenotes/0.10
37 lines
779 B
Makefile
37 lines
779 B
Makefile
# Created by: Vladimir Korkodinov <newbieman@perm.raid.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= transmissionrpc
|
|
PORTVERSION= 0.10
|
|
CATEGORIES= net-p2p python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DIST_SUBDIR= python
|
|
|
|
MAINTAINER= rm@FreeBSD.org
|
|
COMMENT= Python module that communicates with Transmission through JSON-RPC
|
|
|
|
LICENSE= MIT
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:${PORTSDIR}/devel/py-six
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS=easy_install
|
|
|
|
PLIST_FILES= %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
PLIST_DIRS= %%DOCSDIR%%
|
|
PLIST_FILES+= %%DOCSDIR%%/README
|
|
.endif
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|