View | Details | Raw Unified | Return to bug 125435
Collapse All | Expand All

(-)/amd/account/gcs/96/9655630/dev/ports/lang/guile/Makefile (-2 / +2 lines)
Lines 6-13 Link Here
6
#    $MCom: ports/lang/guile/Makefile,v 1.1 2006/09/12 14:57:06 ahze Exp $
6
#    $MCom: ports/lang/guile/Makefile,v 1.1 2006/09/12 14:57:06 ahze Exp $
7
7
8
PORTNAME=	guile
8
PORTNAME=	guile
9
PORTVERSION=	1.8.4
9
PORTVERSION=	1.8.5
10
PORTREVISION=	3
10
#PORTREVISION=	0
11
CATEGORIES=	lang scheme
11
CATEGORIES=	lang scheme
12
MASTER_SITES=	${MASTER_SITE_GNU}
12
MASTER_SITES=	${MASTER_SITE_GNU}
13
MASTER_SITE_SUBDIR=	guile
13
MASTER_SITE_SUBDIR=	guile
(-)/amd/account/gcs/96/9655630/dev/ports/lang/guile/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (guile-1.8.4.tar.gz) = aacc6a384af88a85574717a9221f5c6e
1
MD5 (guile-1.8.5.tar.gz) = a3f8216544509a74a4441f689a0410d2
2
SHA256 (guile-1.8.4.tar.gz) = ca03762565291708b6fbcda4224570e59889795651d3bbb5a380ff6d2c69e1b3
2
SHA256 (guile-1.8.5.tar.gz) = e2f63d2d445ffeb072638eab885b1a629e372d1db711c8afb26a62bc56096289
3
SIZE (guile-1.8.4.tar.gz) = 3821388
3
SIZE (guile-1.8.5.tar.gz) = 3933369
(-)/amd/account/gcs/96/9655630/dev/ports/lang/guile/files/patch-Makefile.in (+11 lines)
Line 0 Link Here
1
--- Makefile.in.orig	2008-07-09 15:28:14.000000000 +0800
2
+++ Makefile.in	2008-07-09 15:29:13.000000000 +0800
3
@@ -318,7 +318,7 @@
4
 TESTS = check-guile
5
 ACLOCAL_AMFLAGS = -I guile-config
6
 DISTCLEANFILES = check-guile.log
7
-pkgconfigdir = $(libdir)/pkgconfig
8
+pkgconfigdir = $(DESTDIR)$(prefix)/libdata/pkgconfig
9
 pkgconfig_DATA = guile-1.8.pc
10
 all: config.h
11
 	$(MAKE) $(AM_MAKEFLAGS) all-recursive
(-)/amd/account/gcs/96/9655630/dev/ports/lang/guile/files/patch-configure.in (-5 / +7 lines)
Lines 1-19 Link Here
1
--- configure.in	2008-02-16 17:15:18.000000000 -0600
1
--- configure.in	2008-07-09 14:38:42.000000000 +0800
2
+++ configure.in	2008-02-27 10:32:56.298707356 -0600
2
+++ configure.in	2008-07-09 14:41:01.000000000 +0800
3
@@ -692,10 +692,11 @@
3
@@ -692,12 +692,13 @@
4
 #   sys/param.h - not in mingw
4
 #   sys/param.h - not in mingw
5
 #   pthread.h - only available with pthreads.  ACX_PTHREAD doesn't
5
 #   pthread.h - only available with pthreads.  ACX_PTHREAD doesn't
6
 #       check this specifically, we need it for the timespec test below.
6
 #       check this specifically, we need it for the timespec test below.
7
+#   pthread_np.h - available on FreeBSD
7
+#   pthread_np.h - available on FreeBSD
8
 #   sethostname - the function itself check because it's not in mingw,
8
 #   sethostname - the function itself check because it's not in mingw,
9
 #       the DECL is checked because Solaris 10 doens't have in any header
9
 #       the DECL is checked because Solaris 10 doens't have in any header
10
 #   strncasecmp - on NetBSD 1.6 the symbol is available in libc but the
11
 #       declaration cannot be found
10
 #
12
 #
11
-AC_CHECK_HEADERS(crypt.h netdb.h pthread.h sys/param.h sys/resource.h sys/file.h)
13
-AC_CHECK_HEADERS(crypt.h netdb.h pthread.h sys/param.h sys/resource.h sys/file.h)
12
+AC_CHECK_HEADERS(crypt.h netdb.h pthread.h pthread_np.h sys/param.h sys/resource.h sys/file.h)
14
+AC_CHECK_HEADERS(crypt.h netdb.h pthread.h pthread_np.h sys/param.h sys/resource.h sys/file.h)
13
 AC_CHECK_FUNCS(chroot flock getlogin cuserid getpriority setpriority getpass sethostname gethostname)
15
 AC_CHECK_FUNCS(chroot flock getlogin cuserid getpriority setpriority getpass sethostname gethostname)
14
 AC_CHECK_DECLS([sethostname])
16
 AC_CHECK_DECLS([sethostname, strncasecmp])
