mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +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
34 lines
689 B
Makefile
34 lines
689 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: py-mhash
|
|
# Date created: Feb 10, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mhash
|
|
PORTVERSION= 1.4
|
|
CATEGORIES= security python
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= mhash
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= python-mhash-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Python mhash module
|
|
|
|
LIB_DEPENDS= mhash:${PORTSDIR}/security/mhash
|
|
|
|
PLIST_FILES= %%PYTHON_SITELIBDIR%%/mhash.so
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS=yes
|
|
PYDISTUTILS_PKGNAME= python-mhash
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
MAKE_ENV= "LDFLAGS=-L${LOCALBASE}/lib"
|
|
|
|
test: install
|
|
${PYTHON_CMD} ${WRKSRC}/test.py
|
|
|
|
.include <bsd.port.mk>
|