aboutsummaryrefslogtreecommitdiffstats
path: root/lang/rexx-regina/Makefile
blob: 562e19c0a1ea6501c33df360c92e66e6d0b47ffd (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
# Created by: ijliao
# $FreeBSD$

PORTNAME=   regina
PORTVERSION=    3.9.1
CATEGORIES= lang
MASTER_SITES=   SF/${PORTNAME}-rexx/${PORTNAME}-rexx/${PORTVERSION}:source \
        SF/${PORTNAME}-rexx/${PORTNAME}-documentation/${PORTVERSION}:docs
PKGNAMEPREFIX=  rexx-
DISTNAME=   Regina-REXX-${PORTVERSION}
DISTFILES=  ${DISTNAME}${EXTRACT_SUFX}:source
DIST_SUBDIR=    ${PORTNAME}
EXTRACT_ONLY=   Regina-REXX-${PORTVERSION}.tar.gz

MAINTAINER= bob@eager.cx
COMMENT=    Rexx interpreter

LICENSE=    LGPL21+

BROKEN_aarch64=     Does not build: error: expected expression
BROKEN_armv6=       Does not build: error: expected expression
BROKEN_mips=        Does not build: error: expected expression
BROKEN_mips64=      Does not build: error: expected expression
BROKEN_powerpc64=   Does not build
BROKEN_sparc64=     Does not build: error: expected expression

USES=       gmake iconv ncurses
USE_RC_SUBR=    rxstack
GNU_CONFIGURE=  yes
CONFIGURE_ENV=  ac_cv_c_char_unsigned=yes
CONFIGURE_ARGS= --with-addon-dir=${PREFIX}/lib/Regina-REXX/addons
USE_LDCONFIG=   yes
MAKE_JOBS_UNSAFE=   yes

DATADIR=    ${PREFIX}/share/${PKGNAMEPREFIX}${PORTNAME}
DOCSDIR=    ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
EXAMPLESDIR=    ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME}

CONFLICTS=  rexx-imc-[0-0]* oorexx-[0-9]*

OPTIONS_DEFINE= DOCS EXAMPLES
DOCS_DISTFILES= regina.pdf:docs \
        regutil.pdf:docs

.include <bsd.port.options.mk>

.if ${ARCH} == i386 || ${ARCH} == powerpc
CONFIGURE_ARGS+=    --enable-32bit
.endif

post-extract-DOCS-on:
    @${CP} ${DISTDIR}/${DIST_SUBDIR}/regina.pdf ${WRKDIR}
    @${CP} ${DISTDIR}/${DIST_SUBDIR}/regutil.pdf ${WRKDIR}

post-patch:
    @${REINPLACE_CMD} -e \
        '/$${CFLAGS}/s|^|#| ; \
         s|"-lpthread"|"-pthread"|' ${WRKSRC}/configure
    @${REINPLACE_CMD} -e \
        '/^examplesdir/s|=.*|= $$(datadir)/examples/$$(PACKAGE)| ; \
         /$$(sysconfdir)/s|^|#|' ${WRKSRC}/Makefile.in

post-install-DOCS-on:
    ${MKDIR} ${STAGEDIR}${DOCSDIR}
    ${INSTALL_MAN} ${WRKDIR}/regina.pdf ${STAGEDIR}${DOCSDIR}
    ${INSTALL_MAN} ${WRKDIR}/regutil.pdf ${STAGEDIR}${DOCSDIR}

.include <bsd.port.mk>