pkgsrc/devel/slib/Makefile

44 lines
1.2 KiB
Makefile
Raw Normal View History

Update to 3b4 (pkgsrc 3.2.4): slib-3b4 news: slib-3b4 is a minor release. Details at <http://cvs.savannah.gnu.org/viewvc/*checkout*/slib/slib/ChangeLog> From Andy Wingo * guile-2.init, guile.init: Factor an initialization file for Guile 2.0 and later out of guile.init. This does not change the interface, though -- loading guile.init will load guile-2.init if appropriate, and otherwise executes its own code. * slib.nsi, Makefile (ifiles): Update build scripts. From Pierpaolo Bernardi * wttree.scm (wt-tree/union-merge): Added from MIT-Scheme; updated license. From Kazu Yamamoto * wttree.scm: Fixed bug where tree balance was lost by deletions <http://hagi.is.s.u-tokyo.ac.jp/~yh/bst.pdf>. * wttree-test.scm (prop-wt-tree/index): Now covers everything which wttest.scm does, replacing wttest.scm. From Bill Schottstaedt (using Scheme-lint) * Cleaned up and removed unused variables from 10 files From Aubrey Jaffer <agj@alum.mit.edu> * slib.sh, gosh.init: Added support for (gosh) Gauche-0.9. * mitscheme.init: Removed support for defmacro when (mit-scheme-release >= 9 0). * Makefile (snapdir, infodir, htmldir): Added defaults so make works with empty "config.status". * strsrch.scm (substring?, substring-ci?): Replaced the skip-vector with an alist (to work with wide characters). * scanf.scm (*scanf): Handle array-ref argument expressions. * logical.scm (integer->list): Negative k not allowed. * structure.scm (define-structure): Reconciled with documentation. * grapheps.ps (whole-page): Extract bounds from %%BoundingBox. Squelch trailing .0 in axis numbers. * grapheps.scm, grapheps.ps (plot-text-column): Added. (set-font): Take optional "encoding" argument. * uri.scm (uri:decode-query): Don't split values on cr. * mkclrnam.scm (load-rgb-txt): Added methods for XKCD dictionary, "bang" dictionary, FED-STD-595C, and "ntc.js". * colorspc.scm (L*a*b*:DE*94): From <http://www.brucelindbloom.com/index.html?Eqn_DeltaE_CIE94.html> replaced wedged L*C*h:DE*94.
2013-05-19 19:50:31 +02:00
# $NetBSD: Makefile,v 1.35 2013/05/19 17:50:31 wiz Exp $
Update to 3b4 (pkgsrc 3.2.4): slib-3b4 news: slib-3b4 is a minor release. Details at <http://cvs.savannah.gnu.org/viewvc/*checkout*/slib/slib/ChangeLog> From Andy Wingo * guile-2.init, guile.init: Factor an initialization file for Guile 2.0 and later out of guile.init. This does not change the interface, though -- loading guile.init will load guile-2.init if appropriate, and otherwise executes its own code. * slib.nsi, Makefile (ifiles): Update build scripts. From Pierpaolo Bernardi * wttree.scm (wt-tree/union-merge): Added from MIT-Scheme; updated license. From Kazu Yamamoto * wttree.scm: Fixed bug where tree balance was lost by deletions <http://hagi.is.s.u-tokyo.ac.jp/~yh/bst.pdf>. * wttree-test.scm (prop-wt-tree/index): Now covers everything which wttest.scm does, replacing wttest.scm. From Bill Schottstaedt (using Scheme-lint) * Cleaned up and removed unused variables from 10 files From Aubrey Jaffer <agj@alum.mit.edu> * slib.sh, gosh.init: Added support for (gosh) Gauche-0.9. * mitscheme.init: Removed support for defmacro when (mit-scheme-release >= 9 0). * Makefile (snapdir, infodir, htmldir): Added defaults so make works with empty "config.status". * strsrch.scm (substring?, substring-ci?): Replaced the skip-vector with an alist (to work with wide characters). * scanf.scm (*scanf): Handle array-ref argument expressions. * logical.scm (integer->list): Negative k not allowed. * structure.scm (define-structure): Reconciled with documentation. * grapheps.ps (whole-page): Extract bounds from %%BoundingBox. Squelch trailing .0 in axis numbers. * grapheps.scm, grapheps.ps (plot-text-column): Added. (set-font): Take optional "encoding" argument. * uri.scm (uri:decode-query): Don't split values on cr. * mkclrnam.scm (load-rgb-txt): Added methods for XKCD dictionary, "bang" dictionary, FED-STD-595C, and "ntc.js". * colorspc.scm (L*a*b*:DE*94): From <http://www.brucelindbloom.com/index.html?Eqn_DeltaE_CIE94.html> replaced wedged L*C*h:DE*94.
2013-05-19 19:50:31 +02:00
DISTNAME= slib-3b4
#
# Convert the version number as follows 2d2 -> 2.4.2, where the d is
# changed to a 4, representing the 4th letter.
# Thus, 3a1 -> 3.1.1
#
2005-10-26 11:19:19 +02:00
# Also update guile-slib
#
Update to 3b4 (pkgsrc 3.2.4): slib-3b4 news: slib-3b4 is a minor release. Details at <http://cvs.savannah.gnu.org/viewvc/*checkout*/slib/slib/ChangeLog> From Andy Wingo * guile-2.init, guile.init: Factor an initialization file for Guile 2.0 and later out of guile.init. This does not change the interface, though -- loading guile.init will load guile-2.init if appropriate, and otherwise executes its own code. * slib.nsi, Makefile (ifiles): Update build scripts. From Pierpaolo Bernardi * wttree.scm (wt-tree/union-merge): Added from MIT-Scheme; updated license. From Kazu Yamamoto * wttree.scm: Fixed bug where tree balance was lost by deletions <http://hagi.is.s.u-tokyo.ac.jp/~yh/bst.pdf>. * wttree-test.scm (prop-wt-tree/index): Now covers everything which wttest.scm does, replacing wttest.scm. From Bill Schottstaedt (using Scheme-lint) * Cleaned up and removed unused variables from 10 files From Aubrey Jaffer <agj@alum.mit.edu> * slib.sh, gosh.init: Added support for (gosh) Gauche-0.9. * mitscheme.init: Removed support for defmacro when (mit-scheme-release >= 9 0). * Makefile (snapdir, infodir, htmldir): Added defaults so make works with empty "config.status". * strsrch.scm (substring?, substring-ci?): Replaced the skip-vector with an alist (to work with wide characters). * scanf.scm (*scanf): Handle array-ref argument expressions. * logical.scm (integer->list): Negative k not allowed. * structure.scm (define-structure): Reconciled with documentation. * grapheps.ps (whole-page): Extract bounds from %%BoundingBox. Squelch trailing .0 in axis numbers. * grapheps.scm, grapheps.ps (plot-text-column): Added. (set-font): Take optional "encoding" argument. * uri.scm (uri:decode-query): Don't split values on cr. * mkclrnam.scm (load-rgb-txt): Added methods for XKCD dictionary, "bang" dictionary, FED-STD-595C, and "ntc.js". * colorspc.scm (L*a*b*:DE*94): From <http://www.brucelindbloom.com/index.html?Eqn_DeltaE_CIE94.html> replaced wedged L*C*h:DE*94.
2013-05-19 19:50:31 +02:00
PKGNAME= slib-3.2.4
CATEGORIES= devel
MASTER_SITES= http://swissnet.ai.mit.edu/ftpdir/scm/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://swissnet.ai.mit.edu/~jaffer/SLIB.html
COMMENT= Portable Scheme library of compatibility and utility functions
NO_CONFIGURE= yes
NO_BUILD= yes
SLIBDIR= ${PREFIX}/share/slib
DOCDIR= ${PREFIX}/share/doc/slib
2007-02-07 20:45:32 +01:00
INFO_FILES= yes
INSTALLATION_DIRS= ${PKGINFODIR}
SUBST_CLASSES+= scmpath
SUBST_STAGE.scmpath= post-patch
SUBST_FILES.scmpath= guile.init
Update to 3b2 alias 3.2.2: 2009-08-02 Aubrey Jaffer <jaffer@localhost.localdomain> * require.scm (*slib-version*): Bumped from 3b1 to 3b2. 2009-07-24 Clemens Fischer * html4each.scm (htm-fields): Value always is string. 2009-07-18 Aubrey Jaffer <agj@alum.mit.edu> * prec.scm (prec:parse): Removed input newline flushing. 2009-07-03 Aubrey Jaffer <agj@alum.mit.edu> * prec.scm (prec:parse): Added initial-column argument. 2009-07-03 Sarah Jaffer * prec.scm: Rewrote to make thread-safe; fluid-let variables replaced with `dyn' argument to most procedures. 2009-06-15 Aubrey Jaffer <agj@alum.mit.edu> * prec.scm (prec:parse-nofix, prec:parse-postfix): Changed set! of *syn-rules* to fluid-let. 2009-06-05 Andrea Girotto * kawa.init (scheme-implementation-version): Update for Kawa-1.9.3. 2009-05-17 Aubrey Jaffer <agj@alum.mit.edu> * dynamic.scm (dynamic-environment-rtd, dynamic-rtd): * priorque.scm (make-heap): * queue.scm (make-queue): * synclo.scm (make-reserved-name-item): * values.scm (values): In SISC (1.16.6), the second argument to 'record-constructor' is not optional. Second arguments added. * sisc.init (syncase:eval, syncase:load): Added. 2009-02-10 Adam Sampson * Makefile (install): Fixed DESTDIR use. 2008-12-14 Aubrey Jaffer <agj@alum.mit.edu> * format.texi (Format Interface): Updated meta-information. 2008-12-13 Aubrey Jaffer <agj@alum.mit.edu> * slib.texi (Catalog Creation): Added mention of implcat. (Compiled and Implementation-Specific Features): Added section. 2008-12-09 Aubrey Jaffer <agj@alum.mit.edu> * tzfile.scm (tzfile:read): Made warning more informative. (tzfile:read): Commented out warning. 2008-12-07 Aubrey Jaffer <agj@alum.mit.edu> * slib.texi (System Interface): The procedure `system' is Posix. 2008-11-15 Aubrey Jaffer <agj@alum.mit.edu> * fdl.texi: Updated to Version 1.3. * mitscheme.init(system): Now called run-shell-command. (print-call-stack): Added dummy definition for trace. 2008-06-18 Aubrey Jaffer <agj@alum.mit.edu> * require.scm (report:print): Report locations if given filename argument. 2008-05-17 Aubrey Jaffer <agj@alum.mit.edu> * html4each.scm (htm-fields): Treat DTDs like comments. Fixed handling of closing tags. Corrected documentation. 2008-04-09 Aubrey Jaffer <agj@alum.mit.edu> * qp.scm (qp): Don't add newlines when *qp-width* is #f. * trace.scm (debug:trace-procedure): Increased indent increment to 2; wrap at column 31 so that depths 16 to 31 are offset. * guile.init (list->array): Redefine to take 3 arguments. (vector->array, array->vector): Define if missing. 2008-02-25 Aubrey Jaffer <agj@alum.mit.edu> * guile.init (implementation-vicinity): Thomas Bushnell points out that %site-dir mashes all slibcat for all versions together. %library-dir (since Guile-1.6) is the versioned directory. (library-vicinity): Last resort changed to "/usr/share/slib/". 2008-02-10 Aubrey Jaffer <agj@alum.mit.edu> * slib.texi (Input/Output): Fixed typo in file-position. (System): Macro:load doesn't affect current-error-port.
2009-09-10 00:56:13 +02:00
SUBST_SED.scmpath= -e "s|/usr/share/slib|${PREFIX}/share/slib|"
do-install:
${INSTALL_DATA_DIR} ${DESTDIR}${SLIBDIR}
cd ${WRKSRC}; ${INSTALL_DATA} *.scm *.init ${DESTDIR}${SLIBDIR}
${INSTALL_DATA_DIR} ${DESTDIR}${DOCDIR}
cd ${WRKSRC}; ${INSTALL_DATA} README FAQ ${DESTDIR}${DOCDIR}
cd ${WRKSRC}; for f in slib.info slib.info-[0-9]*; do \
${TEST} ! -f "$$f" || \
${INSTALL_DATA} "$$f" ${DESTDIR}${PREFIX}/${PKGINFODIR};\
done
.include "../../mk/bsd.pkg.mk"