freebsd-ports/devel/py-interface/Makefile
Jimmy Olgeni 7cd2fa8043 Upgrade to version 1.0.
Now devel/py_otp_interface and devel/py-interface are pretty much the same.

PR:		ports/148842
Approved by:	maintainer timeout (15 days)
2010-08-06 09:26:04 +00:00

35 lines
909 B
Makefile

# New ports collection makefile for: py-interface
# Date created: 20 July 2009
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= interface
PORTVERSION= 1.0
CATEGORIES= devel python
MASTER_SITES= http://www.lysator.liu.se/~tab/erlang/py_interface/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= py_${PORTNAME}-${PORTVERSION}
MAINTAINER= sobomax@FreeBSD.org
COMMENT= A Python implementation of an Erlang node
USE_PYTHON= yes
USE_PYDISTUTILS= yes
PYDISTUTILS_PKGNAME= py_${PORTNAME}
DOCSDIR= ${PREFIX}/share/doc/py_${PORTNAME}
EXAMPLESDIR= ${PREFIX}/share/examples/py_${PORTNAME}
post-install:
@${TRUE}
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
cd ${WRKSRC} && ${INSTALL_DATA} README ${DOCSDIR}
.endif
.if !defined(NOPORTEXAMPLES)
@${MKDIR} ${EXAMPLESDIR}
cd ${WRKSRC}/examples && ${INSTALL_DATA} * ${EXAMPLESDIR}
.endif
.include <bsd.port.mk>