version 2.1

git-svn-id: https://svn.macports.org/repository/macports/trunk/dports@17087 d073be05-634f-4543-b044-5fe20cf6d1d6
This commit is contained in:
Markus W. Weißmann
2006-03-20 16:00:29 +00:00
parent 1a5c8b762b
commit a387faed9b
3 changed files with 32 additions and 24 deletions
+11 -5
View File
@@ -1,9 +1,9 @@
# $Id: Portfile,v 1.6 2005/10/03 12:45:41 mww Exp $
# $Id: Portfile,v 1.7 2006/03/20 16:00:28 mww Exp $
PortSystem 1.0
name squirrel
version 2.0.5
version 2.1
categories lang
platforms darwin
maintainers mww@opendarwin.org
@@ -15,14 +15,16 @@ long_description Squirrel is a high level imperative/OO programming \
homepage http://www.squirrel-lang.org/
master_sites sourceforge
distname squirrel_2_0_3_stable
checksums md5 55ad167b90ea25e4f482f52779605d03
patchfiles patch-sqstdlib-Makefile patch-squirrel-Makefile
distname squirrel_2.1_stable
checksums sha1 d3585bbfa97827c574885f1bf20c2b6205be4879
patchfiles patch-squirrel-Makefile
worksrcdir SQUIRREL2
use_configure no
build.target sq32
destroot {
xinstall -m 755 ${worksrcpath}/bin/sq ${destroot}${prefix}/bin
xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name}
@@ -34,3 +36,7 @@ destroot {
sqstdmath.h sqstdstring.h sqstdsystem.h squirrel.h \
${destroot}${prefix}/include
}
platform darwin 8 {
build.env CXX=/usr/bin/g++-4.0
}
@@ -1,10 +0,0 @@
--- sqstdlib/Makefile Sat May 7 06:16:53 2005
+++ Makefile.new Mon May 16 10:57:05 2005
@@ -18,4 +18,5 @@
squirrel:
gcc -O3 -fno-rtti -Os -c $(SRCS) $(INCZ)
ar rc $(OUT) *.o
- rm *.o
\ No newline at end of file
+ ranlib $(OUT)
+ rm *.o
+21 -9
View File
@@ -1,10 +1,22 @@
--- squirrel/Makefile Sat May 7 06:16:43 2005
+++ Makefile.new Mon May 16 10:45:56 2005
@@ -39,4 +39,5 @@
squirrellib:
gcc -O3 -fno-rtti -Os -c $(SRCS) $(INCZ) $(DEFS)
--- squirrel/Makefile 2006-03-06 18:01:31.000000000 +0100
+++ squirrel/Makefile 2006-03-20 16:54:42.000000000 +0100
@@ -37,16 +37,16 @@
sq32:
- gcc -O2 -fno-rtti -Wall -c $(SRCS) $(INCZ) $(DEFS)
+ $(CXX) -O2 -fno-rtti -Wall -c $(SRCS) $(INCZ) $(DEFS)
ar rc $(OUT) *.o
- rm *.o
\ No newline at end of file
+ ranlib $(OUT)
+ rm *.o
rm *.o
sqprof:
- gcc -O2 -pg -fno-rtti -pie -gstabs -g3 -Wall -c $(SRCS) $(INCZ) $(DEFS)
+ $(CXX) -O2 -pg -fno-rtti -pie -gstabs -g3 -Wall -c $(SRCS) $(INCZ) $(DEFS)
ar rc $(OUT) *.o
rm *.o
sq64:
- gcc -O2 -D_SQ64 -fno-rtti -Wall -c $(SRCS) $(INCZ) $(DEFS)
+ $(CXX) -O2 -D_SQ64 -fno-rtti -Wall -c $(SRCS) $(INCZ) $(DEFS)
ar rc $(OUT) *.o
rm *.o