blob: 7bd9d1781f8fb5b4f230624b4b2ae0f6900ad4f3 (
plain)
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
|
# $NetBSD: Makefile,v 1.7 1999/02/20 22:48:32 hubertf Exp $
DISTNAME= clispsrc-19990108
PKGNAME= clisp-19990108
CATEGORIES= lang
MASTER_SITES= ${MASTER_SITE_LOCAL}
MAINTAINER= mjl@emsi.priv.at
HOMEPAGE= http://clisp.cons.org/~haible/clisp.html
NOT_FOR_ARCHS= alpha # severe LP64 problems
MIRROR_DISTFILE= no
GCC_VERSION!= gcc --version
.if (${GCC_VERSION:C/-.*$$//} == egcs) && !target(clean)
IGNORE= "cannot be built with egcs yet"
.endif
GNU_CONFIGURE= YES
WRKSRC= ${WRKDIR}/clisp-1999-01-08/src
do-configure:
cd ${WRKSRC}; \
(cd ..;./${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS}); \
./makemake --prefix=${LOCALBASE} --with-readline --with-gettext \
--with-dynamic-ffi >Makefile
.include "../../mk/bsd.pkg.mk"
|