aboutsummaryrefslogtreecommitdiffstats
path: root/lang/stklos/Makefile
blob: 6fad7df5f24f7656835e5d02c1f016cca72e4bbd (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
# New ports collection makefile for:    STklos
# Date created:             6 November 2002
# Whom:                 Kimura Fuyuki <fuyuki@hadaly.org>
#
# $FreeBSD$
#

PORTNAME=   stklos
PORTVERSION=    1.10
PORTREVISION=   1
CATEGORIES= lang scheme
MASTER_SITES=   http://www.stklos.net/download/ \
        ftp://kaolin.essi.fr/pub/STklos/

MAINTAINER= vmagerya@gmail.com
COMMENT=    The successor of the STk Scheme interpreter

LIB_DEPENDS=    gmp.10:${PORTSDIR}/math/gmp \
        pcre.1:${PORTSDIR}/devel/pcre \
        ffi.5:${PORTSDIR}/devel/libffi \
        gc-threaded.1:${PORTSDIR}/devel/boehm-gc-threaded

ONLY_FOR_ARCHS= i386 amd64

USE_GMAKE=  yes
CPPFLAGS+=  -I${LOCALBASE}/include
LDFLAGS+=   -L${LOCALBASE}/lib
PLIST_SUB=  VERSION="${PORTVERSION}"

GNU_CONFIGURE=  yes
CONFIGURE_ARGS= --enable-threads=posix

MAN1=       stklos-compile.1 stklos-config.1 stklos-genlex.1 \
        stklos-pkg.1 stklos.1

.include <bsd.port.pre.mk>

.if ${OSVERSION} >= 900000
BROKEN=     does not build on FreeBSD 9.x - runaway process
.endif

post-patch:
    @${REINPLACE_CMD} -e 's|-lgc|-lgc-threaded|' \
        -e 's|bdw-gc|bdw-gc-threaded|' \
        -e 's|-lpthread|${PTHREAD_LIBS}|' \
        ${WRKSRC}/configure
    @${REINPLACE_CMD} -e 's|share/man|man|' \
        -e 's|-@VERSION@||' \
        -e 's|^man_MANS = |man_MANS = stklos-pkg.1 |' \
        ${WRKSRC}/doc/Makefile.in
    @${REINPLACE_CMD} -e 's|; make|; $$(MAKE)|' \
        ${WRKSRC}/doc/Makefile.in ${WRKSRC}/doc/Makefile.am \
        ${WRKSRC}/lib/Makefile.in ${WRKSRC}/lib/Makefile.am

.if defined(NOPORTDOCS)
    @${REINPLACE_CMD} -E -e 's/^(install-data-am:).*/\1 install-man install-schemeDATA/' \
        -e '/install-docpdfDATA install-man install-schemeDATA/d' \
        ${WRKSRC}/doc/Makefile.in
.endif

regression-test: build
    (cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} \
        ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} test)

.include <bsd.port.post.mk>