mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
4942ce5a7d
- Add significantly better support in bsd.python.mk for working with Python Eggs and the easy_install system Tested by: pointyhat runs Approved by: pav (portmgr) Most work by: perky Thanks to: pav
38 lines
879 B
Makefile
38 lines
879 B
Makefile
# New ports collection makefile for: py-sqlite3
|
|
# Date created: 23 June 2006
|
|
# Whom: Hye-Shik Chang
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= sqlite3
|
|
PORTVERSION= ${PYTHON_PORTVERSION}
|
|
PORTREVISION= 1
|
|
CATEGORIES= databases python
|
|
MASTER_SITES= ${PYTHON_MASTER_SITES}
|
|
MASTER_SITE_SUBDIR= ${PYTHON_MASTER_SITE_SUBDIR}
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTFILES= ${PYTHON_DISTFILE}
|
|
|
|
MAINTAINER= python@FreeBSD.org
|
|
COMMENT= Standard Python binding to the SQLite3 library
|
|
|
|
LIB_DEPENDS= sqlite3.8:${PORTSDIR}/databases/sqlite3
|
|
|
|
PLIST_FILES= lib/%%PYTHON_VERSION%%/site-packages/_sqlite3.so
|
|
DIST_SUBDIR= python
|
|
USE_PYTHON= 2.5+
|
|
USE_PYDISTUTILS=yes
|
|
WRKSRC= ${PYTHON_WRKSRC}/Modules
|
|
MD5_FILE= ${PORTSDIR}/lang/python/distinfo
|
|
|
|
PYDISTUTILS_NOEGGINFO= yes
|
|
|
|
pre-extract:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
post-extract:
|
|
@${CP} ${FILESDIR}/setup.py ${WRKSRC}
|
|
|
|
.include <bsd.port.mk>
|