2003-07-17 23:31:04 +02:00
|
|
|
# $NetBSD: Makefile,v 1.11 2003/07/17 21:33:58 grant Exp $
|
2000-02-23 21:20:45 +01:00
|
|
|
|
2002-10-22 14:56:45 +02:00
|
|
|
DISTNAME= slib2d4
|
Update guile-slib and slib to version 2.4.2 (slib-2d2). Changes from
version 2c8 include:
New initialization files for DrScheme, Guile, and Scheme48-0.57.
New modules: coerce.scm (implementation of Common Lisp coerce and type-of),
differ.scm (O(NP) sequence comparison algorithm), http-cgi.scm (Service HTTP
and CGI requests), pnm.scm (Read PNM image files), simetrix.scm (SI metric
interchange format), srfi-1.scm, srfi.scm, and uri.scm (the URI functions
from db2html.scm and some new ones).
scmactst.scm, struct.scm, and structst.scm were removed due to lack
of license.
Package update provided by Eric Gillespie Jr. <epg@trantor.pretzelnet.org>
in pkg/14008.
2001-10-03 11:08:37 +02:00
|
|
|
#
|
|
|
|
# Convert the version number as follows 2d2 -> 2.4.2, where the d is
|
|
|
|
# changed to a 4, representing the 4th letter.
|
|
|
|
#
|
2002-10-22 14:56:45 +02:00
|
|
|
PKGNAME= slib-2.4.4
|
2003-03-29 13:40:00 +01:00
|
|
|
WRKSRC= ${WRKDIR}/slib
|
2000-02-23 21:20:45 +01:00
|
|
|
CATEGORIES= devel
|
|
|
|
MASTER_SITES= http://swissnet.ai.mit.edu/ftpdir/scm/ \
|
|
|
|
${MASTER_SITE_GNU:=jacal/}
|
|
|
|
EXTRACT_SUFX= .zip
|
|
|
|
|
2003-07-17 23:31:04 +02:00
|
|
|
MAINTAINER= jlam@NetBSD.org
|
2000-02-23 21:20:45 +01:00
|
|
|
HOMEPAGE= http://swissnet.ai.mit.edu/~jaffer/SLIB.html
|
2001-02-16 15:38:16 +01:00
|
|
|
COMMENT= portable Scheme library of compatibility and utility functions
|
2000-02-23 21:20:45 +01:00
|
|
|
|
2002-09-24 10:30:45 +02:00
|
|
|
USE_BUILDLINK2= # defined
|
2000-06-21 07:58:31 +02:00
|
|
|
NO_BUILD= # defined
|
2000-02-23 21:20:45 +01:00
|
|
|
|
2000-08-15 03:21:54 +02:00
|
|
|
SLIBDIR= ${PREFIX}/share/slib
|
|
|
|
DOCDIR= ${PREFIX}/share/doc/slib
|
2000-02-23 21:20:45 +01:00
|
|
|
|
2003-06-25 13:49:31 +02:00
|
|
|
USE_NEW_TEXINFO= YES
|
2000-02-23 21:20:45 +01:00
|
|
|
INFO_FILES= slib.info
|
|
|
|
|
|
|
|
do-install:
|
2000-08-15 03:21:54 +02:00
|
|
|
${INSTALL_DATA_DIR} ${SLIBDIR}
|
|
|
|
cd ${WRKSRC}; ${INSTALL_DATA} *.scm *.init ${SLIBDIR}
|
|
|
|
${INSTALL_DATA_DIR} ${DOCDIR}
|
|
|
|
cd ${WRKSRC}; ${INSTALL_DATA} README FAQ ${DOCDIR}
|
2000-02-23 21:20:45 +01:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/slib.info ${PREFIX}/info
|
|
|
|
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|