Package: gambc
Severity: important
Tags: patch
Hi,
currently your package FTBFS on GNU/kFreeBSD with the following errors:
> find debian/gambc-doc/usr/share/doc/gambc-doc/examples \
> -name "makefile*" -exec rm -f {} \;
> dh_install --exclude=makefile --sourcedir=debian/tmp/usr
> dh_install: libgambc4 missing files (lib/*.so.*), aborting
> make: *** [binary-arch] Error 1
Full build logs are available at
<http://experimental.ftbfs.de/build.php?arch=kfreebsd-i386&pkg=gambc>.
The attached patch has to be applied after all dpatch files, and could
be merged with 100_pass_soname_when_linking.dpatch.
Cheers,
--
Cyril Brulebois
--- gambc-4.0~b20/configure 2007-03-08 20:09:01.564342000 +0100
+++ gambc-4.0~b20/configure 2007-03-08 20:09:30.000000000 +0100
@@ -27354,6 +27354,10 @@
SETDLPATH="LD_LIBRARY_PATH=\$(rootfromhere)/lib:\${LD_LIBRARY_PATH}"
;;
+ kfreebsd*) GAMBCLIB=$LIB_VERSION
+
SETDLPATH="LD_LIBRARY_PATH=\$(rootfromhere)/lib:\${LD_LIBRARY_PATH}"
+ ;; # Same userland as for linux*
+
*) GAMBCLIB="libgambc.so"
SETDLPATH="LD_LIBRARY_PATH=\$(rootfromhere)/lib:\${LD_LIBRARY_PATH}"
;;
--- gambc-4.0~b20/configure.ac 2007-03-08 20:09:01.638628000 +0100
+++ gambc-4.0~b20/configure.ac 2007-03-08 20:09:49.000000000 +0100
@@ -1089,6 +1089,10 @@
SETDLPATH="LD_LIBRARY_PATH=\$(rootfromhere)/lib:\${LD_LIBRARY_PATH}"
;;
+ kfreebsd*) GAMBCLIB=$LIB_VERSION
+
SETDLPATH="LD_LIBRARY_PATH=\$(rootfromhere)/lib:\${LD_LIBRARY_PATH}"
+ ;; # Same userland as for linux*
+
*) GAMBCLIB="libgambc.so"
SETDLPATH="LD_LIBRARY_PATH=\$(rootfromhere)/lib:\${LD_LIBRARY_PATH}"
;;