pkgsrc/lang/racket-textual/Makefile

51 lines
1.6 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.32 2018/01/01 01:26:13 rillig Exp $
PKGNAME= racket-minimal-6.7
DISTNAME= ${PKGNAME_NOREV}-src
CATEGORIES= lang
MASTER_SITES_PLT= http://download.racket-lang.org/installers/${PKGVERSION_NOREV}/
MASTER_SITES_PLT+= http://www.eecs.northwestern.edu/racket/${PKGVERSION_NOREV}/
MASTER_SITES_PLT+= http://www.cs.utah.edu/plt/installers/${PKGVERSION_NOREV}/
MASTER_SITES_PLT+= http://mirror.informatik.uni-tuebingen.de/mirror/racket/${PKGVERSION_NOREV}/
MASTER_SITES_PLT+= ftp://infogroep.be/pub/racket/installers/${PKGVERSION_NOREV}/
# Pre-release:
#MASTER_SITES_PLT= http://pre-release.racket-lang.org/installers/
MASTER_SITES= ${MASTER_SITES_PLT}
EXTRACT_SUFX= .tgz
MAINTAINER= asau@inbox.ru
HOMEPAGE= http://racket-lang.org/
COMMENT= Scheme-based dialect of Lisp
LICENSE= gnu-lgpl-v2
CONFLICTS+= drscheme-[0-9]* mzscheme-[0-9]* racket-[0-9]*
PATCHDIR= ${.CURDIR}/../../lang/racket/patches
Update to Racket 5.2.1 Changes in Racket 5.2.1 * Performance improvements include the use of epoll()/kqueue() instead of select() for the Racket thread scheduler, cross-module inlining of small functions, and the use of SSE instead of x87 for JIT-compiled floating-point operations on platforms where SSE is always available (including x86_64 platforms). A related change is the interning of literal numbers, strings, byte strings, characters, and regexps that appear in code and syntax objects. * DrRacket uses a set of composable ray-traced icons available from the new `images' library collection. * Typed Racket's `typecheck-fail' form allows macro creators to customize the error messages that Typed Racket produces. This is especially useful when creating pattern matching macros. * The performance of Redex's matcher has been substantially improved; depending on the model you should see improvements between 2x and 50x in the time it takes to reduce terms. * Plots look nicer and are more correct at very small and very large scales. New features include customizable dual axis ticks and transforms (e.g., log axes, date and currency ticks, axis interval collapse and stretch), stacked histograms, and 3D vector fields. The legacy `fit' function and libfit have been removed. * The `2htdp/universe' library's `big-bang' form supports an experimental game pad key handler. * The `db' library now supports nested transactions and PostgreSQL arrays. Bugs involving MySQL authentication and memory corruption in the SQLite bindings have been fixed. * The Macro Stepper tool in DrRacket no longer executes a program after expanding it. * In the DMdA teaching languages, infinite recursive signatures ("streams", for example) with no intervening `mixed' are now supported, and the signatures of record definitions without fields now have generators for use with `property'. * MysterX's ActiveX support is deprecated and will be removed in the next release. MysterX's core COM functionality will become deprecated in the next release, but COM functionality will be supported for the foreseeable future as a compatibility layer over a forthcoming `ffi/com' library.
2012-02-03 22:34:06 +01:00
WRKSRC= ${WRKDIR}/racket-${PKGVERSION_NOREV}
GNU_CONFIGURE= yes
CONFIGURE_DIRS= src
CONFIGURE_ARGS= --enable-pthread
USE_LANGUAGES= c c++
MAKE_JOBS_SAFE= no
UNLIMIT_RESOURCES= datasize
2015-02-23 19:24:31 +01:00
OVERRIDE_DIRDEPTH= 3
LDFLAGS.DragonFly+= -rdynamic
Update to Racket 5.2.1 Changes in Racket 5.2.1 * Performance improvements include the use of epoll()/kqueue() instead of select() for the Racket thread scheduler, cross-module inlining of small functions, and the use of SSE instead of x87 for JIT-compiled floating-point operations on platforms where SSE is always available (including x86_64 platforms). A related change is the interning of literal numbers, strings, byte strings, characters, and regexps that appear in code and syntax objects. * DrRacket uses a set of composable ray-traced icons available from the new `images' library collection. * Typed Racket's `typecheck-fail' form allows macro creators to customize the error messages that Typed Racket produces. This is especially useful when creating pattern matching macros. * The performance of Redex's matcher has been substantially improved; depending on the model you should see improvements between 2x and 50x in the time it takes to reduce terms. * Plots look nicer and are more correct at very small and very large scales. New features include customizable dual axis ticks and transforms (e.g., log axes, date and currency ticks, axis interval collapse and stretch), stacked histograms, and 3D vector fields. The legacy `fit' function and libfit have been removed. * The `2htdp/universe' library's `big-bang' form supports an experimental game pad key handler. * The `db' library now supports nested transactions and PostgreSQL arrays. Bugs involving MySQL authentication and memory corruption in the SQLite bindings have been fixed. * The Macro Stepper tool in DrRacket no longer executes a program after expanding it. * In the DMdA teaching languages, infinite recursive signatures ("streams", for example) with no intervening `mixed' are now supported, and the signatures of record definitions without fields now have generators for use with `property'. * MysterX's ActiveX support is deprecated and will be removed in the next release. MysterX's core COM functionality will become deprecated in the next release, but COM functionality will be supported for the foreseeable future as a compatibility layer over a forthcoming `ffi/com' library.
2012-02-03 22:34:06 +01:00
CHECK_INTERPRETER_SKIP= lib/racket/collects/meta/build/sitemap/setup.py \
lib/racket/collects/meta/build/sitemap/sitemap_gen.py \
lib/racket/collects/meta/build/sitemap/test_sitemap_gen.py
CHECK_INTERPRETER_SKIP+= lib/racket/collects/tests/jpr/mon-script.ss
# REPLACE_INTERPRETER+= racket
# REPLACE.racket.old= .*racket
# REPLACE.racket.new= $(LOCALBASE)/bin/racket
# REPLACE_FILES.racket= $(REPLACE_RACKET)
Update to Racket 5.2.1 Changes in Racket 5.2.1 * Performance improvements include the use of epoll()/kqueue() instead of select() for the Racket thread scheduler, cross-module inlining of small functions, and the use of SSE instead of x87 for JIT-compiled floating-point operations on platforms where SSE is always available (including x86_64 platforms). A related change is the interning of literal numbers, strings, byte strings, characters, and regexps that appear in code and syntax objects. * DrRacket uses a set of composable ray-traced icons available from the new `images' library collection. * Typed Racket's `typecheck-fail' form allows macro creators to customize the error messages that Typed Racket produces. This is especially useful when creating pattern matching macros. * The performance of Redex's matcher has been substantially improved; depending on the model you should see improvements between 2x and 50x in the time it takes to reduce terms. * Plots look nicer and are more correct at very small and very large scales. New features include customizable dual axis ticks and transforms (e.g., log axes, date and currency ticks, axis interval collapse and stretch), stacked histograms, and 3D vector fields. The legacy `fit' function and libfit have been removed. * The `2htdp/universe' library's `big-bang' form supports an experimental game pad key handler. * The `db' library now supports nested transactions and PostgreSQL arrays. Bugs involving MySQL authentication and memory corruption in the SQLite bindings have been fixed. * The Macro Stepper tool in DrRacket no longer executes a program after expanding it. * In the DMdA teaching languages, infinite recursive signatures ("streams", for example) with no intervening `mixed' are now supported, and the signatures of record definitions without fields now have generators for use with `property'. * MysterX's ActiveX support is deprecated and will be removed in the next release. MysterX's core COM functionality will become deprecated in the next release, but COM functionality will be supported for the foreseeable future as a compatibility layer over a forthcoming `ffi/com' library.
2012-02-03 22:34:06 +01:00
PTHREAD_AUTO_VARS= yes
.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"