forked from Lainports/freebsd-ports
* Use more bsd.port.mk convenience switches. * Use rc.subr properly for spread daemon. * Write a logfile rather than spewing to stdio. * Move rendezvous socket to /var/run. * Make Makefile.PL behave properly with PREFIX. PR: ports/60053 Submitted by: Joshua Goodall <joshua@roughtrade.net>
29 lines
695 B
Makefile
29 lines
695 B
Makefile
# New ports collection makefile for: py-spreadmodule
|
|
# Date created: 24 May 2002
|
|
# Whom: Joshua Goodall <joshua@roughtrade.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= spreadmodule
|
|
PORTVERSION= 1.4
|
|
CATEGORIES= net python
|
|
MASTER_SITES= ${MASTER_SITE_PYTHON}
|
|
MASTER_SITE_SUBDIR=other/spread
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= SpreadModule-${PORTVERSION}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= joshua@roughtrade.net
|
|
COMMENT= A python extension module for the Spread group communcations package
|
|
|
|
LIB_DEPENDS= spread.1:${PORTSDIR}/net/spread
|
|
|
|
USE_REINPLACE= yes
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS=yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's,/usr/local,${PREFIX},g' ${WRKSRC}/setup.py
|
|
|
|
.include <bsd.port.mk>
|