- add missing SQLite dependency
- use PYTHON_REL instead of PYVERSION - add LICENSE - remove unnecessary BUILD_DEPENDS PR: ports/151176 Submitted by: Julien Laffaye <kimelto@gmail.com> Approved by: wxs (co-mentor)
This commit is contained in:
parent
10188edc3e
commit
2927227c0d
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=262486
1 changed files with 10 additions and 4 deletions
|
@ -7,6 +7,7 @@
|
|||
|
||||
PORTNAME= sabnzbdplus
|
||||
PORTVERSION= 0.5.4
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= news
|
||||
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/sabnzbd-${PORTVERSION}
|
||||
DISTNAME= SABnzbd-${PORTVERSION}-src
|
||||
|
@ -17,12 +18,11 @@ COMMENT= A web-interface based binary newsgrabber in python, with nzb support
|
|||
RUN_DEPENDS= cheetah:${PORTSDIR}/devel/py-cheetah \
|
||||
${PYTHON_SITELIBDIR}/cherrypy/__init__.py:${PORTSDIR}/www/py-cherrypy \
|
||||
${PYTHON_SITELIBDIR}/pythonutils/configobj.py:${PORTSDIR}/devel/py-utils
|
||||
BUILD_DEPENDS= ${RUN_DEPENDS}
|
||||
|
||||
LICENSE= GPLv2
|
||||
|
||||
USE_PYTHON= 2.4+
|
||||
|
||||
PYVERSION= ${PYTHON_VERSION:S/^python//}
|
||||
|
||||
NO_BUILD= yes
|
||||
WRKSRC= ${WRKDIR}/SABnzbd-${PORTVERSION}
|
||||
PLIST_SUB= PORTNAME=${PORTNAME}
|
||||
|
@ -37,10 +37,16 @@ OPTIONS= PAR2CMDLINE "Required for postprocessing of par files." on \
|
|||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if defined(PYTHON_VERSION) && ${PYVERSION:S/.//} < 25
|
||||
.if ${PYTHON_REL} < 250
|
||||
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/cElementTree.so:${PORTSDIR}/devel/py-celementtree
|
||||
.endif
|
||||
|
||||
.if ${PYTHON_REL} < 250
|
||||
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/pysqlite2/__init__.py:${PORTSDIR}/databases/py-pysqlite23
|
||||
.else
|
||||
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3
|
||||
.endif
|
||||
|
||||
.if !defined(WITHOUT_PAR2CMDLINE)
|
||||
RUN_DEPENDS+= par2repair:${PORTSDIR}/archivers/par2cmdline
|
||||
.endif
|
||||
|
|
Loading…
Reference in a new issue