blob: 9805d67a3ab7d5bf687cbf96de4896bf638d0fe4 (
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
|
# New ports collection makefile for: qscheme
# Date created: 6 Dec 2001
# Whom: erik@smluc.org
#
# $FreeBSD$
#
PORTNAME= qscheme
PORTVERSION= 0.5.1
PORTREVISION= 3
CATEGORIES= lang scheme
MASTER_SITES= http://www.sof.ch/dan/qscheme/files/
MAINTAINER= erik@smluc.org
COMMENT= A small and fast Scheme interpreter
BUILD_DEPENDS= ${LOCALBASE}/lib/libavcall.a:${PORTSDIR}/devel/ffcall\
${LOCALBASE}/lib/libpcre.a:${PORTSDIR}/devel/pcre \
${LOCALBASE}/include/gmp.h:${PORTSDIR}/math/libgmp4
LIB_DEPENDS= getline:${PORTSDIR}/devel/libgetline
GNU_CONFIGURE= yes
USE_GMAKE= yes
PLIST_SUB+= PORTVERSION="${PORTVERSION}"
CONFIGURE_ARGS= --with-pcre-dir=${LOCALBASE}/lib \
--with-pcre-inc=${LOCALBASE}/include \
--with-avcall-dir=${LOCALBASE}/lib \
--with-avcall-inc=${LOCALBASE}/include \
--with-gmp-dir=${LOCALBASE}/lib \
--with-gmp-inc=${LOCALBASE}/include
post-patch:
${REINPLACE_CMD} \
-e "s,^LIBS = @LIBS@,& ${PTHREAD_LIBS} -L${LOCALBASE}/lib -lgetline," \
-e "s,^CFLAGS = @CFLAGS@,& ${PTHREAD_CFLAGS}," \
${WRKSRC}/Makefile.in
${REINPLACE_CMD} \
-e "s,-lpthread,${PTHREAD_LIBS},g" ${WRKSRC}/configure
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 700042
BROKEN= Does not compile with GCC 4.2
.endif
.if ${ARCH} == "ia64" || ${ARCH} == "amd64"
BROKEN= Does not build on amd64 or ia64
.endif
.include <bsd.port.post.mk>
|