15
 
17
 
16
@@ -1185,9 +1186,11 @@
18
@@ -1190,9 +1191,11 @@
17
     #         all; not present on MacOS X or Solaris 10
19
     #         all; not present on MacOS X or Solaris 10
18
     #     pthread_get_stackaddr_np - "np" meaning "non portable" says it
20
     #     pthread_get_stackaddr_np - "np" meaning "non portable" says it
19
     #         all; specific to MacOS X
21
     #         all; specific to MacOS X
(-)/amd/account/gcs/96/9655630/dev/ports/lang/guile/files/patch-libguile_eval.c (-11 / +11 lines)
Lines 1-11 Link Here
1
--- libguile/eval.c	2008-02-23 18:14:28.083264040 -0600
1
--- libguile/eval.c	2008-07-09 14:44:29.000000000 +0800
2
+++ libguile/eval.c	2008-02-23 18:20:55.081183329 -0600
2
+++ libguile/eval.c	2008-07-09 14:45:45.000000000 +0800
3
@@ -40,6 +40,8 @@
3
@@ -42,6 +42,8 @@
4
 /* This blob per the Autoconf manual (under "Particular Functions"). */
4
 #ifndef alloca
5
 #if HAVE_ALLOCA_H
5
 # if HAVE_ALLOCA_H
6
 # include <alloca.h>
6
 #  include <alloca.h>
7
+#elif defined __FreeBSD__
7
+# elif defined __FreeBSD__
8
+# include <stdlib.h>
8
+#  include <stdlib.h>
9
 #elif defined __GNUC__
9
 # elif defined __GNUC__
10
 # define alloca __builtin_alloca
10
 #  define alloca __builtin_alloca
11
 #elif defined _AIX
11
 # elif defined _AIX
(-)/amd/account/gcs/96/9655630/dev/ports/lang/guile/files/patch-libguile_numbers.c (-8 / +8 lines)
Lines 1-11 Link Here
1
--- libguile/numbers.c	2008-02-23 15:41:35.231371691 -0600
1
--- libguile/numbers.c	2008-07-09 14:50:22.000000000 +0800
2
+++ libguile/numbers.c	2008-02-23 15:44:52.401368437 -0600
2
+++ libguile/numbers.c	2008-07-09 14:53:05.000000000 +0800
3
@@ -170,7 +170,7 @@
3
@@ -163,7 +163,7 @@
4
 #endif
4
 }
5
 
5
 
6
 /* Convert a C "complex double" to an SCM value. */
6
 #if defined (GUILE_I)
7
-#if HAVE_COMPLEX_DOUBLE
7
-#if HAVE_COMPLEX_DOUBLE
8
+#if HAVE_COMPLEX_DOUBLE && (HAVE_CLOG || HAVE_CLOG10 || HAVE_CEXP || HAVE_USABLE_CSQRT) && defined (SCM_COMPLEX_VALUE)
8
+#if HAVE_COMPLEX_DOUBLE && (HAVE_CLOG || HAVE_CLOG10 || HAVE_CEXP || HAVE_USABLE_CSQRT) && defined (SCM_COMPLEX_VALUE)
9
 static SCM
9
 
10
 scm_from_complex_double (complex double z)
10
 /* For an SCM object Z which is a complex number (ie. satisfies
11
 {
11
    SCM_COMPLEXP), return its value as a C level "complex double". */
