Import of pkgsrc-2016Q3

This commit is contained in:
2016-10-14 07:49:11 +02:00
committed by Lionel Sambuc
parent 9d819b6d54
commit 1242aa1e36
35952 changed files with 949749 additions and 377083 deletions

View File

@@ -1,6 +1,7 @@
# $NetBSD: Makefile,v 1.44 2015/08/05 21:14:29 asau Exp $
# $NetBSD: Makefile,v 1.50 2016/07/17 21:46:54 asau Exp $
PKGNAME= racket-6.2
PKGNAME= racket-6.4
PKGREVISION= 1
DISTNAME= $(PKGNAME_NOREV)-src
CATEGORIES= lang
MASTER_SITES_PLT= http://download.racket-lang.org/installers/$(PKGVERSION_NOREV)/ \

File diff suppressed because it is too large Load Diff

View File

@@ -1,5 +1,8 @@
$NetBSD: distinfo,v 1.14 2015/08/05 21:14:29 asau Exp $
$NetBSD: distinfo,v 1.19 2016/03/15 19:49:42 asau Exp $
SHA1 (racket-6.2-src.tgz) = 24a48002e9c3c00c3731c4562679f012b77bf62d
RMD160 (racket-6.2-src.tgz) = e209e050827c471fd211245c42c6bb2bb642a172
Size (racket-6.2-src.tgz) = 20109661 bytes
SHA1 (racket-6.4-src.tgz) = daa754d9880c0e089301b20945496922dd4a5847
RMD160 (racket-6.4-src.tgz) = bec43fd94c59fae627dcf24a77cff056a9a830e2
SHA512 (racket-6.4-src.tgz) = fed3ebe293532621e9ede160db0c5f723cdb5c6eb4b176dbafa83574b37faac68bade70df8ed248e077470ebd224a466c01541956fff9f13dc601b8e36925492
Size (racket-6.4-src.tgz) = 20863252 bytes
SHA1 (patch-src_configure) = d2dd93be1d5ddec7b07fee73b0da5d6ce61d69b3
SHA1 (patch-src_racket_configure.ac) = 29e239e74a395886dc8382543ab682c6a17b5e6b

View File

@@ -0,0 +1,40 @@
$NetBSD: patch-src_configure,v 1.5 2016/03/15 19:49:43 asau Exp $
--- src/configure.orig 2016-01-11 17:07:43.000000000 +0000
+++ src/configure
@@ -3098,7 +3098,7 @@ if test "${enable_sysroot}" != "" ; then
fi
if test "${enable_racket}" != "" ; then
- if test "${enable_racket}" == "auto" ; then
+ if test "${enable_racket}" = "auto" ; then
echo "=== Creating and using local Racket executable"
else
echo "=== Using Racket executable ${enable_racket}"
@@ -4662,7 +4662,7 @@ case "$host_os" in
skip_iconv_check=yes
check_for_mprotect=no
# ".a" is typically not useful, since we always build a DLL:
- if test "${enable_libs}" == "" ; then
+ if test "${enable_libs}" = "" ; then
INSTALL_LIBS_ENABLE=no-install
fi
@@ -4717,7 +4717,7 @@ else
has_winpthread=no
fi
- if test "${has_winpthread}" == "yes" ; then
+ if test "${has_winpthread}" = "yes" ; then
LIBS="${LIBS} -Wl,-Bstatic -lwinpthread"
fi
case "$build_os" in
@@ -4798,7 +4798,7 @@ fi
try_poll_syscall=yes
# ".a" is typically not useful, since we always build a ".dylib":
- if test "${enable_libs}" == "" ; then
+ if test "${enable_libs}" = "" ; then
INSTALL_LIBS_ENABLE=no-install
fi

View File

@@ -0,0 +1,40 @@
$NetBSD: patch-src_racket_configure.ac,v 1.3 2016/03/15 19:49:43 asau Exp $
--- src/racket/configure.ac.orig 2016-01-11 17:07:43.000000000 +0000
+++ src/racket/configure.ac
@@ -369,7 +369,7 @@ if test "${enable_sysroot}" != "" ; then
fi
if test "${enable_racket}" != "" ; then
- if test "${enable_racket}" == "auto" ; then
+ if test "${enable_racket}" = "auto" ; then
echo "=== Creating and using local Racket executable"
else
echo "=== Using Racket executable ${enable_racket}"
@@ -786,7 +786,7 @@ case "$host_os" in
skip_iconv_check=yes
check_for_mprotect=no
# ".a" is typically not useful, since we always build a DLL:
- if test "${enable_libs}" == "" ; then
+ if test "${enable_libs}" = "" ; then
INSTALL_LIBS_ENABLE=no-install
fi
AC_DEFINE(HAVE_STDINT_H,1,[Have stdint.h])
@@ -798,7 +798,7 @@ case "$host_os" in
fi
AC_CHECK_LIB(winpthread, pthread_create, has_winpthread=yes, has_winpthread=no)
- if test "${has_winpthread}" == "yes" ; then
+ if test "${has_winpthread}" = "yes" ; then
LIBS="${LIBS} -Wl,-Bstatic -lwinpthread"
fi
case "$build_os" in
@@ -879,7 +879,7 @@ case "$host_os" in
try_poll_syscall=yes
# ".a" is typically not useful, since we always build a ".dylib":
- if test "${enable_libs}" == "" ; then
+ if test "${enable_libs}" = "" ; then
INSTALL_LIBS_ENABLE=no-install
fi