Update of /cvsroot/fink/dists/10.3/unstable/main/finkinfo/devel
In directory 
sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv27533/10.3/unstable/main/finkinfo/devel

Modified Files:
        esvn.info 
Added Files:
        esvn.patch 
Log Message:
New upstream version (0.6.11)
- Now works with gcc4 on 10.4
- Needs some patching for timezone use and includes


--- NEW FILE: esvn.patch ---
diff -Naur esvn_orig/src/entries_parser.cpp esvn/src/entries_parser.cpp
--- esvn_orig/src/entries_parser.cpp    2006-11-17 11:54:01.000000000 -0600
+++ esvn/src/entries_parser.cpp 2006-11-16 16:18:12.000000000 -0600
@@ -299,8 +299,16 @@
 #if (_WINDOWS || ESVN_WIN )
        utc_time -= _timezone;
 #else
+#if (__DARWIN_X11__)
+       struct tm newtime;
+       time_t thetime;
+       time(&thetime);
+       localtime_r(&thetime, &newtime);
+       utc_time -= newtime.tm_gmtoff;
+#else
        utc_time -= timezone;
 #endif
+#endif
 
 #endif
 
diff -Naur esvn_orig/esvn.pro esvn/esvn.pro
--- esvn_orig/esvn.pro  2006-11-17 12:03:23.000000000 -0600
+++ esvn/esvn.pro       2006-11-17 12:28:52.000000000 -0600
@@ -268,6 +268,7 @@
   MOC_DIR = .moc
   OBJECTS_DIR = .obj
   DEFINES+= VERSION=\"$$VER\"
+  INCLUDEPATH = src/
 }
 
 win32 {
diff -Naur esvn_orig/.ui/frm_main.ui esvn/.ui/frm_main.ui
--- esvn_orig/.ui/frm_main.ui   2006-11-17 12:34:39.000000000 -0600
+++ esvn/.ui/frm_main.ui        2006-11-17 12:39:40.000000000 -0600
@@ -945,7 +945,6 @@
 <customwidgets>
     <customwidget>
         <class>Cmd_LineEdit</class>
-        <header location="global">src/cmd_lineedit.h</header>
         <sizehint>
             <width>-1</width>
             <height>-1</height>
@@ -3006,7 +3005,4 @@
 </slots>
 <pixmapinproject/>
 <layoutdefaults spacing="1" margin="1"/>
-<includehints>
-    <includehint>cmd_lineedit.h</includehint>
-</includehints>
 </UI>

Index: esvn.info
===================================================================
RCS file: /cvsroot/fink/dists/10.3/unstable/main/finkinfo/devel/esvn.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- esvn.info   4 Apr 2006 21:43:31 -0000       1.4
+++ esvn.info   17 Nov 2006 19:13:53 -0000      1.5
@@ -1,6 +1,6 @@
 Package: esvn
-Version: 0.6.8
-Revision: 11
+Version: 0.6.11
+Revision: 1
 Description: GUI frontend for Subversion (QT-based)
 License: GPL
 Maintainer: Christian Schaffner <[EMAIL PROTECTED]>
@@ -12,13 +12,16 @@
 
 # Unpack Phase:
 Source: http://esvn.umputun.com/%n-%v-1.tar.gz
-Source-MD5: 1682b7a21217e108cc00cc95b55ffe72
+Source-MD5: 2ded6a349fc8692631f781bbb475fadc
 SourceDirectory: %n
 
+#Patch Phase:
+Patch: %n.patch
+
 # Compile Phase:
 GCC: 3.3
 CompileScript: <<
- make
+ make QTDIR=%p/lib/qt3
 <<
 
 # Install Phase:
@@ -53,4 +56,9 @@
 In the options dialog you could set as Browser 'launch' and as Diff 
 'tkdiff'. Both utilies are available from Fink.
 <<
+DescPort: <<
+entries_parser.cpp needs to be patched since timezone is not defined
+as a number on darwin, need to use localtime_r->tm_gmtoff instead.
+Also some patching of includes for frm_main.cpp is needed.
+<<
 Homepage: http://esvn.umputun.com/


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits

Reply via email to