mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
33 lines
821 B
Makefile
33 lines
821 B
Makefile
# Created by: Thomas Gellekum <tg@FreeBSD.org>
|
|
|
|
PORTNAME= gdbm
|
|
PORTVERSION= ${PYTHON_PORTVERSION}
|
|
PORTREVISION= 6
|
|
CATEGORIES= databases python
|
|
MASTER_SITES= PYTHON/ftp/python/${PORTVERSION}
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= Python-${PORTVERSION}
|
|
|
|
MAINTAINER= python@FreeBSD.org
|
|
COMMENT= Python bindings to the GNU dbm library (Python ${PYTHON_VER})
|
|
|
|
LICENSE= PSFL
|
|
|
|
LIB_DEPENDS= libgdbm.so:databases/gdbm
|
|
|
|
PORTSCOUT= ignore:1
|
|
|
|
USES= compiler:c11 python:3.6+ tar:xz
|
|
USE_PYTHON= distutils autoplist allflavors
|
|
|
|
PYDISTUTILS_INSTALLARGS+= --install-lib ${PYTHONPREFIX_LIBDIR}/lib-dynload
|
|
|
|
DIST_SUBDIR= python
|
|
DISTINFO_FILE= ${PORTSDIR}/lang/python${PYTHON_SUFFIX}/distinfo
|
|
WRKSRC= ${WRKDIR}/Python-${PORTVERSION}/Modules
|
|
|
|
post-extract:
|
|
@${CP} ${FILESDIR}/setup3.py ${WRKSRC}/setup.py
|
|
|
|
.include <bsd.port.mk>
|