mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
309da33d2f
(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@
41 lines
978 B
Makefile
41 lines
978 B
Makefile
# New ports collection makefile for: py-gdbm
|
|
# Date created: 03 October 2000
|
|
# Whom: Thomas Gellekum <tg@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gdbm
|
|
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= Python bindings to the GNU dbm library
|
|
|
|
LIB_DEPENDS= gdbm.4:${PORTSDIR}/databases/gdbm
|
|
|
|
PLIST_FILES= %%PYTHON_SITELIBDIR%%/gdbm.so
|
|
DIST_SUBDIR= python
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS=yes
|
|
USE_XZ= yes
|
|
PYDISTUTILS_PKGVERSION= 0.0.0
|
|
WRKSRC= ${PYTHON_WRKSRC}/Modules
|
|
DISTINFO_FILE= ${PORTSDIR}/lang/python${PYTHON_SUFFIX}/distinfo
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
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>
|