diff options
author | gahr <gahr@FreeBSD.org> | 2011-11-23 17:27:46 +0800 |
---|---|---|
committer | gahr <gahr@FreeBSD.org> | 2011-11-23 17:27:46 +0800 |
commit | 8f143112c891750ddc60c7e72ab60e7e5fd4482d (patch) | |
tree | dfd80467ca65a4a68f4648343bfbc00b3e055f71 /lang/seed7 | |
parent | 9d73aacd20484747fb28e7186e9888f5e1634586 (diff) | |
download | freebsd-ports-gnome-8f143112c891750ddc60c7e72ab60e7e5fd4482d.tar.gz freebsd-ports-gnome-8f143112c891750ddc60c7e72ab60e7e5fd4482d.tar.zst freebsd-ports-gnome-8f143112c891750ddc60c7e72ab60e7e5fd4482d.zip |
- Update to 05_20111111
- Respect CC and CFLAGS [1]
PR: 162542 [1]
Submitted by: Jan Beich <jbeich@tormail.net>
Feature safe: yes
Diffstat (limited to 'lang/seed7')
-rw-r--r-- | lang/seed7/Makefile | 2 | ||||
-rw-r--r-- | lang/seed7/distinfo | 4 | ||||
-rw-r--r-- | lang/seed7/files/patch-makefile | 19 |
3 files changed, 17 insertions, 8 deletions
diff --git a/lang/seed7/Makefile b/lang/seed7/Makefile index fd4a9284ddb0..593fa1c0d5c5 100644 --- a/lang/seed7/Makefile +++ b/lang/seed7/Makefile @@ -6,7 +6,7 @@ # PORTNAME= seed7 -DISTVERSION= 05_20110904 +DISTVERSION= 05_20111111 CATEGORIES= lang MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTNAME}/ DISTNAME= ${PORTNAME}_${DISTVERSION} diff --git a/lang/seed7/distinfo b/lang/seed7/distinfo index 6922cdc3e2bd..cead52fe20b3 100644 --- a/lang/seed7/distinfo +++ b/lang/seed7/distinfo @@ -1,2 +1,2 @@ -SHA256 (seed7_05_20110904.tgz) = eb9da881401a1e9bcf7e68fc5d2fa5bf1b18252ec2c7fbb2e0b784d96b5d9ec6 -SIZE (seed7_05_20110904.tgz) = 1587436 +SHA256 (seed7_05_20111111.tgz) = bbeaebb962da76cc658c94dfb2ca7cf559710f5c0554d267c30579c4ee15e17d +SIZE (seed7_05_20111111.tgz) = 1613515 diff --git a/lang/seed7/files/patch-makefile b/lang/seed7/files/patch-makefile index 6f04dc466cb2..26c0209c69cd 100644 --- a/lang/seed7/files/patch-makefile +++ b/lang/seed7/files/patch-makefile @@ -1,11 +1,11 @@ ---- makefile.orig 2011-08-03 10:23:21.000000000 +0200 -+++ makefile 2011-08-03 10:23:56.000000000 +0200 +--- makefile.orig 2011-11-01 12:55:40.000000000 +0100 ++++ makefile 2011-11-23 10:05:28.000000000 +0100 @@ -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 -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 @@ -16,8 +16,17 @@ +LDFLAGS = -L%%LOCALBASE%%/lib # LDFLAGS = -pg # LDFLAGS = -pg -lc_p - SYSTEM_LIBS = -lncurses -lm -@@ -109,6 +109,7 @@ + SYSTEM_LIBS = -lm +@@ -38,7 +38,7 @@ + COMPILER_LIB = s7_comp.a + ALL_S7_LIBS = ../bin/$(COMPILER_LIB) ../bin/$(COMP_DATA_LIB) ../bin/$(DRAW_LIB) ../bin/$(CONSOLE_LIB) ../bin/$(SEED7_LIB) + # CC = g++ +-CC = gcc ++CC ?= gcc + GET_CC_VERSION_INFO = $(CC) --version > + + BIGINT_LIB_DEFINE = USE_BIG_RTL_LIBRARY +@@ -112,6 +112,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) |