[26265] trunk/dports/gnustep

source_changes at macosforge.org source_changes at macosforge.org
Sun Jun 17 15:08:24 PDT 2007


Revision: 26265
          http://trac.macosforge.org/projects/macports/changeset/26265
Author:   yves at macports.org
Date:     2007-06-17 15:08:24 -0700 (Sun, 17 Jun 2007)

Log Message:
-----------
Now prepared for gnutep-make-2.0

Modified Paths:
--------------
    trunk/dports/gnustep/gorm/Portfile
    trunk/dports/gnustep/gworkspace/Portfile
    trunk/dports/gnustep/system-preferences/Portfile

Added Paths:
-----------
    trunk/dports/gnustep/Etoile/
    trunk/dports/gnustep/Etoile/Portfile
    trunk/dports/gnustep/Etoile/files/
    trunk/dports/gnustep/Etoile/files/patch-AddressManager-GNUmakefile
    trunk/dports/gnustep/Etoile/files/patch-Io-GNUmakefile.tool
    trunk/dports/gnustep/Etoile/files/patch-PopplerKit-GNUmakefile
    trunk/dports/gnustep/Etoile/files/patch-PopplerKit-config.sh
    trunk/dports/gnustep/Etoile/files/patch-etoile.make
    trunk/dports/gnustep/Etoile/files/patch-xmpp-GNUmakefile
    trunk/dports/gnustep/gworkspace/files/
    trunk/dports/gnustep/gworkspace/files/patch-PDFKit
    trunk/dports/gnustep/system-preferences/files/
    trunk/dports/gnustep/system-preferences/files/patch-installation-domain

Added: trunk/dports/gnustep/Etoile/Portfile
===================================================================
--- trunk/dports/gnustep/Etoile/Portfile	                        (rev 0)
+++ trunk/dports/gnustep/Etoile/Portfile	2007-06-17 22:08:24 UTC (rev 26265)
@@ -0,0 +1,95 @@
+# $Id$
+
+PortSystem  1.0
+PortGroup   gnustep 1.0
+
+name            Etoile
+version         0.1.9
+platforms       darwin
+maintainers     yves at macports.org
+homepage        http://www.etoile-project.org/
+
+description     GNUstep based user environnement
+long_description \
+    Etoile intends to be an innovative GNUstep based user environnement \
+    built from the ground up on highly modular and light components \
+    with project and document orientation in mind.
+    
+fetch.type      svn
+svn.tag         1993
+svn.url         http://svn.gna.org/svn/etoile/stable/Etoile
+
+############################# DEBUG FETCH ##############################
+#fetch {
+#    file copy ${portpath}/Etoile ${workpath}
+#}
+########################################################################
+
+depends_build       bin:svn:subversion
+depends_lib         port:SQLClient \
+                    port:dbus \
+                    port:oniguruma5 \
+                    port:poppler
+
+worksrcdir          ${name}
+
+patchfiles          patch-etoile.make \
+                    patch-PopplerKit-GNUmakefile \
+                    patch-PopplerKit-config.sh \
+                    patch-xmpp-GNUmakefile \
+                    patch-AddressManager-GNUmakefile
+
+array set gnustep.post_flags {
+    Frameworks/AddressesKit/Frameworks/AddressView  -lAddresses
+    Frameworks/BookmarkKit                          -lCollectionKit
+    Frameworks/SystemConfig                         -lX11
+}
+
+post-patch {
+    reinplace "s|SCSound.m||" \
+        ${worksrcpath}/Frameworks/SystemConfig/Source/GNUmakefile
+    reinplace "s|/usr|${prefix}|g" \
+        ${worksrcpath}/Services/Private/System/GNUmakefile
+    reinplace "s|\$(GNUSTEP_INSTALLATION_DIR)|${destroot}${prefix}/GNUstep/Local|g" \
+		Services/User/Grr/Components/ArticleOperations/GNUmakefile \
+		Services/User/Grr/Components/ArticleTable/GNUmakefile \
+		Services/User/Grr/Components/ArticleView/GNUmakefile \
+		Services/User/Grr/Components/DatabaseOperations/GNUmakefile \
+		Services/User/Grr/Components/DatabaseTreeView/GNUmakefile \
+		Services/User/Grr/Components/Fonts/GNUmakefile \
+		Services/User/Grr/Components/Proxy/GNUmakefile \
+		Services/User/Grr/Components/Searching/GNUmakefile \
+		Services/User/Grr/Components/SubscriptionPanel/GNUmakefile \
+		Services/User/Grr/Components/TreeDatabase/GNUmakefile \
+		Services/User/Grr/Components/URLOpening/GNUmakefile \
+		Services/User/Grr/Development/Deprecated/ArticleDatabase/GNUmakefile \
+		Services/User/Grr/Development/Deprecated/FeedTable/GNUmakefile
+}
+
+# This needs StepTalk, not yet in MacPorts
+build.args      corner=no
+destroot.args   corner=no
+
+post-destroot {
+    cd ${destroot}${prefix}
+    xinstall -d GNUstep/System/Library/Etoile
+    xinstall -m 644 ${worksrcpath}/Services/Private/System/SystemTaskList.plist \
+        GNUstep/System/Library/Etoile
+    xinstall -d share/xsessions
+    xinstall -m 644 ${worksrcpath}/Services/Private/System/etoile.desktop \
+        share/xsessions
+    xinstall -d GNUstep/Local/Library/Themes
+    file copy ${worksrcpath}/Bundles/Camaelon/Nesedah.theme \
+        GNUstep/Local/Library/Themes
+    file copy ${worksrcpath}/Services/User/Calc/Calc.app \
+        GNUstep/Local/Applications
+    system "echo \". ${prefix}/GNUstep/System/Library/Makefiles/GNUstep.sh; \
+                etoile_system\" > bin/etoile &&
+                chmod 755 bin/etoile &&
+                cd GNUstep/Local/Tools &&
+                ln -s ../Applications/Calc.app/Calc &&
+                cd ../Library/Headers &&
+                rm -f AddressBook &&
+                ln -s Addresses AddressBook"
+}
+


