aboutsummaryrefslogtreecommitdiffstats
path: root/devel/bisoncpp/Makefile
blob: 8d0205f62dc5feb8b354362ce7ba6c9c2a217ba6 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# $FreeBSD$

PORTNAME=   bisoncpp
PORTVERSION=    4.01.00
CATEGORIES= devel
MASTER_SITES=   SF/${PORTNAME}/bisonc%2B%2B/${PORTVERSION}
DISTNAME=   bisonc++_${PORTVERSION}
EXTRACT_SUFX=   .orig.tar.gz

MAINTAINER= pgj@FreeBSD.org
COMMENT=    LALR(1) parser generator that generates C++ classes

LICENSE=    GPLv3

BUILD_DEPENDS=  icmake:${PORTSDIR}/devel/icmake \
        yodl>=3.0:${PORTSDIR}/textproc/yodl \
        libbobcat>=3:${PORTSDIR}/devel/libbobcat

.if !defined(NO_INSTALL_MANPAGES)
MANCOMPRESSED=  yes
MAN1=       bisonc++.1
.endif

DOCSDIR=    ${PREFIX}/share/doc/${PORTNAME}-${PORTVERSION}
PORTDOCS=   *

PLIST_SUB+= PORTVERSION="${PORTVERSION}"

WRKSRC=     ${WRKDIR}/bisonc++-${PORTVERSION}

USE_GCC=    4.6

.include <bsd.port.options.mk>

post-patch:
    @${REINPLACE_CMD} 's|"/usr"|"${PREFIX}"| ; \
        s|"/share/bisonc++"|"/share/${PORTNAME}-${PORTVERSION}"| ; \
        s|"/share/doc/bisonc++"|"/share/doc/${PORTNAME}-${PORTVERSION}"| ; \
        s|"/share/man/man1"|"/man/man1"| ; \
        s|"g++"|"g++46"|' \
        ${WRKSRC}/INSTALL.im \
        ${WRKSRC}/build
    @${REINPLACE_CMD} 's|#!/usr/bin/icmake|#!${LOCALBASE}/bin/icmake| ; \
        s|"g++|"g++46|' \
        ${WRKSRC}/build \
        ${WRKSRC}/scanner/driver/build \
        ${WRKSRC}/parser/driver/build
    @${REINPLACE_CMD} 's|#!/bin/bash|#!${LOCALBASE}/bin/bash|g' \
        ${WRKSRC}/documentation/regression/run \
        ${WRKSRC}/documentation/examples/bison++Example.NEW/make \
        ${WRKSRC}/documentation/manual/examples/rpn/build \
        ${WRKSRC}/documentation/manual/examples/errorcalc/build \
        ${WRKSRC}/documentation/manual/examples/calc/build \
        ${WRKSRC}/documentation/manual/examples/mfcalc/build \
        ${WRKSRC}/documentation/man/calculator/build
    @${REINPLACE_CMD} 's|"cp -d |"cp -Pp | ; \
        s|"cp -r |"cp -R | ; \
        s|"-doc"|"/doc"|' \
        ${WRKSRC}/icmake/install

do-build:
    @cd ${WRKSRC} && ./build program strip
.if !defined(NO_INSTALL_MANPAGES)
    @cd ${WRKSRC} && ./build man
.endif
.if ${PORT_OPTIONS:MDOCS}
    @cd ${WRKSRC} && ./build manual
.endif

do-install:
    cd ${WRKSRC} && ./build install program
.if !defined(NO_INSTALL_MANPAGES)
    cd ${WRKSRC} && ./build install man
.endif
.if ${PORT_OPTIONS:MDOCS}
    cd ${WRKSRC} && ./build install manual
.endif

.include <bsd.port.mk>