c26c3bb5f9
- do not install useless doc - nicer Makefile ok martynas@
45 lines
1.2 KiB
Makefile
45 lines
1.2 KiB
Makefile
# $OpenBSD: Makefile,v 1.9 2008/01/12 23:05:13 eric Exp $
|
|
|
|
SHARED_ONLY= Yes
|
|
|
|
COMMENT= SQLite3 adapter for Python
|
|
|
|
VERSION= 2.4.0
|
|
DISTNAME= pysqlite-${VERSION}
|
|
PKGNAME= py-sqlite2-${VERSION}
|
|
CATEGORIES= databases devel
|
|
|
|
MAINTAINER= Eric Faurot <eric@openbsd.org>
|
|
|
|
MASTER_SITES= http://initd.org/pub/software/pysqlite/releases/${VERSION:R}/${VERSION}/
|
|
HOMEPAGE= http://pysqlite.org/
|
|
|
|
# BSD-like
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
|
|
LIB_DEPENDS= sqlite3.>=8.6::databases/sqlite3
|
|
REGRESS_DEPENDS= :python-bz2-*:lang/python/${MODPY_VERSION},-bz2
|
|
|
|
SUBST_VARS= VERSION
|
|
|
|
MODULES= lang/python
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC} && \
|
|
sed "s|/usr/local|${LOCALBASE}|" setup.cfg | \
|
|
sed "s|^\(include_dirs\)=.*|\1=${LOCALBASE}/include/|" | \
|
|
sed "s|^\(library_dirs\)=.*|\1=${LOCALBASE}/lib/|" > setup.cfg_
|
|
mv ${WRKSRC}/setup.cfg_ ${WRKSRC}/setup.cfg
|
|
|
|
do-regress: fake
|
|
@cd ${WRKSRC}/pysqlite2/test && \
|
|
${SETENV} PYTHONPATH=${WRKINST}${MODPY_SITEPKG} \
|
|
${MODPY_BIN} ./regression.py && \
|
|
${SETENV} PYTHONPATH=${WRKINST}${MODPY_SITEPKG} \
|
|
${MODPY_BIN} -c 'from pysqlite2 import test; test.test()'
|
|
|
|
.include <bsd.port.mk>
|