- drop python25 support

- apply patch for python26 uncoditionally (drop corresponding option too)
- raise python version in USE_PYTHON (tested with python27)
This commit is contained in:
Ruslan Makhmatkhanov 2012-02-17 13:47:03 +00:00
parent 5ccd4ad043
commit d2a78da452
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=291572
2 changed files with 4 additions and 17 deletions

View File

@ -7,7 +7,7 @@
PORTNAME= spambayes
PORTVERSION= 1.0.4
PORTREVISION= 4
PORTREVISION= 5
CATEGORIES= mail python
MASTER_SITES= SF
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -15,12 +15,10 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= ports@FreeBSD.org
COMMENT= A Bayesian anti-spam filter written in Python
# bypass infrastructure bug
OPTIONSFILE= ${PORT_DBDIR}/py-${PORTNAME}/options
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/_bsddb.so:${PORTSDIR}/databases/py-bsddb
OPTIONS= PYTHON26 "Build with Python 2.6 (with unofficial patch)" off
USE_PYDISTUTILS= yes
USE_PYDISTUTILS=yes
USE_PYTHON= -2.7
USE_RC_SUBR= pyspamd
LOCALSTATDIR?= /var/db/spambayes
DBDIR?= ${LOCALSTATDIR}/dbs
@ -79,15 +77,4 @@ post-install:
@${MKDIR} ${CACHEDIR}
@${MKDIR} ${DBDIR}
.include <bsd.port.options.mk>
.if defined(WITH_PYTHON26)
USE_PYTHON= 2.6
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/_bsddb.so:${PORTSDIR}/databases/py-bsddb
EXTRA_PATCHES+= ${FILESDIR}/extra-patch-python26
.else
USE_PYTHON= 2.5
RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/_bsddb.so:${PORTSDIR}/databases/py25-bsddb
.endif
.include <bsd.port.mk>