(-)/amd/account/gcs/96/9655630/dev/ports/lang/guile/pkg-plist (-1 / +12 lines)
Lines 129-139 Link Here
129
lib/libguile.a
129
lib/libguile.a
130
lib/libguile.la
130
lib/libguile.la
131
lib/libguile.so
131
lib/libguile.so
132
lib/libguile.so.18
132
lib/libguile.so.19
133
lib/libguilereadline-v-17.a
133
lib/libguilereadline-v-17.a
134
lib/libguilereadline-v-17.la
134
lib/libguilereadline-v-17.la
135
lib/libguilereadline-v-17.so
135
lib/libguilereadline-v-17.so
136
lib/libguilereadline-v-17.so.17
136
lib/libguilereadline-v-17.so.17
137
libdata/pkgconfig/guile-1.8.pc
137
share/aclocal/guile.m4
138
share/aclocal/guile.m4
138
%%DATADIR%%/%%GUILE_VER%%/guile-procedures.txt
139
%%DATADIR%%/%%GUILE_VER%%/guile-procedures.txt
139
%%DATADIR%%/%%GUILE_VER%%/ice-9/and-let-star.scm
140
%%DATADIR%%/%%GUILE_VER%%/ice-9/and-let-star.scm
Lines 149-154 Link Here
149
%%DATADIR%%/%%GUILE_VER%%/ice-9/debugger/state.scm
150
%%DATADIR%%/%%GUILE_VER%%/ice-9/debugger/state.scm
150
%%DATADIR%%/%%GUILE_VER%%/ice-9/debugger/trc.scm
151
%%DATADIR%%/%%GUILE_VER%%/ice-9/debugger/trc.scm
151
%%DATADIR%%/%%GUILE_VER%%/ice-9/debugger/utils.scm
152
%%DATADIR%%/%%GUILE_VER%%/ice-9/debugger/utils.scm
153
%%DATADIR%%/%%GUILE_VER%%/ice-9/debugging/example-fns.scm
154
%%DATADIR%%/%%GUILE_VER%%/ice-9/debugging/ice-9-debugger-extensions.scm
155
%%DATADIR%%/%%GUILE_VER%%/ice-9/debugging/steps.scm
156
%%DATADIR%%/%%GUILE_VER%%/ice-9/debugging/trace.scm
157
%%DATADIR%%/%%GUILE_VER%%/ice-9/debugging/traps.scm
158
%%DATADIR%%/%%GUILE_VER%%/ice-9/debugging/trc.scm
152
%%DATADIR%%/%%GUILE_VER%%/ice-9/deprecated.scm
159
%%DATADIR%%/%%GUILE_VER%%/ice-9/deprecated.scm
153
%%DATADIR%%/%%GUILE_VER%%/ice-9/documentation.scm
160
%%DATADIR%%/%%GUILE_VER%%/ice-9/documentation.scm
154
%%DATADIR%%/%%GUILE_VER%%/ice-9/emacs.scm
161
%%DATADIR%%/%%GUILE_VER%%/ice-9/emacs.scm
Lines 156-161 Link Here
156
%%DATADIR%%/%%GUILE_VER%%/ice-9/format.scm
163
%%DATADIR%%/%%GUILE_VER%%/ice-9/format.scm
157
%%DATADIR%%/%%GUILE_VER%%/ice-9/ftw.scm
164
%%DATADIR%%/%%GUILE_VER%%/ice-9/ftw.scm
158
%%DATADIR%%/%%GUILE_VER%%/ice-9/gap-buffer.scm
165
%%DATADIR%%/%%GUILE_VER%%/ice-9/gap-buffer.scm
166
%%DATADIR%%/%%GUILE_VER%%/ice-9/gds-client.scm
167
%%DATADIR%%/%%GUILE_VER%%/ice-9/gds-server.scm
159
%%DATADIR%%/%%GUILE_VER%%/ice-9/getopt-long.scm
168
%%DATADIR%%/%%GUILE_VER%%/ice-9/getopt-long.scm
160
%%DATADIR%%/%%GUILE_VER%%/ice-9/hcons.scm
169
%%DATADIR%%/%%GUILE_VER%%/ice-9/hcons.scm
161
%%DATADIR%%/%%GUILE_VER%%/ice-9/history.scm
170
%%DATADIR%%/%%GUILE_VER%%/ice-9/history.scm
Lines 279-284 Link Here
279
%%DATADIR%%/%%GUILE_VER%%/srfi/srfi-60.scm
288
%%DATADIR%%/%%GUILE_VER%%/srfi/srfi-60.scm
280
%%DATADIR%%/%%GUILE_VER%%/srfi/srfi-69.scm
289
%%DATADIR%%/%%GUILE_VER%%/srfi/srfi-69.scm
281
%%DATADIR%%/%%GUILE_VER%%/srfi/srfi-8.scm
290
%%DATADIR%%/%%GUILE_VER%%/srfi/srfi-8.scm
291
%%DATADIR%%/%%GUILE_VER%%/srfi/srfi-88.scm
282
%%DATADIR%%/%%GUILE_VER%%/srfi/srfi-9.scm
292
%%DATADIR%%/%%GUILE_VER%%/srfi/srfi-9.scm
283
@dirrm %%DATADIR%%/%%GUILE_VER%%/srfi
293
@dirrm %%DATADIR%%/%%GUILE_VER%%/srfi
284
@dirrm %%DATADIR%%/%%GUILE_VER%%/scripts
294
@dirrm %%DATADIR%%/%%GUILE_VER%%/scripts
Lines 288-293 Link Here
288
@dirrm %%DATADIR%%/%%GUILE_VER%%/lang/elisp/internals
298
@dirrm %%DATADIR%%/%%GUILE_VER%%/lang/elisp/internals
289
@dirrm %%DATADIR%%/%%GUILE_VER%%/lang/elisp
299
@dirrm %%DATADIR%%/%%GUILE_VER%%/lang/elisp
290
@dirrm %%DATADIR%%/%%GUILE_VER%%/lang
300
@dirrm %%DATADIR%%/%%GUILE_VER%%/lang
301
@dirrm %%DATADIR%%/%%GUILE_VER%%/ice-9/debugging
291
@dirrm %%DATADIR%%/%%GUILE_VER%%/ice-9/debugger
302
@dirrm %%DATADIR%%/%%GUILE_VER%%/ice-9/debugger
292
@dirrm %%DATADIR%%/%%GUILE_VER%%/ice-9
303
@dirrm %%DATADIR%%/%%GUILE_VER%%/ice-9
293
@dirrm %%DATADIR%%/%%GUILE_VER%%
304
@dirrm %%DATADIR%%/%%GUILE_VER%%

Return to bug 125435