<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Am 30.05.2010 00:59, schrieb Mat:
<blockquote
 cite="mid:AANLkTilhDRf98CS8VJmdooRakhPPpoaV1S4rgGwEBoyp@mail.gmail.com"
 type="cite">
  <pre wrap="">Hi

I add cmake support for dbus-c++ in these days. It can now use
original git source
and build binary/library without autotools.

Would you like to review the patches or give me some advice/suggestion?
  </pre>
</blockquote>
Many thanks, workes good expect two little issues in the cmake stuff  <br>
1. I was forced to add CMAKE_INSTALL_PATH base pathes to the find_... 
statements <br>
2. in the link_directories statement DBUS_LIBS has to be removed
because it contains not only pathes <br>
<br>
I added these files to emerge with two little fixes to
<a class="moz-txt-link-freetext" href="http://websvn.kde.org/trunk/kdesupport/emerge/portage/win32libs-sources/dbus-c%2B%2B-src/">http://websvn.kde.org/trunk/kdesupport/emerge/portage/win32libs-sources/dbus-c%2B%2B-src/</a><br>
<br>
I suggest to get in contact with dbus-c++ maintainer to get these
patches upstream. <br>
<br>
Regards<br>
 Ralf <br>
<br>
<br>
<blockquote
 cite="mid:AANLkTilhDRf98CS8VJmdooRakhPPpoaV1S4rgGwEBoyp@mail.gmail.com"
 type="cite">
  <pre wrap="">
sincerely, Mat.


On Thu, May 20, 2010 at 12:53 AM, Mat <a class="moz-txt-link-rfc2396E" href="mailto:matlinuxer2@gmail.com">&lt;matlinuxer2@gmail.com&gt;</a> wrote:
  </pre>
  <blockquote type="cite">
    <pre wrap="">On Tue, May 18, 2010 at 4:00 PM, Ralf Habacker <a class="moz-txt-link-rfc2396E" href="mailto:ralf.habacker@freenet.de">&lt;ralf.habacker@freenet.de&gt;</a> wrote:
    </pre>
    <blockquote type="cite">
      <pre wrap="">Mat schrieb:
      </pre>
      <blockquote type="cite">
        <pre wrap="">Hi All,
  I use dbus-c++ library in my programs and found that it's great for
c++ based projects.

  I tried to port dbus-c++ to win32, and have some progress these days.
  The libdbusc++ can now work on my winxp :-)
  ( for some simple examples, not yet try some real program, like
inkboard,...etc )

  Patches are as attachment:
    dbus-c++-src-commit.patch is for import into emerge dir.

        </pre>
      </blockquote>
      <pre wrap="">+++ portage/win32libs-sources/dbus-cpp-src/dbus-cpp-src-0.5.0.py
+        self.targets[ver]       =
'<a class="moz-txt-link-freetext" href="http://people.debian.org.tw/~mat/kde-windows/libdbus-c++-%s.tar.gz">http://people.debian.org.tw/~mat/kde-windows/libdbus-c++-%s.tar.gz</a>' % ver

Is this source the same as from
<a class="moz-txt-link-freetext" href="https://sourceforge.net/projects/dbus-cplusplus/">https://sourceforge.net/projects/dbus-cplusplus/</a> ?
      </pre>
    </blockquote>
    <pre wrap="">
Yes. I just updated it from dbus-cplusplus git. It's the same source
to dbus-cpluscplus

    </pre>
    <blockquote type="cite">
      <pre wrap="">
Because this package is mingw only it should print a related hint and
break on msvc
      </pre>
    </blockquote>
    <pre wrap="">
Good, I just added it.

    </pre>
    <blockquote type="cite">
      <pre wrap="">
+++ portage/testing/pthreads-win32/pthreads-win32-2.7.0.py
added to emerge

+++ portage/testing/pkg-config/pkg-config-0.23-3.py
added fixes to emerge

+++ portage/testing/glib/glib-2.24.0-2.py
added fixes to emerge

      </pre>
      <blockquote type="cite">
        <pre wrap="">    dbus-1.pc is for c:\kderoot\lib\pkgconfig\

        </pre>
      </blockquote>
      <pre wrap="">this should also be in the patch
      </pre>
    </blockquote>
    <pre wrap="">Where do you suggestion to attach the patch? ( dbus-src/ pkg-config/
dbus-cpp-src )

    </pre>
    <blockquote type="cite">
      <blockquote type="cite">
        <pre wrap="">    works_for_win32.patch is a patch for dbus-c++-src[1] source code

        </pre>
      </blockquote>
      <pre wrap="">is this patch included in the above mentioned link ? It should not

If patches are not in the archive file it should be added to def
setTargets( self ): by

           self.patchToApply[v] = ( 'xxxx.patch', &lt;number of stripped
leading components from file names&gt; )

where v is the build target.
      </pre>
    </blockquote>
    <pre wrap="">
Good, I have updated to use this method in new file. Thanks for your guidance

    </pre>
    <blockquote type="cite">
      <pre wrap="">


++ bin/utils.py    (working copy)
@@ -913,7 +913,7 @@

 def applyPatch(sourceDir, file, patchLevel='0'):
    """apply single patch"""
-    cmd = "patch -d %s -p%s &lt; %s" % ( sourceDir, patchLevel, file )
+    cmd = "patch -d %s -p%s --binary &lt; %s" % ( sourceDir, patchLevel,
file )

for what is this good ?
      </pre>
    </blockquote>
    <pre wrap="">
Ah, sorry for forget to drop the dirty hack. Please ignore it.

    </pre>
    <blockquote type="cite">
      <pre wrap="">
      </pre>
      <blockquote type="cite">
        <pre wrap="">  Could you help to review these works and give me some advice to push
the works go furthur?

        </pre>
      </blockquote>
      <pre wrap="">I suggest to push the patches to the dbus-c++ project directly and to
use a git source from the original because otherwise there is ongoing
maintenance of the portage package required.
      </pre>
    </blockquote>
    <pre wrap="">
Great.
I found that kde-windows's emerge provide git source packing methods,
it's quite convenient. Thank you!


Now, I encountered some problem.
For dbus-c++ is autotools based source, so it need automake,
autoconf,... programs to gerenerate/update the Makefiles and
"configure" scripts, which blockes the packaging process.

I tried to add autotools into emerge ( in one of attachments ), and
try  to compile it. However it does not work.

Do you have any suggestion about this situation, or would you like to
give some advice or direction how to solve this problem?

Finally, thank you again for your review and advice :-)

sincerely, Mat.

    </pre>
    <blockquote type="cite">
      <pre wrap="">
Regards
 Ralf



_______________________________________________
Kde-windows mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Kde-windows@kde.org">Kde-windows@kde.org</a>
<a class="moz-txt-link-freetext" href="https://mail.kde.org/mailman/listinfo/kde-windows">https://mail.kde.org/mailman/listinfo/kde-windows</a>

      </pre>
    </blockquote>
    <pre wrap="">
    </pre>
    <pre wrap="">
<fieldset class="mimeAttachmentHeader"></fieldset>
_______________________________________________
Kde-windows mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Kde-windows@kde.org">Kde-windows@kde.org</a>
<a class="moz-txt-link-freetext" href="https://mail.kde.org/mailman/listinfo/kde-windows">https://mail.kde.org/mailman/listinfo/kde-windows</a>
    </pre>
  </blockquote>
</blockquote>
<br>
</body>
</html>