aboutsummaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorPietro Cerutti <gahr@FreeBSD.org>2011-09-07 07:33:44 +0000
committerPietro Cerutti <gahr@FreeBSD.org>2011-09-07 07:33:44 +0000
commit41689956555e9b90a4e31609d77e46b4c0ac7df6 (patch)
tree173d6ff887fabca1438d5ebb30f9a06daaaab788 /lang
parent5a124d284418484f6a9fcb9927823d0f989fa0f2 (diff)
downloadports-41689956555e9b90a4e31609d77e46b4c0ac7df6.tar.gz
ports-41689956555e9b90a4e31609d77e46b4c0ac7df6.zip
- Update to 05_20110904
Notes
Notes: svn path=/head/; revision=281355
Diffstat (limited to 'lang')
-rw-r--r--lang/seed7/Makefile3
-rw-r--r--lang/seed7/distinfo4
-rw-r--r--lang/seed7/files/patch-makefile20
-rw-r--r--lang/seed7/pkg-plist23
4 files changed, 37 insertions, 13 deletions
diff --git a/lang/seed7/Makefile b/lang/seed7/Makefile
index 8ce51fe64c96..fd4a9284ddb0 100644
--- a/lang/seed7/Makefile
+++ b/lang/seed7/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= seed7
-DISTVERSION= 05_20110403
+DISTVERSION= 05_20110904
CATEGORIES= lang
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTNAME}/
DISTNAME= ${PORTNAME}_${DISTVERSION}
@@ -46,6 +46,7 @@ do-install:
${INSTALL} -d ${PREFIX}/lib/${PORTNAME}
(cd ${WRKSRC}/../lib && ${COPYTREE_SHARE} \* ${PREFIX}/lib/${PORTNAME})
${INSTALL_DATA} ${WRKSRC}/../bin/s7_comp.a ${PREFIX}/lib/${PORTNAME}
+ ${INSTALL_DATA} ${WRKSRC}/../bin/s7_draw.a ${PREFIX}/lib/${PORTNAME}
${INSTALL_DATA} ${WRKSRC}/../bin/s7_data.a ${PREFIX}/lib/${PORTNAME}
${INSTALL_DATA} ${WRKSRC}/../bin/seed7_05.a ${PREFIX}/lib/${PORTNAME}
diff --git a/lang/seed7/distinfo b/lang/seed7/distinfo
index 8af7118baa12..6922cdc3e2bd 100644
--- a/lang/seed7/distinfo
+++ b/lang/seed7/distinfo
@@ -1,2 +1,2 @@
-SHA256 (seed7_05_20110403.tgz) = dde79c5bab09ede9509d71a30fce370efa66016c530b3fea0b592bb632c2cf77
-SIZE (seed7_05_20110403.tgz) = 1499214
+SHA256 (seed7_05_20110904.tgz) = eb9da881401a1e9bcf7e68fc5d2fa5bf1b18252ec2c7fbb2e0b784d96b5d9ec6
+SIZE (seed7_05_20110904.tgz) = 1587436
diff --git a/lang/seed7/files/patch-makefile b/lang/seed7/files/patch-makefile
index 0c53c246e7ba..6f04dc466cb2 100644
--- a/lang/seed7/files/patch-makefile
+++ b/lang/seed7/files/patch-makefile
@@ -1,11 +1,13 @@
---- makefile.orig 2011-02-04 10:52:21.000000000 +0000
-+++ makefile 2011-02-04 10:53:10.000000000 +0000
-@@ -12,12 +12,12 @@
+--- makefile.orig 2011-08-03 10:23:21.000000000 +0200
++++ makefile 2011-08-03 10:23:56.000000000 +0200
+@@ -12,14 +12,14 @@
# CFLAGS = -O2 -fomit-frame-pointer -Wall -Wextra -Wswitch-default -Wcast-qual -Waggregate-return -Wwrite-strings -Winline -Wconversion -Wshadow -Wpointer-arith -Wmissing-noreturn -Wno-multichar
# CFLAGS = -O2 -g -Wall -Wstrict-prototypes -Winline -Wconversion -Wshadow -Wpointer-arith -ftrapv
# CFLAGS = -O2 -g -x c++ -Wall -Winline -Wconversion -Wshadow -Wpointer-arith
-CFLAGS = -O2 -g -Wall -Wstrict-prototypes -Winline -Wconversion -Wshadow -Wpointer-arith
+CFLAGS = -O2 -g -Wall -Wstrict-prototypes -Winline -Wconversion -Wshadow -Wpointer-arith -I%%LOCALBASE%%/include
+ # CFLAGS = -O2 -g -std=c99 -Wall -Wstrict-prototypes -Winline -Wconversion -Wshadow -Wpointer-arith
+ # CFLAGS = -O2 -g -Wall -Winline -Wconversion -Wshadow -Wpointer-arith
# CFLAGS = -O2 -g -Wall
# CFLAGS = -O2 -g -pg -Wall -Wstrict-prototypes -Winline -Wconversion -Wshadow -Wpointer-arith
# CFLAGS = -O2 -fomit-frame-pointer -funroll-loops -Wall
@@ -14,12 +16,12 @@
+LDFLAGS = -L%%LOCALBASE%%/lib
# LDFLAGS = -pg
# LDFLAGS = -pg -lc_p
- # LIBS = /usr/Xlib/libX11.so -lncurses -lm
-@@ -106,6 +106,7 @@
- $(MAKE) ../prg/hi
- ../bin/hi level
+ SYSTEM_LIBS = -lncurses -lm
+@@ -109,6 +109,7 @@
+ COMP_DATA_LIB_SRC = typ_data.c rfl_data.c ref_data.c listutl.c flistutl.c typeutl.c datautl.c
+ COMPILER_LIB_SRC = $(PSRC1) $(LSRC1) $(LSRC2) $(LSRC3) $(ESRC1) $(ASRC1) $(ASRC2) $(ASRC3) $(GSRC1) $(GSRC2)
+.PHONY: hi
- hi: ../bin/hi
+ hi: ../bin/hi ../prg/hi
+ ../bin/hi level
- ../prg/hi:
diff --git a/lang/seed7/pkg-plist b/lang/seed7/pkg-plist
index d370ec1e1e1f..3dc2ad59aee3 100644
--- a/lang/seed7/pkg-plist
+++ b/lang/seed7/pkg-plist
@@ -6,27 +6,39 @@ lib/seed7/bigint.s7i
lib/seed7/bigrat.s7i
lib/seed7/binary.s7i
lib/seed7/bitmapfont.s7i
+lib/seed7/boolean.s7i
lib/seed7/cards.s7i
lib/seed7/cgi.s7i
+lib/seed7/char.s7i
lib/seed7/charsets.s7i
lib/seed7/chartype.s7i
+lib/seed7/color.s7i
lib/seed7/complex.s7i
+lib/seed7/console.s7i
lib/seed7/dialog.s7i
lib/seed7/dir.s7i
lib/seed7/draw.s7i
+lib/seed7/duration.s7i
lib/seed7/echo.s7i
+lib/seed7/enable_io.s7i
lib/seed7/encoding.s7i
+lib/seed7/external_file.s7i
lib/seed7/field.s7i
+lib/seed7/file.s7i
lib/seed7/float.s7i
lib/seed7/font.s7i
+lib/seed7/forloop.s7i
+lib/seed7/ftp.s7i
lib/seed7/getf.s7i
lib/seed7/gethttp.s7i
lib/seed7/graph.s7i
+lib/seed7/graph_file.s7i
lib/seed7/gtkserver.s7i
lib/seed7/gzip.s7i
lib/seed7/html.s7i
lib/seed7/html_ent.s7i
lib/seed7/inifile.s7i
+lib/seed7/integer.s7i
lib/seed7/keybd.s7i
lib/seed7/line.s7i
lib/seed7/lower.s7i
@@ -34,17 +46,20 @@ lib/seed7/mahjng32.s7i
lib/seed7/math.s7i
lib/seed7/more.s7i
lib/seed7/multiscr.s7i
+lib/seed7/null_file.s7i
+lib/seed7/osfiles.s7i
lib/seed7/pic16.s7i
lib/seed7/pic32.s7i
+lib/seed7/pixmap_file.s7i
lib/seed7/pixmapfont.s7i
lib/seed7/progs.s7i
lib/seed7/rational.s7i
lib/seed7/reverse.s7i
lib/seed7/s7_comp.a
lib/seed7/s7_data.a
+lib/seed7/s7_draw.a
lib/seed7/scanfile.s7i
lib/seed7/scanstri.s7i
-lib/seed7/screen.s7i
lib/seed7/seed7_05.a
lib/seed7/seed7_05.s7i
lib/seed7/shell.s7i
@@ -57,11 +72,14 @@ lib/seed7/stdfont14.s7i
lib/seed7/stdfont16.s7i
lib/seed7/stdfont18.s7i
lib/seed7/stdfont24.s7i
+lib/seed7/stdio.s7i
lib/seed7/strifile.s7i
+lib/seed7/string.s7i
lib/seed7/stritext.s7i
lib/seed7/syntax.s7i
lib/seed7/tar.s7i
lib/seed7/tee.s7i
+lib/seed7/text.s7i
lib/seed7/time.s7i
lib/seed7/upper.s7i
lib/seed7/utf16.s7i
@@ -126,6 +144,8 @@ lib/seed7/zip.s7i
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fib.sd7
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/files.txt
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fractree.sd7
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ftp7.sd7
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ftpserv.sd7
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gcd.sd7
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gkbd.sd7
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/green.dna
@@ -165,6 +185,7 @@ lib/seed7/zip.s7i
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sokoban.sd7
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/startrek.sd7
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku7.sd7
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sydir7.sd7
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tak.sd7
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tan.dna
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tar7.sd7