aboutsummaryrefslogtreecommitdiffstats
path: root/math/rascal/Makefile
blob: 401ceef0962d9e6b047ea488c4b18b7dfe59e856 (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
# ex:ts=8
# New ports collection makefile for:    rascal
# Date created:         Apr 9, 2001
# Whom:             Ying-Chieh Liao <ijliao@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=   rascal
PORTVERSION=    0.3.2
PORTREVISION=   3
CATEGORIES= math
MASTER_SITES=   ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}

MAINTAINER= laszlof@FreeBSD.org
COMMENT=    The Advanced Scientific CALculator

WRKSRC=     ${WRKDIR}/Rascal-${PORTVERSION}

USE_GETOPT_LONG=    yes
USE_BISON=  yes
WANT_GNOME= yes
USE_GMAKE=  yes
MAKE_ENV=   CC="${CXX}" CFLAGS="${CXXFLAGS}" \
        CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
ALL_TARGET= ${PROGRAMS}

MAN1=   rascal.1

.include <bsd.port.pre.mk>

.if ${OSVERSION} >= 700042
BROKEN=     Does not compile with GCC 4.2
.endif

.if ${HAVE_GNOME:Mgnomelibs}!=""
PKGNAMESUFFIX=  -gnome
USE_GNOME+= gnomelibs
PROGRAMS=   rascal grascal
.else
PROGRAMS=   rascal
.endif

post-patch:
    @${REINPLACE_CMD} -e 's|^CC=|CC?=|g ; \
         s|^CFLAGS=-|CFLAGS+=$${CPPFLAGS} -|g ; \
         s|-O0 -fno-rtti -g||g ; \
         s|^LIBS=-|LIBS+=$${LDFLAGS} -|g ; \
         s|doc/|share/doc/|g ; \
         s|g++|$${CC}|g ; \
         s|-Os||g ; \
         s|gnome-config|$${GNOME_CONFIG}|g' ${WRKSRC}/Makefile
.for file in hoc.y rascal.1 grascal.cpp
    @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/${file}
.endfor

do-install:
.for file in ${PROGRAMS}
    ${INSTALL_PROGRAM} ${WRKSRC}/${file} ${PREFIX}/bin
.endfor
    ${INSTALL_DATA} ${WRKSRC}/rascal.rc ${PREFIX}/etc
    ${INSTALL_MAN} ${WRKSRC}/rascal.1 ${MANPREFIX}/man/man1
.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}/html
.for file in rascal.ps rascal.pdf CHANGES TEST TOOLBOXTEST
    ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
    ${INSTALL_DATA} ${WRKSRC}/rascal_html/* ${DOCSDIR}/html
.endif

.include <bsd.port.post.mk>