blob: 84bc70a12cda9e331219c66a9043d5f231a550ab (
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
|
# New ports collection makefile for: CHICKEN
# Date created: 31 December 2002
# Whom: Kimura Fuyuki <fuyuki@hadaly.org>
#
# $FreeBSD$
#
PORTNAME= chicken
PORTVERSION= 1.56
CATEGORIES= lang scheme
MASTER_SITES= http://www.call-with-current-continuation.org/
MAINTAINER= fuyuki@hadaly.org
COMMENT= A Scheme-to-C compiler
USE_REINPLACE= yes
USE_LIBTOOL_VER= 15
INSTALLS_SHLIB= yes
MAN1= chicken-config.1 chicken-profile.1 chicken-setup.1 chicken.1 \
csc.1 csi.1
.if !defined(NOPORTDOCS)
PORTDOCS= FAQ.html format.txt README LICENSE chicken.html chicken.pdf
.endif
OPTIONS= PCRE "With PCRE support" off
.include <bsd.port.pre.mk>
.if ${ARCH} == "amd64" || ${ARCH} == "ia64"
BROKEN= "Coredump during build on amd64 and ia64"
.endif
.if defined(WITH_PCRE)
LIB_DEPENDS= pcre.0:${PORTSDIR}/devel/pcre
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib"
.else
CONFIGURE_ENV+= ac_cv_header_pcre_h=no
.endif
post-patch:
${REINPLACE_CMD} -e 's/\(install-data-am: \)install-data-local/\1/' \
${WRKSRC}/Makefile.in
${REINPLACE_CMD} -e 's|"/usr/local/include" ||' ${WRKSRC}/csc.scm.in
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${EXAMPLESDIR}
${CP} -R ${WRKSRC}/examples/* ${EXAMPLESDIR}
${MKDIR} ${DOCSDIR}
cd ${WRKSRC}; ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
.endif
test:
cd ${WRKSRC}; ${MAKE} test
.include <bsd.port.post.mk>
|