Property changes on: trunk/dports/gnustep/Etoile/Portfile
___________________________________________________________________
Name: svn:keywords
   + Id
Name: svn:eol-style
   + native

Added: trunk/dports/gnustep/Etoile/files/patch-AddressManager-GNUmakefile
===================================================================
--- trunk/dports/gnustep/Etoile/files/patch-AddressManager-GNUmakefile	                        (rev 0)
+++ trunk/dports/gnustep/Etoile/files/patch-AddressManager-GNUmakefile	2007-06-17 22:08:24 UTC (rev 26265)
@@ -0,0 +1,10 @@
+--- Services/User/AddressManager/GNUmakefile.orig	2007-06-17 14:12:06.000000000 -0400
++++ Services/User/AddressManager/GNUmakefile	2007-06-17 14:55:39.000000000 -0400
+@@ -29,6 +29,7 @@
+ 
+ -include GNUmakefile.preamble
+ -include GNUmakefile.local
++include ../../../etoile.make
+ include $(GNUSTEP_MAKEFILES)/application.make
+ -include GNUmakefile.postamble
+ 

Added: trunk/dports/gnustep/Etoile/files/patch-Io-GNUmakefile.tool
===================================================================
--- trunk/dports/gnustep/Etoile/files/patch-Io-GNUmakefile.tool	                        (rev 0)
+++ trunk/dports/gnustep/Etoile/files/patch-Io-GNUmakefile.tool	2007-06-17 22:08:24 UTC (rev 26265)
@@ -0,0 +1,8 @@
+--- Languages/Io/GNUmakefile.tool.orig	2007-05-07 09:22:47.000000000 -0400
++++ Languages/Io/GNUmakefile.tool	2007-05-07 09:23:04.000000000 -0400
+@@ -1,4 +1,4 @@
+-ifeq ($(FOUNDATION_LIB), apple)
++ifeq ($(findstring darwin, $(GNUSTEP_TARGET_OS)), darwin)
+   # For Vector
+   ADDITIONAL_LDFLAGS += -framework Accelerate -faltivec
+   # Only for Darwin 

