mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
d293b9db16
- s/CSME/CENKES/ in my ports
40 lines
1.1 KiB
Makefile
40 lines
1.1 KiB
Makefile
# Ports collection makefile for: py-pyxmpp
|
|
# Date created: Mar 04, 2005
|
|
# Whom: Vsevolod Stakhov <vsevolod@highsecure.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pyxmpp
|
|
PORTVERSION= 1.0.0.664
|
|
CATEGORIES= net-im python
|
|
MASTER_SITES= CENKES http://jabberstudio.2nw.net/pyxmpp/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
# svn export -r664 http://pyxmpp.jajcus.net/svn/pyxmpp/trunk pyxmpp
|
|
|
|
MAINTAINER= infofarmer@FreeBSD.org
|
|
COMMENT= A Python XMPP library
|
|
|
|
BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/libxml2.py:${PORTSDIR}/textproc/py-libxml2 \
|
|
${PYTHON_SITELIBDIR}/dns/__init__.py:${PORTSDIR}/dns/py-dnspython \
|
|
${PYTHON_SITELIBDIR}/M2Crypto/__init__.py:${PORTSDIR}/security/py-m2crypto
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
USE_PYTHON= 2.3+
|
|
#USE_PYDISTUTILS= yes
|
|
USE_BZIP2= yes
|
|
|
|
post-extract:
|
|
@${MKDIR} ${WRKSRC}/.svn
|
|
|
|
post-patch:
|
|
@${GREP} -lr '/usr/bin/python' ${WRKSRC} | \
|
|
${XARGS} ${REINPLACE_CMD} -e "s!/usr/bin/python!${PYTHON_CMD}!"
|
|
@${REINPLACE_CMD} -e '/include_dirs =/s|]|,"${LOCALBASE}/include"]|' \
|
|
-e '/library_dirs =/s|]|"${LOCALBASE}/lib"]|' ${WRKSRC}/setup.py
|
|
|
|
post-install:
|
|
@${ECHO} "pyxmpp" > ${PYTHON_SITELIBDIR}/pyxmpp.pth
|
|
|
|
.include <bsd.port.mk>
|