blob: 2a6cc2a1cc19e1f7ea7b3485215a1a851da42825 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# New ports collection makefile for: py-plex
# Date created: 11 April 2002
# Whom: Hye-Shik Chang
#
# $FreeBSD$
#
PORTNAME= plex
PORTVERSION= 1.1.4.1
CATEGORIES= devel python
MASTER_SITES= http://www.cosc.canterbury.ac.nz/~greg/python/Plex/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= Plex-${PORTVERSION}
MAINTAINER= perky@FreeBSD.org
COMMENT= Lexical Analysis Module for Python
USE_PYTHON= yes
USE_PYDISTUTILS=yes
DOCSDIR= share/doc/${PKGNAMEPREFIX}${PORTNAME}
EXAMPLESDIR= share/examples/${PKGNAMEPREFIX}${PORTNAME}
post-extract:
${SED} -e 's|%%PORTVERSION%%|${PORTVERSION}|g' ${FILESDIR}/setup.py \
> ${WRKSRC}/setup.py
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/${DOCSDIR}
cd ${WRKSRC}/doc && ${INSTALL_DATA} ./* ${PREFIX}/${DOCSDIR}
${MKDIR} ${PREFIX}/${EXAMPLESDIR}
cd ${WRKSRC}/examples && ${INSTALL_DATA} ./* ${PREFIX}/${EXAMPLESDIR}
.endif
.include <bsd.port.mk>
|