[69569] trunk/dports/graphics/ipe

ryandesign at macports.org ryandesign at macports.org
Sat Jul 10 01:42:42 PDT 2010


Revision: 69569
          http://trac.macports.org/changeset/69569
Author:   ryandesign at macports.org
Date:     2010-07-10 01:42:41 -0700 (Sat, 10 Jul 2010)
Log Message:
-----------
ipe: maintainer update to 7.0.10; see #25587

Modified Paths:
--------------
    trunk/dports/graphics/ipe/Portfile
    trunk/dports/graphics/ipe/files/patch-common.mak.diff
    trunk/dports/graphics/ipe/files/patch-config.mak.diff
    trunk/dports/graphics/ipe/files/patch-ipe-lua-prefs.lua.diff

Modified: trunk/dports/graphics/ipe/Portfile
===================================================================
--- trunk/dports/graphics/ipe/Portfile	2010-07-10 08:37:22 UTC (rev 69568)
+++ trunk/dports/graphics/ipe/Portfile	2010-07-10 08:42:41 UTC (rev 69569)
@@ -3,8 +3,7 @@
 PortSystem 1.0
 
 name                    ipe
-version                 7.0.8
-revision                1
+version                 7.0.10
 categories              graphics
 maintainers             jacobs-university.de:m.thon
 description             The Ipe extensible drawing editor
@@ -19,9 +18,9 @@
 master_sites            sourceforge:ipe7
 distname                ${name}-${version}-src
 worksrcdir              ${name}-${version}/src
-checksums               md5 746e3c2ef08c16546c819aae6cca942a \
-                        sha1 a7e87bb11c243839447a38c95dd3b731f024fea5 \
-                        rmd160 ec836de89aa5b442ff1c3bbfe99af7014bdc923e
+checksums               md5 3116ccb41d244d7e4ef92198d6d82052 \
+                        sha1 dc18230bb669b759b132c66440d99596b52fb833 \
+                        rmd160 1d57d362de66a5e718baf80ef79a6681ee48e046
 depends_lib             port:qt4-mac \
                         port:freetype \
                         port:cairo \

Modified: trunk/dports/graphics/ipe/files/patch-common.mak.diff
===================================================================
--- trunk/dports/graphics/ipe/files/patch-common.mak.diff	2010-07-10 08:37:22 UTC (rev 69568)
+++ trunk/dports/graphics/ipe/files/patch-common.mak.diff	2010-07-10 08:42:41 UTC (rev 69569)
@@ -1,20 +1,11 @@
---- common.mak.orig	2009-11-04 20:56:07.000000000 +0100
-+++ common.mak	2009-11-06 18:34:53.000000000 +0100
-@@ -95,7 +95,7 @@
-   # -------------------- Unix --------------------
-   CXXFLAGS	+= -g -O2
-   ifdef MACOS
--    DLL_LDFLAGS	+= -dynamiclib 
-+    DLL_LDFLAGS	+= -dynamiclib -install_name $(IPEPREFIX)`echo $@ | sed 's/[..\/]*build//' | sed 's/ipelets/\/lib\/ipe\/7.0.8\/ipelets/'`
-   else	
-     DLL_LDFLAGS	+= -shared 
+--- common.mak.orig	2009-12-09 07:46:54.000000000 +0100
++++ common.mak	2010-07-08 18:47:01.000000000 +0200
+@@ -104,7 +104,7 @@
    endif
-@@ -109,7 +109,7 @@
- 
- INSTALL_DIR = install -d
- INSTALL_FILES = install -m 0644
--INSTALL_PROGRAMS = install -s -m 0755
-+INSTALL_PROGRAMS = install -m 0755
- 
- MAKE_BINDIR = mkdir -p $(BUILDDIR)/bin
- 
+   buildlib	= $(BUILDDIR)/lib
+   dll_target    = $(buildlib)/lib$1.so.$(IPEVERS)
+-  soname        = -Wl,-soname,lib$1.so.$(IPEVERS)
++  soname        = -install_name $(IPELIBDIR)/lib$1.so.$(IPEVERS)
+   dll_symlinks  = ln -sf lib$1.so.$(IPEVERS) $(buildlib)/lib$1.so
+   install_symlinks = ln -sf lib$1.so.$(IPEVERS) \
+ 		$(INSTALL_ROOT)$(IPELIBDIR)/lib$1.so

