74cb9eff53
be generated or checked, and will be silently ignored for now. Also, generalize the MD5_FILE macro to DISTINFO_FILO. PR: 149657 Submitted by: rene Approved by: portmgr Tested on: pointyhat i386 7-exp
38 lines
964 B
Makefile
38 lines
964 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}
|
|
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.3:${PORTSDIR}/databases/gdbm
|
|
|
|
PLIST_FILES= lib/%%PYTHON_VERSION%%/site-packages/gdbm.so
|
|
DIST_SUBDIR= python
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS=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>
|