mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +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
49 lines
1.2 KiB
Makefile
49 lines
1.2 KiB
Makefile
# New ports collection makefile for: py-GeoIP
|
|
# Date created: 27 February 2004
|
|
# Whom: Stefan Walter <sw@gegenunendlich.de>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= GeoIP
|
|
PORTVERSION= 1.2.1
|
|
PORTREVISION= 3
|
|
CATEGORIES= net python geography
|
|
MASTER_SITES= http://www.maxmind.com/download/geoip/api/python/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= ${PORTNAME}-Python-${PORTVERSION}
|
|
|
|
MAINTAINER= stefan@FreeBSD.org
|
|
COMMENT= Mapping of IP addresses/hostnames to country names in Python
|
|
|
|
LIB_DEPENDS= GeoIP.5:${PORTSDIR}/net/GeoIP
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS=yes
|
|
PYDISTUTILS_PKGNAME= GeoIP-Python
|
|
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME}
|
|
EXAMPLE_FILES= README test.py test_city.py test_org.py test_region.py
|
|
DOCSDIR= ${EXAMPLESDIR}
|
|
|
|
PLIST_FILES= %%PYTHON_SITELIBDIR%%/GeoIP.so
|
|
PORTDOCS= README test.py test_city.py test_org.py test_region.py
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' \
|
|
${WRKSRC}/setup.py \
|
|
${WRKSRC}/test.py \
|
|
${WRKSRC}/test_city.py \
|
|
${WRKSRC}/test_org.py \
|
|
${WRKSRC}/test_region.py
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
.for file in ${EXAMPLE_FILES}
|
|
@${INSTALL_DATA} ${WRKSRC}/${file} ${EXAMPLESDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|