Revision: 39571 http://trac.macosforge.org/projects/macports/changeset/39571 Author: mww@macports.org Date: 2008-08-25 02:27:26 -0700 (Mon, 25 Aug 2008) Log Message: ----------- version 14.1.5; make port-set optimization level take precedence (remove hard-coded '-O2' from makefile) Modified Paths: -------------- trunk/dports/math/mathomatic/Portfile trunk/dports/math/mathomatic/files/patch-makefile.diff Modified: trunk/dports/math/mathomatic/Portfile =================================================================== --- trunk/dports/math/mathomatic/Portfile 2008-08-25 07:53:47 UTC (rev 39570) +++ trunk/dports/math/mathomatic/Portfile 2008-08-25 09:27:26 UTC (rev 39571) @@ -3,7 +3,7 @@ PortSystem 1.0 name mathomatic -version 14.1.4 +version 14.1.5 categories math platforms darwin maintainers mww @@ -15,7 +15,7 @@ homepage http://mathomatic.orgserve.de/math/ master_sites http://www.panix.com/~gesslein/ -checksums sha1 1f22725a2bf6236dcd81b32843072ed8da1ae58e +checksums sha1 910f80e831d3dd877bfd6cbb3c383825f591f916 use_bzip2 yes patchfiles patch-makefile.diff Modified: trunk/dports/math/mathomatic/files/patch-makefile.diff =================================================================== --- trunk/dports/math/mathomatic/files/patch-makefile.diff 2008-08-25 07:53:47 UTC (rev 39570) +++ trunk/dports/math/mathomatic/files/patch-makefile.diff 2008-08-25 09:27:26 UTC (rev 39571) @@ -1,9 +1,13 @@ ---- makefile 2007-11-30 16:09:53.000000000 +0100 -+++ makefile 2007-12-14 17:19:40.000000000 +0100 -@@ -1,5 +1,6 @@ - # Makefile for compiling, testing, and installing Mathomatic under any UNIX like OS. +--- makefile 2008-08-25 11:23:33.000000000 +0200 ++++ makefile 2008-08-25 11:25:33.000000000 +0200 +@@ -1,8 +1,9 @@ + # Makefile for compiling, testing, and installing Mathomatic under any UNIX-like OS. # Currently uses gcc only options in CFLAGS, just remove them for other C compilers. +include flags VERSION = `cat VERSION` - CFLAGS += -Wuninitialized -Wshadow -Wformat -Wparentheses -Wcast-align # gcc specific flags +-CFLAGS += -O2 -Wuninitialized -Wunused -Wshadow -Wformat -Wparentheses # gcc specific flags ++CFLAGS += -Wuninitialized -Wunused -Wshadow -Wformat -Wparentheses # gcc specific flags + CFLAGS += -DUNIX -DVERSION=\"$(VERSION)\" # C compiler flags + LIBS += -lm # libraries to link +