diff options
author | sbz <sbz@FreeBSD.org> | 2011-09-01 23:21:21 +0800 |
---|---|---|
committer | sbz <sbz@FreeBSD.org> | 2011-09-01 23:21:21 +0800 |
commit | 00e10bda8eb64f0d34f2228f42aaebfc680e19b9 (patch) | |
tree | 3f6657ad12ed604d4a31ada5f754d94507accb0e /www | |
parent | 511cb3c0b99ae2af71d59dd00279e8c4071b8abd (diff) | |
download | freebsd-ports-gnome-00e10bda8eb64f0d34f2228f42aaebfc680e19b9.tar.gz freebsd-ports-gnome-00e10bda8eb64f0d34f2228f42aaebfc680e19b9.tar.zst freebsd-ports-gnome-00e10bda8eb64f0d34f2228f42aaebfc680e19b9.zip |
- Bump USE_PYTHON to 2.5+
- Remove dependency on databases/py-pysqlite23, keep py-sqlite3
PR: ports/160220
Submitted by: Ruslan Mahmatkhanov <cvs-src at yandex.ru>
Approved by: jadawin@ (mentor)
Diffstat (limited to 'www')
-rw-r--r-- | www/roundup/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/www/roundup/Makefile b/www/roundup/Makefile index aa79344956de..56a51590917a 100644 --- a/www/roundup/Makefile +++ b/www/roundup/Makefile @@ -17,7 +17,7 @@ LICENSE= PSFL LICENSE_FILE= ${WRKSRC}/COPYING.txt USE_GETTEXT= yes -USE_PYTHON= yes +USE_PYTHON= 2.5+ USE_PYDISTUTILS=yes OPTIONS= SQLITE "Support Sqlite as backend" on @@ -28,11 +28,7 @@ OPTIONS+= NLS "Native Language Support" on .include <bsd.port.pre.mk> .if !defined(WITHOUT_SQLITE) -.if ${PYTHON_REL} >= 250 RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3 -.else -RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/pysqlite2/__init__.py:${PORTSDIR}/databases/py-pysqlite23 -.endif .endif .if defined(WITH_PGSQL) |