aboutsummaryrefslogtreecommitdiffstats
path: root/devel/py-bison/Makefile
blob: 7e77e7cba3becc4995aadc82e7776f0b938b9444 (plain) (blame)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# ex:ts=8
# Ports collection makefile for:    py-bison
# Date created:         Aug 23, 2004
# Whom:             ijliao
#
# $FreeBSD$
#

PORTNAME=   bison
PORTVERSION=    0.1.8
PORTREVISION=   2
CATEGORIES= devel python
MASTER_SITES=   http://www.freenet.org.nz/python/pybison/
PKGNAMEPREFIX=  ${PYTHON_PKGNAMEPREFIX}
DISTNAME=   py${PORTNAME}-${PORTVERSION}

MAINTAINER= ports@FreeBSD.org
COMMENT=    Python-based parsing at the speed of C

BUILD_DEPENDS=  pyrex>=0.9.6.2:${PORTSDIR}/devel/pyrex

USE_BISON=  both
USE_PYTHON= yes
USE_PYDISTUTILS=    yes
PYDISTUTILS_PKGVERSION= 0.1

.if !defined(NOPORTDOCS)
DOCSDIR=    ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
EXAMPLESDIR=    ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME}
.endif

.include <bsd.port.pre.mk>

.if ${ARCH} == "ia64"
BROKEN=     Does not compile on ia64
.elif ${OSVERSION} >= 900000
BROKEN=     Does not support FreeBSD 9.0 or higher
.endif

.if !defined(NOPORTDOCS)
post-install:
    @${MKDIR} ${DOCSDIR}
    ${CP} -R ${WRKSRC}/doc/ ${DOCSDIR}
    @${FIND} ${DOCSDIR} ! -type d | \
        ${SED} 's,^${PREFIX}/,,' >> ${TMPPLIST}
    @${FIND} ${DOCSDIR} -type d | ${SORT} -r | \
        ${SED} 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST}
    @${MKDIR} ${EXAMPLESDIR}
    ${CP} -R ${WRKSRC}/examples/ ${EXAMPLESDIR}
    @${FIND} ${EXAMPLESDIR} ! -type d | \
        ${SED} 's,^${PREFIX}/,,' >> ${TMPPLIST}
    @${FIND} ${EXAMPLESDIR} -type d | ${SORT} -r | \
        ${SED} 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST}
.endif

.include <bsd.port.post.mk>