Hello, I am requesting package updates to libraw1394 and libdc1394 in extra. The new versions v2.0.2 and v2.1.0 respectively have support for the new experimental FireWire stack (not built by default in kernel26), Juju[1]. The old stable stack is still supported by the new packages, so they should still work with kernel26. Attached are the PKGBUILDs for each package, with trivial changes (version and md5sum). [2] shows there is no maintainer for libraw1394 so I'm posting them here. Thanks 1. http://ieee1394.wiki.kernel.org/index.php/Juju_Migration 2. http://www.archlinux.org/packages/extra/i686/libraw1394/ -- Rick
# $Id$ # Maintainer: Giovanni Scafora <giovanni@xxxxxxxxxxxxx> # Contributor: Tom Newsom <Jeepster@xxxxxxxxx> pkgname=libraw1394 pkgver=2.0.2 pkgrel=2 arch=('i686' 'x86_64') license=('LGPL') pkgdesc="Provides an API to the Linux IEEE1394 (FireWire) driver" depends=('glibc') makedepends=('pkgconfig') url="http://www.linux1394.org/" options=(!libtool force) source=(http://www.linux1394.org/dl/${pkgname}-${pkgver}.tar.gz) md5sums=('9fbbef5ea31101c4c28085db134fd448') build() { cd ${startdir}/src/${pkgname}-${pkgver} ./configure --prefix=/usr make || return 1 make DESTDIR=${startdir}/pkg install }
# $Id$ # Maintainer: Jan de Groot <jgc@xxxxxxxxxxxxx> pkgname=libdc1394 pkgver=2.1.0 pkgrel=1 pkgdesc="High level programming interface to control IEEE 1394 based cameras" arch=(i686 x86_64) license=('LGPL') depends=('libraw1394>=1.3.0') options=(!libtool !emptydirs) source=(http://downloads.sourceforge.net/sourceforge/libdc1394/${pkgname}-${pkgver}.tar.gz) url="http://sourceforge.net/projects/libdc1394/" md5sums=('51909785c8c3da6881dd983c98c0c6d6') build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr || return 1 make || return 1 make DESTDIR="${pkgdir}" install || return 1 }