Added: trunk/dports/gnustep/Etoile/files/patch-PopplerKit-GNUmakefile
===================================================================
--- trunk/dports/gnustep/Etoile/files/patch-PopplerKit-GNUmakefile	                        (rev 0)
+++ trunk/dports/gnustep/Etoile/files/patch-PopplerKit-GNUmakefile	2007-06-17 22:08:24 UTC (rev 26265)
@@ -0,0 +1,28 @@
+--- Frameworks/PopplerKit/GNUmakefile.orig	2007-05-02 21:58:52.000000000 -0400
++++ Frameworks/PopplerKit/GNUmakefile	2007-05-07 11:34:43.000000000 -0400
+@@ -26,7 +26,6 @@
+ PopplerKit_DEPLOY_WITH_CURRENT_VERSION = yes
+ 
+ PopplerKit_SUBPROJECTS = \
+-bindings \
+ MissingKit
+ 
+ PopplerKit_HEADER_FILES = \
+@@ -65,6 +64,7 @@
+ 
+ ADDITIONAL_OBJCFLAGS = -Wall -Wno-import -DGNUSTEP
+ ADDITIONAL_INCLUDE_DIRS = -I./MissingKit
++ADDITIONAL_LDFLAGS += bindings/obj/*.o
+ 
+ ifeq ($(HAVE_CAIRO), YES)
+    ADDITIONAL_OBJCFLAGS += -DHAVE_CAIRO
+@@ -86,6 +86,9 @@
+ 
+ config.make:
+ 	sh config.sh
++	make -C bindings --no-keep-going
++	-$(RM) bindings/obj/subproject.o
+ 
+ after-distclean::
+ 	-$(RM) config.make
++	make -C bindings --no-keep-going distclean

Added: trunk/dports/gnustep/Etoile/files/patch-PopplerKit-config.sh
===================================================================
--- trunk/dports/gnustep/Etoile/files/patch-PopplerKit-config.sh	                        (rev 0)
+++ trunk/dports/gnustep/Etoile/files/patch-PopplerKit-config.sh	2007-06-17 22:08:24 UTC (rev 26265)
@@ -0,0 +1,9 @@
+--- Frameworks/PopplerKit/config.sh.orig	2007-04-29 10:13:37.000000000 -0400
++++ Frameworks/PopplerKit/config.sh	2007-04-29 10:16:15.000000000 -0400
+@@ -87,5 +89,6 @@
+ # we add -I/usr/X11R6/include for older FreeBSD version.
+ echo "ADDITIONAL_INCLUDE_DIRS += -I/usr/X11R6/include" >> config.make
+ echo "HAVE_CAIRO=${HAVE_CAIRO}" >>config.make
++echo "CXX=g++-mp-4.2" >> config.make
+ 
+ exit 0

Added: trunk/dports/gnustep/Etoile/files/patch-etoile.make
===================================================================
--- trunk/dports/gnustep/Etoile/files/patch-etoile.make	                        (rev 0)
+++ trunk/dports/gnustep/Etoile/files/patch-etoile.make	2007-06-17 22:08:24 UTC (rev 26265)
@@ -0,0 +1,10 @@
+--- etoile.make.orig	2007-04-30 01:07:49.000000000 -0400
++++ etoile.make	2007-05-07 12:09:15.000000000 -0400
+@@ -240,6 +240,7 @@
+ # developer. For example, it's commonly equals to ./shared_obj
+ 
+ export ADDITIONAL_LIB_DIRS += -L$(BUILD_DIR)
++export SHARED_LD_POSTFLAGS += -lobjc -lgnustep-base -lgnustep-gui
+ 
+ # We disable warnings about #import being deprecated. They occur with old GCC
+ # version (before 4.0 iirc).

Added: trunk/dports/gnustep/Etoile/files/patch-xmpp-GNUmakefile
===================================================================
--- trunk/dports/gnustep/Etoile/files/patch-xmpp-GNUmakefile	                        (rev 0)
+++ trunk/dports/gnustep/Etoile/files/patch-xmpp-GNUmakefile	2007-06-17 22:08:24 UTC (rev 26265)
@@ -0,0 +1,11 @@
+--- Services/User/Jabber/xmpp/GNUmakefile.orig	2007-05-07 12:32:43.000000000 -0400
++++ Services/User/Jabber/xmpp/GNUmakefile	2007-05-07 19:08:25.000000000 -0400
+@@ -7,6 +7,8 @@
+ ADDITIONAL_INCLUDE_DIRS += -I../TRXML/
+ XMPP_AGSDOC_FLAGS += -MakeFrames YES
+ 
++ADDITIONAL_LIB_DIRS += -L../TRXML/obj -lTRXML -lssl -L../../../../Build -lAddresses
++
+ XMPP_OBJC_FILES = \
+ 					ChatLog.m\
+ 					CompareHack.m\

Modified: trunk/dports/gnustep/gorm/Portfile
===================================================================
--- trunk/dports/gnustep/gorm/Portfile	2007-06-17 22:04:38 UTC (rev 26264)
+++ trunk/dports/gnustep/gorm/Portfile	2007-06-17 22:08:24 UTC (rev 26265)
@@ -4,7 +4,7 @@
 PortGroup   gnustep 1.0
 
 name        gorm
-version     1.1.0
+version     1.2.1
 platforms   darwin
 maintainers yves at macports.org
 
@@ -14,7 +14,7 @@
     and is GNUstep's easy-to-use interface designer.
 
 master_sites  gnustep:dev-apps
-checksums     md5 4eef5a043c6c07ca7269add9ee286b38
+checksums     md5 0030f33e8ba0a86e1a53fcdddb585615
 
 post-patch {
     cd ${worksrcpath}/Palettes
@@ -29,5 +29,6 @@
 
 array set gnustep.post_flags {
     GormCore "-lgnustep-base -lgnustep-gui -lGorm -lGormObjCHeaderParser"
-    GormPrefs "-lGorm -lGormCore -L../GormObjCHeaderParser/shared_obj -lGormObjCHeaderParser"
+    GormPrefs "-lGorm -lGormCore -L../GormObjCHeaderParser/obj -lGormObjCHeaderParser"
 }
+

Modified: trunk/dports/gnustep/gworkspace/Portfile
===================================================================
--- trunk/dports/gnustep/gworkspace/Portfile	2007-06-17 22:04:38 UTC (rev 26264)
+++ trunk/dports/gnustep/gworkspace/Portfile	2007-06-17 22:08:24 UTC (rev 26265)
@@ -4,7 +4,7 @@
 PortGroup   gnustep 1.0
 
 name        gworkspace
-version     0.8.5
+version     0.8.6
 platforms   darwin
 maintainers yves at macports.org
 homepage    http://www.gnustep.it/enrico/gworkspace/
@@ -18,20 +18,20 @@
 depends_lib-append port:system-preferences
 
 master_sites  ${homepage}
-checksums     md5 b4de57d8310df98fb4f6e3c752138785
+checksums     md5 16dc6b077517b60897cc0d057bb803f5
 
 worksrcdir    GWorkspace-${version}
 
 array set gnustep.post_flags {
     DBKit "-lgnustep-base"
     FSNode "-lgnustep-base -lgnustep-gui"
-    Inspector "-lgnustep-base -lgnustep-gui -lFSNode"
+    Inspector "-lgnustep-base -lgnustep-gui \
+        -L../FSNode/FSNode.framework/Versions/Current -lFSNode"
     Operation "-lgnustep-base -lgnustep-gui"
 }
 
 use_configure yes
 
-gnustep.domain  System
 post-destroot {
     xinstall -d ${destroot}${prefix}/GNUstep/Local/Applications
     cd ${worksrcpath}/Apps_wrappers
@@ -39,10 +39,7 @@
 }
 
 variant with_pdfkit {
-	depends_lib-append	port:PDFKit
-	post-patch {
-		reinplace "s|-lOperation|-lOperation -lPDFKit|" \
-        	${worksrcpath}/GWorkspace/GNUmakefile.in
-	}
+	depends_lib-append	port:pdfkit
+	patchfiles-append   patch-PDFKit
 }
 

Added: trunk/dports/gnustep/gworkspace/files/patch-PDFKit
===================================================================
--- trunk/dports/gnustep/gworkspace/files/patch-PDFKit	                        (rev 0)
+++ trunk/dports/gnustep/gworkspace/files/patch-PDFKit	2007-06-17 22:08:24 UTC (rev 26265)
@@ -0,0 +1,38 @@
+diff -u -r /tmp/GWorkspace-0.8.5/Inspector/aclocal.m4 ./Inspector/aclocal.m4
+--- /tmp/GWorkspace-0.8.5/Inspector/aclocal.m4	2007-02-23 14:14:30.000000000 +0100
++++ ./Inspector/aclocal.m4	2007-04-21 15:11:36.000000000 +0200
+@@ -57,6 +57,15 @@
+ 
+ AC_DEFUN(AC_CHECK_PDFKIT_DARWIN,[
+   AC_MSG_CHECKING([for PDFKit])
++  # For backwards compatibility, define GNUSTEP_SYSTEM_HEADERS from
++  # GNUSTEP_SYSTEM_ROOT if not set yet.
++  if test x"$GNUSTEP_SYSTEM_HEADERS" = x""; then
++    GNUSTEP_SYSTEM_HEADERS="$GNUSTEP_SYSTEM_ROOT/Library/Headers"
++  fi
++  if test x"$GNUSTEP_LOCAL_HEADERS" = x""; then
++    GNUSTEP_LOCAL_HEADERS="$GNUSTEP_LOCAL_ROOT/Library/Headers"
++  fi
++
+   PDF_H="PDFKit/PDFDocument.h"
+   PDF_H_PATH="$GNUSTEP_SYSTEM_HEADERS/$PDF_H"
+ 
+diff -u -r /tmp/GWorkspace-0.8.5/Inspector/configure ./Inspector/configure
+--- /tmp/GWorkspace-0.8.5/Inspector/configure	2007-02-23 14:14:30.000000000 +0100
++++ ./Inspector/configure	2007-04-21 15:11:47.000000000 +0200
+@@ -3261,6 +3261,15 @@
+ 
+   echo "$as_me:$LINENO: checking for PDFKit" >&5
+ echo $ECHO_N "checking for PDFKit... $ECHO_C" >&6
++  # For backwards compatibility, define GNUSTEP_SYSTEM_HEADERS from
++  # GNUSTEP_SYSTEM_ROOT if not set yet.
++  if test x"$GNUSTEP_SYSTEM_HEADERS" = x""; then
++    GNUSTEP_SYSTEM_HEADERS="$GNUSTEP_SYSTEM_ROOT/Library/Headers"
++  fi
++  if test x"$GNUSTEP_LOCAL_HEADERS" = x""; then
++    GNUSTEP_LOCAL_HEADERS="$GNUSTEP_LOCAL_ROOT/Library/Headers"
++  fi
++
+   PDF_H="PDFKit/PDFDocument.h"
+   PDF_H_PATH="$GNUSTEP_SYSTEM_HEADERS/$PDF_H"
+ 

Modified: trunk/dports/gnustep/system-preferences/Portfile
===================================================================
--- trunk/dports/gnustep/system-preferences/Portfile	2007-06-17 22:04:38 UTC (rev 26264)
+++ trunk/dports/gnustep/system-preferences/Portfile	2007-06-17 22:08:24 UTC (rev 26265)
@@ -5,9 +5,11 @@
 
 name        system-preferences
 version     1.0.1
+revision    1
 platforms   darwin
 maintainers yves at macports.org
 homepage    http://www.gnustep.it/enrico/system-preferences/
+
 description  GNUstep's System Preferences.
 long_description \
     System Preferences is a clone of the \
@@ -15,42 +17,25 @@
     based on a GNUstep implementation of the \
     PreferencePanes framework.
 
-depends_lib-append   port:PreferencePanes
-master_sites  ${homepage}
-checksums     md5 e7524b27588b1705d4b6cc1fcdd21f1f
+depends_lib-append  port:PreferencePanes
 
-distname      systempreferences-${version}
+master_sites    ${homepage}
+checksums       md5 e7524b27588b1705d4b6cc1fcdd21f1f
+distname        systempreferences-${version}
 
+patchfiles      patch-installation-domain
 
 build {
-    ui_debug "${build.cmd} ${build.target} ${build.args}"
-    system "\
-        . ${prefix}/GNUstep/System/Library/Makefiles/GNUstep.sh \
-        && \
-        cd ${worksrcpath}/SystemPreferences \
-        && \
-        ${build.cmd} ${build.target} ${build.args} \
-        && \
-        cd ${worksrcpath}/Modules \
-        && \
-        ${build.cmd} ${build.target} ${build.args}"
+    cd ${worksrcpath}
+    system "export ${build.env} &&
+        gnumake messages=yes [set_gnustep_make] -C SystemPreferences &&
+        gnumake messages=yes [set_gnustep_make] -C Modules"
 }
 
 destroot {
-    set destroot.destdir \
-        GNUSTEP_INSTALLATION_DIR=${destroot}${prefix}/GNUstep/System
-    ui_debug "${destroot.cmd} ${destroot.target} \
-            ${destroot.args} ${destroot.destdir}"
-    system "\
-        . ${prefix}/GNUstep/System/Library/Makefiles/GNUstep.sh \
-        && \
-        cd ${worksrcpath}/SystemPreferences \
-        && \
-        ${destroot.cmd} ${destroot.target} \
-            ${destroot.args} ${destroot.destdir} \
-        && \
-        cd ${worksrcpath}/Modules \
-        && \
-        ${destroot.cmd} ${destroot.target} \
-            ${destroot.args} ${destroot.destdir}"
+    cd ${worksrcpath}
+    system "export ${destroot.env} &&
+        gnumake install ${destroot.destdir} messages=yes [set_gnustep_make] \
+            -C SystemPreferences &&
+        gnumake install ${destroot.destdir} messages=yes [set_gnustep_make] -C Modules"
 }

Added: trunk/dports/gnustep/system-preferences/files/patch-installation-domain
===================================================================
--- trunk/dports/gnustep/system-preferences/files/patch-installation-domain	                        (rev 0)
+++ trunk/dports/gnustep/system-preferences/files/patch-installation-domain	2007-06-17 22:08:24 UTC (rev 26265)
@@ -0,0 +1,75 @@
+diff -u -r /tmp/systempreferences-1.0.1/Modules/Defaults/GNUmakefile ./Modules/Defaults/GNUmakefile
+--- /tmp/systempreferences-1.0.1/Modules/Defaults/GNUmakefile	2006-02-23 12:28:54.000000000 +0100
++++ ./Modules/Defaults/GNUmakefile	2007-04-20 14:41:19.000000000 +0200
+@@ -1,6 +1,6 @@
+ 
+ include $(GNUSTEP_MAKEFILES)/common.make
+-GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
++GNUSTEP_INSTALLATION_DOMAIN = SYSTEM
+ 
+ BUNDLE_NAME = Defaults
+ BUNDLE_EXTENSION = .prefPane
+diff -u -r /tmp/systempreferences-1.0.1/Modules/FileSystem/GNUmakefile ./Modules/FileSystem/GNUmakefile
+--- /tmp/systempreferences-1.0.1/Modules/FileSystem/GNUmakefile	2006-02-23 12:28:53.000000000 +0100
++++ ./Modules/FileSystem/GNUmakefile	2007-04-20 14:41:34.000000000 +0200
+@@ -1,6 +1,6 @@
+ 
+ include $(GNUSTEP_MAKEFILES)/common.make
+-GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
++GNUSTEP_INSTALLATION_DOMAIN = SYSTEM
+ 
+ BUNDLE_NAME = FileSystem
+ BUNDLE_EXTENSION = .prefPane
+diff -u -r /tmp/systempreferences-1.0.1/Modules/ModifierKeys/GNUmakefile ./Modules/ModifierKeys/GNUmakefile
+--- /tmp/systempreferences-1.0.1/Modules/ModifierKeys/GNUmakefile	2006-02-23 12:28:56.000000000 +0100
++++ ./Modules/ModifierKeys/GNUmakefile	2007-04-20 14:41:43.000000000 +0200
+@@ -1,5 +1,5 @@
+ include $(GNUSTEP_MAKEFILES)/common.make
+-GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
++GNUSTEP_INSTALLATION_DOMAIN = SYSTEM
+ 
+ BUNDLE_NAME = ModifierKeys
+ BUNDLE_EXTENSION = .prefPane
+diff -u -r /tmp/systempreferences-1.0.1/Modules/Template/GNUmakefile ./Modules/Template/GNUmakefile
+--- /tmp/systempreferences-1.0.1/Modules/Template/GNUmakefile	2006-02-23 12:29:09.000000000 +0100
++++ ./Modules/Template/GNUmakefile	2007-04-20 14:41:49.000000000 +0200
+@@ -1,6 +1,6 @@
+ 
+ include $(GNUSTEP_MAKEFILES)/common.make
+-GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
++GNUSTEP_INSTALLATION_DOMAIN = SYSTEM
+ 
+ BUNDLE_NAME = TemplateModule
+ BUNDLE_EXTENSION = .prefPane
+diff -u -r /tmp/systempreferences-1.0.1/Modules/TimeZone/GNUmakefile ./Modules/TimeZone/GNUmakefile
+--- /tmp/systempreferences-1.0.1/Modules/TimeZone/GNUmakefile	2006-02-23 12:29:07.000000000 +0100
++++ ./Modules/TimeZone/GNUmakefile	2007-04-20 14:41:53.000000000 +0200
+@@ -1,6 +1,6 @@
+ 
+ include $(GNUSTEP_MAKEFILES)/common.make
+-GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
++GNUSTEP_INSTALLATION_DOMAIN = SYSTEM
+ 
+ BUNDLE_NAME = TimeZone
+ BUNDLE_EXTENSION = .prefPane
+diff -u -r /tmp/systempreferences-1.0.1/Modules/Volumes/GNUmakefile ./Modules/Volumes/GNUmakefile
+--- /tmp/systempreferences-1.0.1/Modules/Volumes/GNUmakefile	2006-02-23 12:29:08.000000000 +0100
++++ ./Modules/Volumes/GNUmakefile	2007-04-20 14:41:58.000000000 +0200
+@@ -1,6 +1,6 @@
+ 
+ include $(GNUSTEP_MAKEFILES)/common.make
+-GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
++GNUSTEP_INSTALLATION_DOMAIN = SYSTEM
+ 
+ BUNDLE_NAME = Volumes
+ BUNDLE_EXTENSION = .prefPane
+diff -u -r /tmp/systempreferences-1.0.1/SystemPreferences/GNUmakefile ./SystemPreferences/GNUmakefile
+--- /tmp/systempreferences-1.0.1/SystemPreferences/GNUmakefile	2006-02-23 12:28:52.000000000 +0100
++++ ./SystemPreferences/GNUmakefile	2007-04-20 14:42:10.000000000 +0200
+@@ -1,5 +1,5 @@
+ 
+-GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)
++GNUSTEP_INSTALLATION_DOMAIN = SYSTEM
+ 
+ include $(GNUSTEP_MAKEFILES)/common.make
+ 

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.macosforge.org/pipermail/macports-changes/attachments/20070617/193b0a37/attachment.html


More information about the macports-changes mailing list