pkgsrc/lang/clisp/Makefile
dillo c25436c54a Update CLISP to 2.27, based on PR 15224 by Shell Hung, libtool-overridden
and buildlinked by me.

Changes:
Now distributed under the GPL.
All .fas files generated by previous CLISP versions are invalid
and must be recompiled.

Hostname resolution is now optional in EXT:SOCKET-STREAM-PEER and
EXT:SOCKET-STREAM-LOCAL. EXT:SOCKET-STATUS now accepts SOCKET-SERVERs too,
and the direction of the checks can be specified. Added install.bat for
win32 installation. Fixed handling of circular structs and pointers to
functions in the FFI. Fixed binary I/O for streams with element type longer
than one byte, but not a whole number of bytes.
2002-02-21 04:13:20 +00:00

40 lines
1.3 KiB
Makefile

# $NetBSD: Makefile,v 1.23 2002/02/21 04:13:20 dillo Exp $
DISTNAME= clisp-2.27
CATEGORIES= lang
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=clisp/}
EXTRACT_SUFX= .tar.bz2
MAINTAINER= mjl@netbsd.org
HOMEPAGE= http://clisp.cons.org/
COMMENT= CLISP, a Common Lisp implementation
NOT_FOR_PLATFORM= *-*-alpha # severe LP64 problems
USE_BUILDLINK_ONLY= YES
CONFIGURE_ENV+= CC="${CC}" CFLAGS="${CFLAGS}" CPPFLAGS="${CPPFLAGS}"
GNU_CONFIGURE= YES
WRKSRC= ${WRKDIR}/${DISTNAME}/src
UNLIMIT_RESOURCES= stacksize
USE_LIBTOOL= YES
LIBTOOL_OVERRIDE= ${WRKSRC}/avcall/libtool
LIBTOOL_OVERRIDE+= ${WRKSRC}/callback/vacall_r/libtool
LIBTOOL_OVERRIDE+= ${WRKSRC}/callback/libtool
LIBTOOL_OVERRIDE+= ${WRKSRC}/callback/trampoline_r/libtool
LIBTOOL_OVERRIDE+= ${WRKSRC}/libiconv/libcharset/libtool
LIBTOOL_OVERRIDE+= ${WRKSRC}/libiconv/libtool ${WRKSRC}/sigsegv/libtool
do-configure:
cd ${WRKSRC}; \
(cd .. ; ${SETENV} ${CONFIGURE_ENV} \
${CONFIGURE_SCRIPT} --host=${MACHINE_GNU_PLATFORM} \
--prefix=${PREFIX}); \
./makemake --prefix=${LOCALBASE} --with-readline --with-gettext \
--with-dynamic-ffi --fsstnd=netbsd >Makefile
pre-build:
cd ${WRKSRC}/avcall && ${MAKE}
cd ${WRKSRC}/callback && ${MAKE}
.include "../../devel/readline/buildlink.mk"
.include "../../mk/bsd.pkg.mk"