9c8b5ede43
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
29 lines
814 B
Makefile
29 lines
814 B
Makefile
# $NetBSD: Makefile,v 1.21 2006/03/04 21:29:11 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= bsddb3-4.4.2
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= databases python
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pybsddb/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://pybsddb.sourceforge.net/
|
|
COMMENT= Python extension module for Berkeley DB 4
|
|
|
|
PYSETUPBUILDARGS= --berkeley-db=${BUILDLINK_PREFIX.db4}
|
|
PYSETUPINSTALLARGS= --berkeley-db=${BUILDLINK_PREFIX.db4}
|
|
|
|
PYDISTUTILSPKG= yes
|
|
PYBINMODULE= yes
|
|
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.if defined(PTHREAD_TYPE) && ${PTHREAD_TYPE} == "native"
|
|
PYTHON_VERSIONS_ACCEPTED= 24 23 22
|
|
.endif
|
|
|
|
do-test:
|
|
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${PYTHONBIN} test.py
|
|
|
|
.include "../../databases/db4/buildlink3.mk"
|
|
.include "../../lang/python/extension.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|