[Pkg-kde-extras] Bug#493198: ksplash-engine-moodin(GNU/k*BSD): FTBFS: out of date libtool scripts

2008-08-01 Thread Petr Salinger
Package: ksplash-engine-moodin
Severity: important
Version: 0.4.2-1
Tags: patch
User: [EMAIL PROTECTED]
Usertags: kfreebsd


Hello,


The current version fails to build on GNU/kFreeBSD,
because of outdated libtool.

Here is how to update the libtool in your package:
   cp -f /usr/share/libtool/libtool.m4 admin/libtool.m4.in
   cp -f /usr/share/libtool/ltmain.sh admin/ltmain.sh
   cp -f /usr/share/misc/config.guess admin/config.guess
   cp -f /usr/share/misc/config.sub admin/config.sub

   (alternatively you can update the admin/ directory from the latest
KDE SVN [1] instead).

   make -f admin/Makefile.common

Note that using libtool.m4 from the Debian package is prefered, because
it prunes the package dependencies, as explain by Steve Langasek [2].


Thanks for your cooperation.


[1] http://websvn.kde.org/branches/KDE/3.5/kde-common/admin/
[2] http://lists.debian.org/debian-devel-announce/2005/11/msg00016.html




___
pkg-kde-extras mailing list
pkg-kde-extras@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-kde-extras


[Pkg-kde-extras] Bug#513897: kipi-plugins: FTBFS against libkdcraw4

2009-02-02 Thread Petr Salinger
Package: kipi-plugins
Severity: important
Version: 0.1.5-4

Hi,

the current version fails to build against current
libkdcraw-dev/libkdcraw4 package from unstable.

Petr





___
pkg-kde-extras mailing list
pkg-kde-extras@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-kde-extras


[Pkg-kde-extras] Bug#513920: kasablanca(GNU/k*BSD): spurious AC_PROG_LIBTOOL

2009-02-02 Thread Petr Salinger
Package: kasablanca
Severity: wishlist
Version: 0.4.0.2-4
User: glibc-bsd-de...@lists.alioth.debian.org
Usertags: kfreebsd

Hi,

the current version contains outdated libtool.
For GNU/kFreeBSD this usually means broken library,
so this is catched by automated buildd log filter.

It does not look kasablanca builds shared libraries,
so can you either drop AC_PROG_LIBTOOL from configure.in
or update libtool, version 1.5.2-1 is sufficient.

Thanks

Petr



___
pkg-kde-extras mailing list
pkg-kde-extras@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-kde-extras


[Pkg-kde-extras] Bug#513919: klibido(GNU/k*BSD): spurious AC_PROG_LIBTOOL

2009-02-02 Thread Petr Salinger
Package: klibido
Severity: wishlist
Version: 0.2.5-6
User: glibc-bsd-de...@lists.alioth.debian.org
Usertags: kfreebsd

Hi,

the current version contains outdated libtool.
For GNU/kFreeBSD this usually means broken library,
so this is catched by automated buildd log filter.

It does not look klibido builds shared libraries,
so can you either drop AC_PROG_LIBTOOL from configure.in
or update libtool, version 1.5.2-1 is sufficient.

Thanks

Petr



___
pkg-kde-extras mailing list
pkg-kde-extras@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-kde-extras


[Pkg-kde-extras] Bug#545958: k3b: FTBFS on GNU/kFreeBSD

2009-09-10 Thread Petr Salinger

Package: k3b
Version: 1.0.5-3
Severity: important
Tags: patch
User: debian-...@lists.debian.org
Usertags: kfreebsd

Hi,

the current version fails to build on GNU/kFreeBSD.

It needs some tweaks, please

1) alter libk3bdevice/k3bdevice.h as shown bellow.

2) create kfreebsd specific install file for libk3b3 by
grep -v alsa libk3b3.install  libk3b3.install.kfreebsd

3) either lower Depends on cdrdao to Recommends
   or restrict the depends only for linux architectures by
   cdrdao (= 1.1.7-5) [linux-any]

4) add into Build-Depends also libcam-dev [kfreebsd-i386 kfreebsd-amd64]


Thanks for your cooperation.

Petr


--- libk3bdevice/k3bdevice.h
+++ libk3bdevice/k3bdevice.h
@@ -27,6 +27,11 @@
 #include k3bmsf.h
 #include k3bdevice_export.h

+#if defined(__FreeBSD_kernel__)
+#undef Q_OS_LINUX
+#define Q_OS_FREEBSD 1
+#endif
+
 #ifdef Q_OS_FREEBSD
 struct cam_device;
 #endif




___
pkg-kde-extras mailing list
pkg-kde-extras@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-kde-extras


[Pkg-kde-extras] Bug#591745: knemo: FTBFS on GNU/kFreeBSD

2010-08-05 Thread Petr Salinger

Package: knemo
Version: 0.6.3-1
Severity: important
Tags: patch
User: debian-...@lists.debian.org
Usertags: kfreebsd


Hi,

the current version fails to build on GNU/kFreeBSD.

It needs small tweaks. Please find attached patch with tweaks.
Beware, small fix in kfreebsd-kernel-headers is also needed,
it is pending for 0.54.

It would also be nice if you can ask upstream
to include attached patch.

Thanks in advance

Petr

--- knemo-0.6.3.orig/src/knemod/syncstats/stats_vnstat.cpp
+++ knemo-0.6.3/src/knemod/syncstats/stats_vnstat.cpp
@@ -84,7 +84,7 @@
 size_t len = sizeof( bootTime );
 int mib[2] = { CTL_KERN, KERN_BOOTTIME };
 
-if ( sysctl( mib, 2, btm, len, NULL, 0 ) = 0 )
+if ( sysctl( mib, 2, bootTime, len, NULL, 0 ) = 0 )
 mSysBtime = bootTime.tv_sec;
 #endif
 }
--- knemo-0.6.3.orig/src/knemod/backends/bsdbackend.cpp
+++ knemo-0.6.3/src/knemod/backends/bsdbackend.cpp
@@ -53,6 +53,11 @@
 #include kio/global.h
 #include stdio.h
 
+#ifdef __GLIBC__
+#include unistd.h
+#include netinet/ether.h
+#endif
+
 #include config-knemo.h
 #include bsdbackend.h
 #include utils.h
___
pkg-kde-extras mailing list
pkg-kde-extras@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-kde-extras