Bug#730976: handbrake: FTBFS on kfreebsd-*

2014-09-13 Thread Petr Salinger

tags -1 + patch
--

It sufficess to link with pthread, using patch bellow.

Cheers

Petr

--- test/module.defs
+++ test/module.defs
@@ -46,6 +46,8 @@
 TEST.GCC.l += iconv
 else ifeq ($(BUILD.system),linux)
 TEST.GCC.l += pthread dl m
+else ifeq ($(BUILD.system),kfreebsd)
+TEST.GCC.l += pthread dl m
 else ifeq ($(BUILD.system),solaris)
 TEST.GCC.l += pthread nsl socket iconv
 TEST.GCC.D += _POSIX_C_SOURCE=200112L __EXTENSIONS__

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#712687: missing include dir in pkgconfig/flac.pc

2013-06-18 Thread Petr Salinger

Package: libflac-dev
Version: 1.3.0-1
Severity: serious
Tags: patch
User: debian-...@lists.debian.org
Usertags: kfreebsd

Hi.

The /usr/lib/x86_64-kfreebsd-gnu/pkgconfig/flac.pc

used to contain:
Cflags: -I${includedir}/FLAC

now it contains:
Cflags: -I${includedir}

It breaks build of vlc.

Petr

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#712516: vlc: RC: FTBFS on kfreebsd-i386 with vlc 2.0.7-1

2013-06-18 Thread Petr Salinger

Hello kfreebsd maintainers,
VLC 2.0.7 FTBFS with kfreebsd-i386. It used to build fine with VLC 2.0.6.


It failed in the same way also under kfreebsd-amd64.
https://buildd.debian.org/status/logs.php?pkg=vlcarch=kfreebsd-amd64

It builds for me under kfreebsd-amd64, using today sid,
modulo fix for #712687 in flac.

I suggest to fix flac and after that retry on buildd.

Petr

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#578622: mplayer: FTBFS on kfreebsd-amd64 (vidix disable needed)

2010-04-23 Thread Petr Salinger

I can understand your position if you are only a porter and not a direct
maintainer of a package.  However, I have seen package maintainers in
different distros duplicate each other's work and add hacks to their
packages that I could have fixed quicker and cleaner if somebody had
shared their problems with me.

I'm just letting you know the upstream position.  We want to hear about
issues and we want the patches.  Everybody's life gets easier if work
gets upstreamed.

Just look how quick we managed to get GNU/kfreebsd building, it was a
matter of hours after we received the reports.  And now that it's
upstream nobody will have extra work maintaining patches again...


Unfortunately, I have to repeat again that not every upstream is 
responsive as you, see i.e. [2]



From my POV, ideal cooperation is as in [3], I as a porter

really don't know enough details of a package.
Or even when the porting problem comes from package maintainer [4].
And this case, of course ;-)

Thanks
Petr

[2] 
http://sourceforge.net/tracker/index.php?func=detailaid=2179778group_id=36127atid=416300
[3] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=578023
[4] http://lists.debian.org/debian-bsd/2010/02/msg00022.html



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


Bug#578622: mplayer: FTBFS on kfreebsd-amd64 (vidix disable needed)

2010-04-23 Thread Petr Salinger


Modified: trunk/libvo/vo_directfb2.c
==
--- trunk/libvo/vo_directfb2.c  Thu Apr 22 16:02:20 2010(r31057)
+++ trunk/libvo/vo_directfb2.c  Fri Apr 23 12:04:56 2010(r31058)
@@ -35,9 +35,9 @@
 #include string.h

 #ifdef __linux__
-#include sys/kd.h
-#else
 #include linux/kd.h
+#else
+#include sys/kd.h
 #endif

 #include config.h


You could really use sys/kd.h everywhere:
http://sourceware.org/git/?p=glibc.git;a=history;f=sysdeps/unix/sysv/linux/sys/kd.h;hb=HEAD



I should probably note that GNU/kFreeBSD uses same kernel as FreeBSD,
but libc/gcc/binutils same as Linux.


is there a directfb port available on FreeBSD? I suspect not.


I do not understand meaning of this question.
There are no gfxdrivers, but the library exists:

http://packages.debian.org/sid/kfreebsd-amd64/libdirectfb-1.2-9/filelist
http://packages.debian.org/sid/kfreebsd-amd64/libdirectfb-extra/filelist

Cheers
Petr



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


Bug#578622: mplayer: FTBFS on kfreebsd-amd64 (vidix disable needed)

2010-04-21 Thread Petr Salinger

Package: mplayer
Version: 1.0~rc3+svn20090405-1
Severity: important
Tags: patch
User: debian-...@lists.debian.org
Usertags: kfreebsd


Hi,

the current version fails to build on kfreebsd-amd64.
it suffices to disable vidix support in debian/rules
to get working mplayer.

Petr


ifeq ($(DEB_HOST_ARCH),kfreebsd-amd64)
  with_real_and_xanim = true
  DEB_BUILD_CONFIGURE += --enable-runtime-cpudetection --disable-vidix
endif




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


Bug#578622: mplayer: FTBFS on kfreebsd-amd64

2010-04-21 Thread Petr Salinger

Hi,

please also change configure as shown bellow.
Otherwise the memalign() is without prototype,
which on 64 bit platform leads to segfaults
for some videos.

Petr


--- configure
+++ configure
@@ -3166,7 +3166,7 @@
   def_malloc_h='#define HAVE_MALLOC_H 0'
 fi
 # malloc.h emits a warning in FreeBSD and OpenBSD
-freebsd || openbsd || dragonfly  def_malloc_h='#define HAVE_MALLOC_H 0'
+openbsd || dragonfly  def_malloc_h='#define HAVE_MALLOC_H 0'
 echores $_malloc






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


Bug#566779: snd: FTBFS on GNU/kFreeBSD: missing -ldl

2010-01-25 Thread Petr Salinger

Hi.

The native sound system is OSS for GNU/kFreeBSD.

It looks like on linux the snd package comes in three variants:
- snd-gtk-jack
- snd-gtk-pulse
- snd-nox-alsa

IMO, it should be possible to extend configure.ac and
on GNU/kFreeBSD (kfreebsd-i386 kfreebsd-amd64) also provide three variants

- snd-gtk-jack
- snd-gtk-pulse
- snd-nox-oss

Petr


*-*-kfreebsd*)
LDSO_FLAGS=-shared
LIBS=$LIBS -lm
if test $ac_cv_header_dlfcn_h = yes ; then
  LDFLAGS=$LDFLAGS -ldl
fi
if test $GCC = yes ; then
  SO_FLAGS=-fPIC $SO_FLAGS
fi

AUDIO_SYSTEM=OSS

if test $with_jack = yes ; then
   if test $with_oss != yes ; then
 AUDIO_SYSTEM=JACK
   fi
fi

case $AUDIO_SYSTEM in
JACK)
AC_DEFINE(HAVE_JACK_IN_LINUX)
AC_DEFINE(HAVE_OSS)
AUDIO_LIB=-lsamplerate
;;
OSS)
AC_DEFINE(HAVE_OSS)
AUDIO_SYSTEM=OSS
;;
esac
;;




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


Bug#565850: soundkonverter: FTBFS: fails to find cdda_* (missing build-depends on libcdparanoia-dev)

2010-01-19 Thread Petr Salinger

reassign 565850 src:soundkonverter
retitle 565850 soundkonverter: FTBFS: fails to find cdda_* (missing 
build-depends on libcdparanoia-dev)
found 565850 1.0.0~alpha1-1
--

Please add into build-depends libcdparanoia-dev.

Petr



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