Modified: trunk/dports/graphics/ipe/files/patch-config.mak.diff
===================================================================
--- trunk/dports/graphics/ipe/files/patch-config.mak.diff	2010-07-10 08:37:22 UTC (rev 69568)
+++ trunk/dports/graphics/ipe/files/patch-config.mak.diff	2010-07-10 08:42:41 UTC (rev 69569)
@@ -1,27 +1,20 @@
---- config.mak.orig	2009-11-04 20:56:07.000000000 +0100
-+++ config.mak	2009-11-07 02:18:42.000000000 +0100
-@@ -17,11 +17,13 @@
- FREETYPE_LIBS ?= $(shell pkg-config --libs freetype2)
- CAIRO_CFLAGS  ?= $(shell pkg-config --cflags cairo)
- CAIRO_LIBS    ?= $(shell pkg-config --libs cairo)
--LUA_CFLAGS    ?= $(shell pkg-config --cflags lua5.1)
--LUA_LIBS      ?= $(shell pkg-config --libs lua5.1)
-+LUA_CFLAGS    ?= $(shell pkg-config --cflags lua)
-+LUA_LIBS      ?= $(shell pkg-config --libs lua)
- QT_CFLAGS     ?= $(shell pkg-config --cflags QtGui QtCore)
- QT_LIBS	      ?= $(shell pkg-config --libs QtGui QtCore)
--MOC	      ?= moc
-+ifeq "$(MOC)" ""
-+MOC	?= moc
-+endif
+--- config.mak.orig	2009-12-09 07:46:54.000000000 +0100
++++ config.mak	2010-07-08 18:47:04.000000000 +0200
+@@ -34,15 +34,10 @@
  #
- # --------------------------------------------------------------------
+ # Settings for Mac OS 10.6
  #
-@@ -39,6 +41,7 @@
- # Installing Ipe:
+-CONFIG     += x86_64
+ LUA_CFLAGS = $(shell pkg-config --cflags lua)
+ LUA_LIBS   = $(shell pkg-config --libs lua)
+-QT_CFLAGS  = -I/Library/Frameworks/QtCore.framework/Versions/4/Headers \
+-	     -I/Library/Frameworks/QtGui.framework/Versions/4/Headers
+-QT_LIBS    = -F/Library/Frameworks -L/Library/Frameworks \
+-	     -framework QtCore -framework ApplicationServices \
+-	     -framework QtGui -framework AppKit -framework Cocoa -lz -lm
+-MOC	   = moc
++QT_CFLAGS     ?= $(shell pkg-config --cflags QtGui QtCore)
++QT_LIBS	      ?= $(shell pkg-config --libs QtGui QtCore)
+ endif
  #
- IPEVERS = 7.0.8
-+INSTALL_DIR = $(DESTDIR)
- #
- # IPEPREFIX is the global prefix for the Ipe directory structure, which
- # you can override individually for any of the specific directories.
+ # --------------------------------------------------------------------

Modified: trunk/dports/graphics/ipe/files/patch-ipe-lua-prefs.lua.diff
===================================================================
--- trunk/dports/graphics/ipe/files/patch-ipe-lua-prefs.lua.diff	2010-07-10 08:37:22 UTC (rev 69568)
+++ trunk/dports/graphics/ipe/files/patch-ipe-lua-prefs.lua.diff	2010-07-10 08:42:41 UTC (rev 69569)
@@ -1,11 +1,11 @@
---- ipe/lua/prefs.lua.orig	2009-11-04 20:56:07.000000000 +0100
-+++ ipe/lua/prefs.lua	2009-11-06 18:38:12.000000000 +0100
-@@ -78,7 +78,7 @@
+--- ipe/lua/prefs.lua.orig	2009-12-09 07:46:54.000000000 +0100
++++ ipe/lua/prefs.lua	2010-07-08 18:47:07.000000000 +0200
+@@ -95,7 +95,7 @@
+ else
+   -- 'sensible-browser' and 'gnome-open' both work on Linux
+   -- prefs.browser = "sensible-browser %s &"
+-  prefs.browser = "gnome-open %s"
++  prefs.browser = "open %s"
+ end
  
- -- How to start browser to show Ipe manual
- -- prefs.browser = "sensible-browser %s &"
--prefs.browser = "gnome-open %s"
-+prefs.browser = "open %s"
- 
  -- Auto-exporting when document is being saved
- -- if auto_export_only_if_exists is true, then the file will only
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20100710/df48db0e/attachment-0001.html>


More information about the macports-changes mailing list