freebsd-ports/databases/py-sqlite3/Makefile
Ruslan Makhmatkhanov 309da33d2f - do not hardcode distfile extension for lang/python ports in bsd.python.mk
(PYTHON_DISTFILE variable)
- switch lang/python ports (and it's slaves) to tar.xz

I compared all the four pairs .tgz/.tar.xz and they have no content differences.

Discussed on:	python@
2012-10-03 04:06:37 +00:00

45 lines
1 KiB
Makefile

# New ports collection makefile for: py-sqlite3
# Date created: 23 June 2006
# Whom: Hye-Shik Chang
#
# $FreeBSD$
#
PORTNAME= sqlite3
PORTVERSION= ${PYTHON_PORTVERSION}
PORTREVISION= 2
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= %%PYTHON_SITELIBDIR%%/_sqlite3.so
DIST_SUBDIR= python
USE_PYTHON= 2.5+
USE_PYDISTUTILS=yes
USE_XZ= yes
WRKSRC= ${PYTHON_WRKSRC}/Modules
DISTINFO_FILE= ${PORTSDIR}/lang/python${PYTHON_SUFFIX}/distinfo
PYDISTUTILS_NOEGGINFO= yes
.include <bsd.port.pre.mk>
.if ${ARCH} == "arm"
BROKEN= Does not install on arm
.endif
post-extract:
.if ${PYTHON_REL} < 300
@${CP} ${FILESDIR}/setup.py ${WRKSRC}
.else
@${CP} ${FILESDIR}/setup3.py ${WRKSRC}/setup.py
.endif
.include <bsd.port.post.mk>