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

(-)Makefile (-4 / +2 lines)
Lines 7-13 Link Here
7
7
8
PORTNAME=	qscheme
8
PORTNAME=	qscheme
9
PORTVERSION=	0.5.1
9
PORTVERSION=	0.5.1
10
PORTREVISION=	2
10
PORTREVISION=	3
11
CATEGORIES=	lang scheme
11
CATEGORIES=	lang scheme
12
MASTER_SITES=	http://www.sof.ch/dan/qscheme/files/
12
MASTER_SITES=	http://www.sof.ch/dan/qscheme/files/
13
13
Lines 20-27 Link Here
20
20
21
GNU_CONFIGURE=	yes
21
GNU_CONFIGURE=	yes
22
USE_GMAKE=	yes
22
USE_GMAKE=	yes
23
#USE_AUTOCONF=	yes
24
USE_GCC=	2.95
25
USE_REINPLACE=	yes
23
USE_REINPLACE=	yes
26
PLIST_SUB+=	PORTVERSION="${PORTVERSION}"
24
PLIST_SUB+=	PORTVERSION="${PORTVERSION}"
27
25
Lines 42-48 Link Here
42
40
43
.if ${OSVERSION} >= 500000
41
.if ${OSVERSION} >= 500000
44
BUILD_DEPENDS+=	${LOCALBASE}/include/gmp.h:${PORTSDIR}/math/libgmp4
42
BUILD_DEPENDS+=	${LOCALBASE}/include/gmp.h:${PORTSDIR}/math/libgmp4
45
CONFIGURE_ARGS+=	--with-gmp-lib=${LOCALBASE}/lib \
43
CONFIGURE_ARGS+=	--with-gmp-dir=${LOCALBASE}/lib \
46
		--with-gmp-inc=${LOCALBASE}/include
44
		--with-gmp-inc=${LOCALBASE}/include
47
.endif
45
.endif
48
46
(-)files/patch-Makefile.in (-2 / +18 lines)
Lines 1-5 Link Here
1
--- Makefile.in.orig	Sun Feb 10 12:52:32 2002
1
--- Makefile.in.orig	Thu Jun 22 19:10:21 2000
2
+++ Makefile.in	Sun Feb 10 12:52:37 2002
2
+++ Makefile.in	Fri Oct 29 10:07:48 2004
3
@@ -111,7 +111,7 @@
3
@@ -111,7 +111,7 @@
4
 EXTRA_DIST = mkoptable mkwhatis $(modsrc) $(scmsrc) CHANGES LICENCE_EXCEPTION
4
 EXTRA_DIST = mkoptable mkwhatis $(modsrc) $(scmsrc) CHANGES LICENCE_EXCEPTION
5
 
5
 
Lines 8-10 Link Here
8
+SUBDIRS = . doc
8
+SUBDIRS = . doc
9
 
9
 
10
 noinst_LIBRARIES = libqs.a
10
 noinst_LIBRARIES = libqs.a
11
 
12
@@ -580,10 +580,10 @@
13
 %.x:%.i
14
 	mkoptable $< > $@
15
 
16
-sproto.h: $(libqs_src)
17
-	@cfunctions $(libqs_src) \
18
-		| sed 's/^#include "c-extensions.h".*$$/#define PROTO(x) x/' > $@.new
19
-	@if diff $@ $@.new >/dev/null ; then rm $@.new; else mv $@.new $@ ; fi
20
+#sproto.h: $(libqs_src)
21
+#	@cfunctions $(libqs_src) \
22
+#		| sed 's/^#include "c-extensions.h".*$$/#define PROTO(x) x/' > $@.new
23
+#	@if diff $@ $@.new >/dev/null ; then rm $@.new; else mv $@.new $@ ; fi
24
 
25
 # force sproto.h to be up to date. Otherwise compilation of
26
 # distribution may fail, because sproto.h can trigger the cfunction
(-)files/patch-configure (-2 / +2 lines)
Lines 108-114 Link Here
108
 ac_given_INSTALL="$INSTALL"
108
 ac_given_INSTALL="$INSTALL"
109
 
109
 
110
-trap 'rm -fr `echo "Makefile tst/Makefile doc/Makefile sgtk/Makefile config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
110
-trap 'rm -fr `echo "Makefile tst/Makefile doc/Makefile sgtk/Makefile config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
111
+trap 'rm -fr `echo "Makefile tst/Makefile doc/Makefile config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
111
+trap 'rm -fr `echo "Makefile doc/Makefile config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
112
 EOF
112
 EOF
113
 cat >> $CONFIG_STATUS <<EOF
113
 cat >> $CONFIG_STATUS <<EOF
114
 
114
 
Lines 117-123 Link Here
117
 cat >> $CONFIG_STATUS <<EOF
117
 cat >> $CONFIG_STATUS <<EOF
118
 
118
 
119
-CONFIG_FILES=\${CONFIG_FILES-"Makefile tst/Makefile doc/Makefile sgtk/Makefile"}
119
-CONFIG_FILES=\${CONFIG_FILES-"Makefile tst/Makefile doc/Makefile sgtk/Makefile"}
120
+CONFIG_FILES=\${CONFIG_FILES-"Makefile tst/Makefile doc/Makefile"}
120
+CONFIG_FILES=\${CONFIG_FILES-"Makefile doc/Makefile"}
121
 EOF
121
 EOF
122
 cat >> $CONFIG_STATUS <<\EOF
122
 cat >> $CONFIG_STATUS <<\EOF
123
 for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then
123
 for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then
(-)files/patch-vm2.c (+13 lines)
Added Link Here
1
--- vm2.c.orig	Wed Oct 27 19:33:03 2004
2
+++ vm2.c	Wed Oct 27 19:33:16 2004
3
@@ -185,8 +185,8 @@
4
 
5
 #define RETURN(value) { TOS=(value);  NEXT; }
6
 
7
-#define Prim(name,str,nargs)	l_##name##: /* str */
8
-#define PrimVarargs(name,str)	l_##name##: /* str */
9
+#define Prim(name,str,nargs)	l_##name: /* str */
10
+#define PrimVarargs(name,str)	l_##name: /* str */
11
 
12
 
13
 /****************************************************************

Return to bug 73362