summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-22 01:12:51 -0700
committerroot <root@rshg054.dnsready.net>2013-07-22 01:12:51 -0700
commit5072cee45a3dc5638ba936dfb4e717bf918b6d06 (patch)
tree9a3809d97173d2185b43fa7853be725b7d188186
parent35742ff57b7b052dff497273e238578aa091407d (diff)
Mon Jul 22 01:12:48 PDT 2013
-rw-r--r--community/playpen/PKGBUILD25
-rw-r--r--community/python-pygit2/PKGBUILD6
-rw-r--r--community/uuid/PKGBUILD40
-rw-r--r--community/uuid/ossp.patch207
-rw-r--r--extra/ddrescue/PKGBUILD14
-rw-r--r--extra/fluxter/PKGBUILD20
-rw-r--r--extra/kaffeine/PKGBUILD39
-rw-r--r--extra/kaffeine/kaffeine-1.2.2-gcc4.7.patch32
-rw-r--r--extra/libpciaccess/PKGBUILD4
-rw-r--r--extra/qtwebkit/PKGBUILD12
-rw-r--r--extra/xorg-xconsole/PKGBUILD6
-rw-r--r--kernels/linux-libre-xen/PKGBUILD4
-rw-r--r--libre/blender-addon-luxrender/PKGBUILD4
-rw-r--r--libre/blender-libre/PKGBUILD6
-rw-r--r--libre/ogre-libre/PKGBUILD155
-rw-r--r--libre/ogre-libre/ogre.install3
-rw-r--r--pcr/blender-addon-ogre/PKGBUILD26
-rw-r--r--pcr/mitsuba/PKGBUILD4
-rw-r--r--pcr/yafaray/PKGBUILD4
19 files changed, 199 insertions, 412 deletions
diff --git a/community/playpen/PKGBUILD b/community/playpen/PKGBUILD
new file mode 100644
index 000000000..b01dc48b6
--- /dev/null
+++ b/community/playpen/PKGBUILD
@@ -0,0 +1,25 @@
+# Maintainer: Daniel Micay <danielmicay@gmail.com>
+pkgname=playpen
+pkgver=1
+pkgrel=2
+epoch=1
+pkgdesc='A secure application sandbox using namespaces, cgroups and seccomp'
+arch=(i686 x86_64)
+url='https://github.com/thestinger/playpen/'
+license=(MIT)
+depends=(libseccomp gcc-libs)
+makedepends=(git python clang)
+source=(git://github.com/thestinger/playpen#tag=1)
+md5sums=(SKIP)
+
+build() {
+ cd $pkgname
+ git submodule update --init
+ make
+}
+
+package() {
+ cd $pkgname
+ make PREFIX=/usr DESTDIR="$pkgdir" install
+ install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
diff --git a/community/python-pygit2/PKGBUILD b/community/python-pygit2/PKGBUILD
index 56ab4eef2..8cf19e460 100644
--- a/community/python-pygit2/PKGBUILD
+++ b/community/python-pygit2/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 88510 2013-04-19 08:16:34Z thestinger $
+# $Id: PKGBUILD 94332 2013-07-20 22:37:34Z thestinger $
# Maintainer: Daniel Micay <danielmicay@gmail.com>
pkgbase=python-pygit2
pkgname=(python-pygit2 python2-pygit2)
-pkgver=0.18.0
+pkgver=0.19.0
pkgrel=1
pkgdesc='Python bindings for libgit2'
url="https://github.com/libgit2/pygit2"
@@ -12,7 +12,7 @@ makedepends=(python python2)
arch=(i686 x86_64)
license=('GPL2')
source=(https://github.com/libgit2/pygit2/archive/v${pkgver}.tar.gz)
-md5sums=('25dedbcf38d690dc8b3716389f2702de')
+md5sums=('a197304b3788ad051c39d7f2eeae4745')
package_python-pygit2() {
cd "$srcdir/pygit2-$pkgver"
diff --git a/community/uuid/PKGBUILD b/community/uuid/PKGBUILD
deleted file mode 100644
index 1c7c63dc4..000000000
--- a/community/uuid/PKGBUILD
+++ /dev/null
@@ -1,40 +0,0 @@
-# $Id: PKGBUILD 94316 2013-07-20 03:45:40Z dwallace $
-# Maintainer: Daniel Wallace <danielwallace at gtmanfred.com`
-# Contributor: Jeff Cook <jeff@deserettechnology.com>
-# Contributor: Michael Asher < michael at we solve every thing dot com >
-# Contributor: William Díaz <wdiaz@archlinux.us>
-# Contributor: vwyodajl <donjuansjiz GmaIL com>
-
-pkgname=uuid
-pkgver=1.6.2
-pkgrel=12
-pkgdesc="OSSP Universally Unique Identifier"
-arch=('i686' 'x86_64')
-url="http://www.ossp.org/pkg/lib/uuid"
-license=('MIT')
-depends=('sh')
-options=('!libtool' '!emptydirs')
-source=("http://www.mirrorservice.org/sites/ftp.ossp.org/pkg/lib/${pkgname}/${pkgname}-${pkgver}.tar.gz"
- ossp.patch)
-md5sums=('5db0d43a9022a6ebbbc25337ae28942f'
- '6f0591cfa3e6d5f70c290963d2c5a0a0')
-
-build() {
- cd ${pkgname}-${pkgver}
-
- # Rename because conflicts with util-linux
- patch -p1 -i "${srcdir}"/ossp.patch
- ./configure --prefix=/usr \
- --sbindir=/usr/bin \
- --disable-static \
- --bindir=/usr/bin
- make
-}
-
-package() {
- cd ${pkgname}-${pkgver}
- make DESTDIR="${pkgdir}" install
-
- install -Dm644 README \
- "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
-}
diff --git a/community/uuid/ossp.patch b/community/uuid/ossp.patch
deleted file mode 100644
index c0c7d5750..000000000
--- a/community/uuid/ossp.patch
+++ /dev/null
@@ -1,207 +0,0 @@
-diff -up uuid-1.6.1/uuid-config.in.BAD uuid-1.6.1/uuid-config.in
---- uuid-1.6.1/uuid-config.in.BAD 2008-03-06 11:56:13.000000000 -0500
-+++ uuid-1.6.1/uuid-config.in 2008-03-06 11:56:25.000000000 -0500
-@@ -121,7 +121,7 @@ do
- output_extra="$output_extra $uuid_ldflags"
- ;;
- --libs)
-- output="$output -luuid"
-+ output="$output -lossp-uuid"
- output_extra="$output_extra $uuid_libs"
- ;;
- * )
-diff -up uuid-1.6.1/Makefile.in.BAD uuid-1.6.1/Makefile.in
---- uuid-1.6.1/Makefile.in.BAD 2008-03-06 11:10:13.000000000 -0500
-+++ uuid-1.6.1/Makefile.in 2008-03-06 11:11:39.000000000 -0500
-@@ -62,13 +62,13 @@ PERL = @PERL@
- PHP = @PHP@
- PG_CONFIG = @PG_CONFIG@
-
--LIB_NAME = libuuid.la
-+LIB_NAME = libossp-uuid.la
- LIB_OBJS = uuid.lo uuid_md5.lo uuid_sha1.lo uuid_prng.lo uuid_mac.lo uuid_time.lo uuid_ui64.lo uuid_ui128.lo uuid_str.lo
-
--DCE_NAME = libuuid_dce.la
-+DCE_NAME = libossp-uuid_dce.la
- DCE_OBJS = uuid_dce.lo $(LIB_OBJS)
-
--CXX_NAME = libuuid++.la
-+CXX_NAME = libossp-uuid++.la
- CXX_OBJS = uuid++.lo $(LIB_OBJS)
-
- PRG_NAME = uuid
-@@ -79,10 +79,10 @@ MAN_NAME = uuid.3 uuid++.3 uuid.1
- PERL_NAME = $(S)/perl/blib/lib/OSSP/uuid.pm
- PERL_OBJS = $(S)/perl/uuid.pm
-
--PHP_NAME = $(S)/php/modules/uuid.so
-+PHP_NAME = $(S)/php/modules/ossp-uuid.so
- PHP_OBJS = $(S)/php/uuid.c
-
--PGSQL_NAME = $(S)/pgsql/libuuid.so
-+PGSQL_NAME = $(S)/pgsql/libossp-uuid.so
- PGSQL_OBJS = $(S)/pgsql/uuid.c
-
- TARGETS = $(LIB_NAME) @DCE_NAME@ @CXX_NAME@ $(PRG_NAME) @PERL_NAME@ @PHP_NAME@ @PGSQL_NAME@
-@@ -231,7 +231,7 @@ install:
- $(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(mandir)/man1
- $(SHTOOL) install -c -m 755 uuid-config $(DESTDIR)$(bindir)/
- $(SHTOOL) install -c -m 644 $(S)/uuid-config.1 $(DESTDIR)$(mandir)/man1/
-- $(SHTOOL) install -c -m 644 $(S)/uuid.pc $(DESTDIR)$(libdir)/pkgconfig/
-+ $(SHTOOL) install -c -m 644 $(S)/uuid.pc $(DESTDIR)$(libdir)/pkgconfig/ossp-uuid.pc
- $(SHTOOL) install -c -m 644 uuid.h $(DESTDIR)$(includedir)/
- -@if [ ".$(WITH_DCE)" = .yes ]; then \
- echo "$(SHTOOL) install -c -m 644 $(S)/uuid_dce.h $(DESTDIR)$(includedir)/"; \
-@@ -241,7 +241,7 @@ install:
- echo "$(SHTOOL) install -c -m 644 $(S)/uuid++.hh $(DESTDIR)$(includedir)/"; \
- $(SHTOOL) install -c -m 644 $(S)/uuid++.hh $(DESTDIR)$(includedir)/; \
- fi
-- $(SHTOOL) install -c -m 644 $(S)/uuid.3 $(DESTDIR)$(mandir)/man3/
-+ $(SHTOOL) install -c -m 644 $(S)/uuid.3 $(DESTDIR)$(mandir)/man3/ossp-uuid.3
- -@if [ ".$(WITH_CXX)" = .yes ]; then \
- echo "$(SHTOOL) install -c -m 644 $(S)/uuid++.3 $(DESTDIR)$(mandir)/man3/"; \
- $(SHTOOL) install -c -m 644 $(S)/uuid++.3 $(DESTDIR)$(mandir)/man3/; \
-@@ -276,7 +276,7 @@ uninstall:
- -@if [ ".$(WITH_CXX)" = .yes ]; then \
- $(LIBTOOL) --mode=uninstall $(RM) $(DESTDIR)$(libdir)/$(CXX_NAME); \
- fi
-- -$(RM) $(DESTDIR)$(mandir)/man3/uuid.3
-+ -$(RM) $(DESTDIR)$(mandir)/man3/ossp-uuid.3
- -@if [ ".$(WITH_CXX)" = .yes ]; then \
- echo "$(RM) $(DESTDIR)$(mandir)/man3/uuid++.3"; \
- $(RM) $(DESTDIR)$(mandir)/man3/uuid++.3; \
-@@ -290,7 +290,7 @@ uninstall:
- echo "$(RM) $(DESTDIR)$(includedir)/uuid++.hh"; \
- $(RM) $(DESTDIR)$(includedir)/uuid++.hh; \
- fi
-- -$(RM) $(DESTDIR)$(libdir)/pkgconfig/uuid.pc
-+ -$(RM) $(DESTDIR)$(libdir)/pkgconfig/ossp-uuid.pc
- -$(RM) $(DESTDIR)$(mandir)/man1/uuid-config.1
- -$(RM) $(DESTDIR)$(bindir)/uuid-config
- -$(RMDIR) $(DESTDIR)$(mandir)/man1 >/dev/null 2>&1 || $(TRUE)
-diff -up uuid-1.6.1/pgsql/Makefile.BAD uuid-1.6.1/pgsql/Makefile
---- uuid-1.6.1/pgsql/Makefile.BAD 2008-03-06 11:53:26.000000000 -0500
-+++ uuid-1.6.1/pgsql/Makefile 2008-03-06 11:54:14.000000000 -0500
-@@ -18,13 +18,13 @@ POSTGRES := $(shell $(PG_CONFIG
- top_builddir := $(dir $(PGXS))../..
- include $(top_builddir)/src/Makefile.global
-
--NAME = uuid
-+NAME = ossp-uuid
- OBJS = uuid.o
- SO_MAJOR_VERSION = 1
- SO_MINOR_VERSION = 0
-
- override CPPFLAGS := -I.. $(CPPFLAGS)
--SHLIB_LINK := -L../.libs -luuid
-+SHLIB_LINK := -L../.libs -lossp-uuid
- SHLIB_LINK += $(shell test $(shell uname -s) = FreeBSD && echo "-Wl,-Bsymbolic")
- SHLIB_LINK += $(shell test $(shell uname -s) = Darwin && echo "-bundle_loader $(POSTGRES)")
- rpath :=
-@@ -35,16 +35,16 @@ enable_shared = yes
- include $(top_builddir)/src/Makefile.shlib
-
- uuid.sql: uuid.sql.in
-- sed -e 's;MODULE_PATHNAME;$(DESTDIR)$(pkglibdir)/uuid$(DLSUFFIX);g' <uuid.sql.in >uuid.sql
-+ sed -e 's;MODULE_PATHNAME;$(DESTDIR)$(pkglibdir)/ossp-uuid$(DLSUFFIX);g' <uuid.sql.in >uuid.sql
-
- install: all
- $(mkinstalldirs) $(DESTDIR)$(pkglibdir)
- $(mkinstalldirs) $(DESTDIR)$(datadir)
-- $(INSTALL_SHLIB) $(shlib) $(DESTDIR)$(pkglibdir)/uuid$(DLSUFFIX)
-+ $(INSTALL_SHLIB) $(shlib) $(DESTDIR)$(pkglibdir)/ossp-uuid$(DLSUFFIX)
- $(INSTALL_DATA) uuid.sql $(DESTDIR)$(datadir)/uuid.sql
-
- uninstall:
-- -rm -f $(DESTDIR)$(pkglibdir)/uuid$(DLSUFFIX)
-+ -rm -f $(DESTDIR)$(pkglibdir)/ossp-uuid$(DLSUFFIX)
- -rm -f $(DESTDIR)$(datadir)/uuid.sql
-
- clean distclean: clean-lib
-diff -up uuid-1.6.1/uuid.pc.in.BAD uuid-1.6.1/uuid.pc.in
---- uuid-1.6.1/uuid.pc.in.BAD 2008-03-06 11:57:29.000000000 -0500
-+++ uuid-1.6.1/uuid.pc.in 2008-03-06 11:57:36.000000000 -0500
-@@ -37,6 +37,6 @@ Description: Universally Unique Identifi
- Version: @UUID_VERSION_RAW@
- URL: http://www.ossp.org/pkg/lib/uuid/
- Cflags: -I${includedir}
--Libs: -L${libdir} -luuid
-+Libs: -L${libdir} -lossp-uuid
- Libs.private: @LIBS@
-
-diff -up uuid-1.6.1/perl/Makefile.PL.BAD uuid-1.6.1/perl/Makefile.PL
---- uuid-1.6.1/perl/Makefile.PL.BAD 2008-03-06 11:12:05.000000000 -0500
-+++ uuid-1.6.1/perl/Makefile.PL 2008-03-06 11:49:25.000000000 -0500
-@@ -33,9 +33,9 @@ use Config;
- use ExtUtils::MakeMaker;
-
- # determine source directory
--my ($srcdir) = map { my $d = $_; $d =~ s/\/libuuid\.la$//; $d }
-- grep { -f $_ } ("../libuuid.la", glob("../*/libuuid.la"))
-- or die "no source directory found (where libuuid.la is located)";
-+my ($srcdir) = map { my $d = $_; $d =~ s/\/libossp-uuid\.la$//; $d }
-+ grep { -f $_ } ("../libossp-uuid.la", glob("../*/libossp-uuid.la"))
-+ or die "no source directory found (where libossp-uuid.la is located)";
-
- # determine extra build options
- my $compat = 0;
-@@ -47,7 +47,7 @@ WriteMakefile(
- VERSION_FROM => 'uuid.pm',
- ABSTRACT_FROM => 'uuid.pod',
- PREREQ_PM => {},
-- LIBS => [ "-L$srcdir/.libs -L$srcdir -luuid" ],
-+ LIBS => [ "-L$srcdir/.libs -L$srcdir -lossp-uuid" ],
- DEFINE => '',
- INC => "-I. -I$srcdir",
- PM => { 'uuid.pm' => '$(INST_LIBDIR)/uuid.pm',
-diff -up uuid-1.6.1/Makefile.PL.BAD uuid-1.6.1/Makefile.PL
---- uuid-1.6.1/Makefile.PL.BAD 2008-03-06 11:09:49.000000000 -0500
-+++ uuid-1.6.1/Makefile.PL 2008-03-06 11:10:01.000000000 -0500
-@@ -44,7 +44,7 @@ ARGS = $ARGS
- all pure_all:
- \@if [ ! -d build ]; then mkdir build; fi
- \@if [ ! -f build/Makefile ]; then (cd build && ../configure --disable-shared); fi
-- \@if [ ! -f build/libuuid.la ]; then (cd build && \$(MAKE) \$(MFLAGS) libuuid.la); fi
-+ \@if [ ! -f build/libossp-uuid.la ]; then (cd build && \$(MAKE) \$(MFLAGS) libossp-uuid.la); fi
- \@if [ ! -f perl/Makefile ]; then (cd perl && \$(PERL) Makefile.PL \$(ARGS)); fi
- \@cd perl && \$(MAKE) \$(MFLAGS) \$\@
-
-diff -up uuid-1.6.1/php/config.m4.BAD uuid-1.6.1/php/config.m4
---- uuid-1.6.1/php/config.m4.BAD 2008-03-06 11:54:55.000000000 -0500
-+++ uuid-1.6.1/php/config.m4 2008-03-06 11:55:07.000000000 -0500
-@@ -34,7 +34,7 @@ if test "$PHP_UUID" != "no"; then
- PHP_NEW_EXTENSION(uuid, uuid.c, $ext_shared)
- AC_DEFINE(HAVE_UUID, 1, [Have OSSP uuid library])
- PHP_ADD_LIBPATH([..], )
-- PHP_ADD_LIBRARY([uuid],, UUID_SHARED_LIBADD)
-+ PHP_ADD_LIBRARY([ossp-uuid],, UUID_SHARED_LIBADD)
- PHP_ADD_INCLUDE([..])
- PHP_SUBST(UUID_SHARED_LIBADD)
-
-diff -up uuid-1.6.1/php/Makefile.local.BAD uuid-1.6.1/php/Makefile.local
---- uuid-1.6.1/php/Makefile.local.BAD 2008-03-06 11:54:39.000000000 -0500
-+++ uuid-1.6.1/php/Makefile.local 2008-03-06 11:54:49.000000000 -0500
-@@ -48,7 +48,7 @@ install: build
- @version=`$(PHP)-config --version | sed -e 's;^\([0-9]\).*$$;\1;'`; extdir="$(EXTDIR)"; \
- echo "installing PHP$$version API into $$extdir"; \
- ./build/shtool mkdir -f -p -m 755 $(DESTDIR)$$extdir; \
-- ./build/shtool install -c -m 755 modules/uuid.so $(DESTDIR)$$extdir/uuid.so; \
-+ ./build/shtool install -c -m 755 modules/uuid.so $(DESTDIR)$$extdir/ossp-uuid.so; \
- ./build/shtool install -c -m 644 uuid.php$$version $(DESTDIR)$$extdir/uuid.php
-
- clean:
-diff -up uuid-1.6.1/php/uuid.ts.BAD uuid-1.6.1/php/uuid.ts
---- uuid-1.6.1/php/uuid.ts.BAD 2008-03-06 11:55:38.000000000 -0500
-+++ uuid-1.6.1/php/uuid.ts 2008-03-06 11:56:03.000000000 -0500
-@@ -34,9 +34,9 @@
-
- $php_version = $argv[1];
-
--print "++ loading DSO uuid.so (low-level API)\n";
-+print "++ loading DSO ossp-uuid.so (low-level API)\n";
- if (!extension_loaded('uuid')) {
-- dl('modules/uuid.so');
-+ dl('modules/ossp-uuid.so');
- }
-
- print "++ loading PHP uuid.php${php_version} (high-level API)\n";
diff --git a/extra/ddrescue/PKGBUILD b/extra/ddrescue/PKGBUILD
index 0fe7a3286..3deeb3bd5 100644
--- a/extra/ddrescue/PKGBUILD
+++ b/extra/ddrescue/PKGBUILD
@@ -1,21 +1,21 @@
-# $Id: PKGBUILD 164005 2012-07-23 18:42:21Z schiv $
+# $Id: PKGBUILD 191219 2013-07-21 14:09:43Z schiv $
# Maintainer: Ray Rashif <schiv@archlinux.org>
# Contributor: Pierre Schmitz <pierre@archlinux.de>
# Contributor: Paul Mattal <paul@archlinux.org>
pkgname=ddrescue
-pkgver=1.16
-pkgrel=2
+pkgver=1.17
+pkgrel=1
pkgdesc="GNU data recovery tool"
arch=('i686' 'x86_64')
url="http://www.gnu.org/software/ddrescue/ddrescue.html"
license=('GPL3')
depends=('gcc-libs')
install=$pkgname.install
-source=("http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz"
- "http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz.sig")
-md5sums=('57b67407e882c6418531d48a2f20d16b'
- 'bf072280587665d82829be15eb6fc9ad')
+source=("http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.lz"
+ "http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.lz.sig")
+md5sums=('564469370fe70cd9ac280b15e1addc50'
+ 'SKIP')
build() {
cd "$srcdir"/$pkgname-$pkgver
diff --git a/extra/fluxter/PKGBUILD b/extra/fluxter/PKGBUILD
index 723543918..247449633 100644
--- a/extra/fluxter/PKGBUILD
+++ b/extra/fluxter/PKGBUILD
@@ -1,30 +1,32 @@
-# $Id: PKGBUILD 123175 2011-05-09 02:48:19Z eric $
+# $Id: PKGBUILD 191227 2013-07-21 21:10:07Z eric $
# Maintainer: Eric Bélanger <eric@archlinux.org>
pkgname=fluxter
pkgver=0.1.0
-pkgrel=5
+pkgrel=6
pkgdesc="A workspace pager for fluxbox"
arch=('i686' 'x86_64')
url="http://benedict.isomedia.com/homes/stevencooper/projects/fluxter.html"
license=('GPL')
depends=('gcc-libs' 'libx11')
-source=(http://benedict.isomedia.com/homes/stevencooper/files/${pkgname}-${pkgver}.tar.gz \
+source=(http://benedict.isomedia.com/homes/stevencooper/files/${pkgname}-${pkgver}.tar.gz
fluxter-0.1.0-asneeded.patch)
-md5sums=('6d18553220e8fc33c54762d2e7d31528'
- '3deb4e816d12a262455bc8281fa82577')
sha1sums=('d0da4759a21fdadc8a6457195c87b6648b5d69bc'
'2fc912d40233577b34cb6c641e066863e487fab0')
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
+prepare() {
+ cd ${pkgname}-${pkgver}
patch -p0 -i ../fluxter-0.1.0-asneeded.patch
- autoreconf
+}
+
+build() {
+ cd ${pkgname}-${pkgver}
+ autoreconf --force --install
./configure --prefix=/usr
make
}
package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
+ cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
}
diff --git a/extra/kaffeine/PKGBUILD b/extra/kaffeine/PKGBUILD
index cad29ec16..5bad851f1 100644
--- a/extra/kaffeine/PKGBUILD
+++ b/extra/kaffeine/PKGBUILD
@@ -1,31 +1,38 @@
-# $Id: PKGBUILD 146418 2012-01-10 23:37:34Z eric $
+# $Id: PKGBUILD 191225 2013-07-21 20:40:01Z eric $
+# Maintainer:
# Contributor: Pierre Schmitz <pierre@archlinux.de>
pkgname=kaffeine
pkgver=1.2.2
-pkgrel=2
+pkgrel=3
pkgdesc='KDE media player'
license=('GPL')
arch=('i686' 'x86_64')
url="http://kaffeine.kde.org"
-depends=('kdelibs' 'kdebase-runtime' 'xine-lib')
-makedepends=('pkg-config' 'cmake' 'automoc4')
+depends=('kdebase-runtime' 'xine-lib')
+makedepends=('cmake' 'automoc4')
install=kaffeine.install
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz")
-md5sums=('690e48d2e5fe123887109aa9b1bc1c31')
+source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz
+ kaffeine-1.2.2-gcc4.7.patch)
+md5sums=('690e48d2e5fe123887109aa9b1bc1c31'
+ '48afe5ec99b38fe02782db57a847033f')
+
+prepare() {
+ cd ${pkgname}-${pkgver}
+ patch -p1 -i "${srcdir}/kaffeine-1.2.2-gcc4.7.patch"
+}
build() {
- cd "$srcdir"
- mkdir build
- cd build
- cmake ../${pkgname}-${pkgver} \
- -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_SKIP_RPATH=ON \
- -DCMAKE_INSTALL_PREFIX=/usr
- make
+ mkdir build
+ cd build
+ cmake ../${pkgname}-${pkgver} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_SKIP_RPATH=ON \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ make
}
package() {
- cd "$srcdir/build"
- make DESTDIR="$pkgdir" install
+ cd build
+ make DESTDIR="$pkgdir" install
}
diff --git a/extra/kaffeine/kaffeine-1.2.2-gcc4.7.patch b/extra/kaffeine/kaffeine-1.2.2-gcc4.7.patch
new file mode 100644
index 000000000..e74563e0b
--- /dev/null
+++ b/extra/kaffeine/kaffeine-1.2.2-gcc4.7.patch
@@ -0,0 +1,32 @@
+commit 2da9df1e67004c3cfa879578c351300a99f23da1
+Author: Christoph Pfister <christophpfister@gmail.com>
+Date: Wed Apr 4 21:22:09 2012 +0200
+
+ fix build for gcc 4.7
+
+diff --git a/src/dvb/dvbepg.cpp b/src/dvb/dvbepg.cpp
+index 7fc8f68..e70d8b8 100644
+--- a/src/dvb/dvbepg.cpp
++++ b/src/dvb/dvbepg.cpp
+@@ -690,15 +690,15 @@ void AtscEpgFilter::processEitSection(const char *data, int size)
+ // 1980-01-06T000000 minus 15 secs (= UTC - GPS in 2011)
+ QDateTime baseDateTime = QDateTime(QDate(1980, 1, 5), QTime(23, 59, 45), Qt::UTC);
+
+- for (AtscEitSectionEntry entry = eitSection.entries(); (entryCount > 0) && entry.isValid();
+- --entryCount, entry.advance()) {
++ for (AtscEitSectionEntry eitEntry = eitSection.entries();
++ (entryCount > 0) && eitEntry.isValid(); --entryCount, eitEntry.advance()) {
+ DvbEpgEntry epgEntry;
+ epgEntry.channel = channel;
+- epgEntry.begin = baseDateTime.addSecs(entry.startTime());
+- epgEntry.duration = QTime().addSecs(entry.duration());
+- epgEntry.title = entry.title();
++ epgEntry.begin = baseDateTime.addSecs(eitEntry.startTime());
++ epgEntry.duration = QTime().addSecs(eitEntry.duration());
++ epgEntry.title = eitEntry.title();
+
+- quint32 id = ((quint32(fakeChannel.networkId) << 16) | quint32(entry.eventId()));
++ quint32 id = ((quint32(fakeChannel.networkId) << 16) | quint32(eitEntry.eventId()));
+ DvbSharedEpgEntry entry = epgEntries.value(id);
+
+ if (entry.isValid() && (entry->channel == epgEntry.channel) &&
diff --git a/extra/libpciaccess/PKGBUILD b/extra/libpciaccess/PKGBUILD
index 4b5bc2e8e..c79705c13 100644
--- a/extra/libpciaccess/PKGBUILD
+++ b/extra/libpciaccess/PKGBUILD
@@ -3,7 +3,7 @@
# Contributor: Alexander Baldeck <alexander@archlinux.org>
pkgname=libpciaccess
-pkgver=0.13.1
+pkgver=0.13.2
pkgrel=1
pkgdesc="X11 PCI access library"
arch=(i686 x86_64)
@@ -13,7 +13,7 @@ depends=('glibc')
makedepends=('pkgconfig' 'xorg-util-macros')
options=('!libtool')
source=(${url}/releases/individual/lib/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('ae4dcf27a1b52c6a1fd90b21165fbaecae34e8ac')
+sha256sums=('abab8c2b050afb89bc29280e9c6b50ec5867174960d88bfb81a01036ec20de19')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
diff --git a/extra/qtwebkit/PKGBUILD b/extra/qtwebkit/PKGBUILD
index 1a0c2b797..66e16f740 100644
--- a/extra/qtwebkit/PKGBUILD
+++ b/extra/qtwebkit/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 184430 2013-05-06 19:39:36Z foutrelis $
+# $Id: PKGBUILD 191221 2013-07-21 19:23:31Z andrea $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
pkgname=qtwebkit
-pkgver=2.3.1
-pkgrel=2
+pkgver=2.3.2
+pkgrel=1
arch=('i686' 'x86_64')
url='http://trac.webkit.org/wiki/QtWebKit'
pkgdesc='An open source web browser engine (Qt port)'
@@ -11,13 +11,13 @@ license=('LGPL2.1' 'GPL3')
depends=('qt4' 'systemd' 'gstreamer0.10-base')
makedepends=('gperf' 'python2' 'ruby' 'git' 'mesa')
conflicts=('qt<4.8')
-_qtver=4.8.4
+_qtver=4.8.5
source=("${pkgname}-${pkgver}.tar.gz"::"http://gitorious.org/webkit/qtwebkit-23/archive-tarball/${pkgname}-${pkgver}"
"http://releases.qt-project.org/qt4/source/qt-everywhere-opensource-src-${_qtver}.tar.gz"
'use-python2.patch'
'qwebview.patch')
-sha1sums=('5b71baa0c92290d00b8cc3739c298098c1ed4bcd'
- 'f5880f11c139d7d8d01ecb8d874535f7d9553198'
+sha1sums=('adf66bc92b0c3e41791a419c6b776d0167acaa7c'
+ '745f9ebf091696c0d5403ce691dc28c039d77b9e'
'315b6ff603f35e5492a036f7082f6aa075dfb607'
'ef467fcfc9e74aa88356f27acc21792706ed1e4d')
diff --git a/extra/xorg-xconsole/PKGBUILD b/extra/xorg-xconsole/PKGBUILD
index 426f9300f..bc3ca28f5 100644
--- a/extra/xorg-xconsole/PKGBUILD
+++ b/extra/xorg-xconsole/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 175083 2013-01-13 09:45:06Z andyrtr $
+# $Id: PKGBUILD 191215 2013-07-21 06:57:40Z lcarlier $
# Maintainer: Jan de Groot <jgc@archlinux.org>
pkgname=xorg-xconsole
-pkgver=1.0.5
+pkgver=1.0.6
pkgrel=1
pkgdesc="Monitor system console messages with X"
arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@ license=('custom')
depends=('libxaw' 'libxmu' 'libxt' 'libx11')
makedepends=('xorg-util-macros')
source=(http://xorg.freedesktop.org/archive/individual/app/xconsole-${pkgver}.tar.bz2)
-sha256sums=('195fad7a1ca274835fc346c82acce90a0c2e9f288e85bd1a3c256dbc1c8c11e5')
+sha256sums=('e561959b6ee8b735a32c1050015cfd8c551ed162cabb6cb72e36ce72966855d1')
build() {
cd "${srcdir}/xconsole-${pkgver}"
diff --git a/kernels/linux-libre-xen/PKGBUILD b/kernels/linux-libre-xen/PKGBUILD
index 0d622be00..c41ade432 100644
--- a/kernels/linux-libre-xen/PKGBUILD
+++ b/kernels/linux-libre-xen/PKGBUILD
@@ -21,8 +21,8 @@ source=("http://linux-libre.fsfla.org/pub/linux-libre/releases/${_basekernel}-gn
"${pkgbase}.preset"
'boot-logo.patch'
'change-default-console-loglevel.patch')
-md5sums=('120df29f88622dabf7015a22c7cc8e25'
- 'e143fc381f4d2fdfc18686b867a5e6a5'
+md5sums=('d562fd52580a3b6b18b6eeb5921d1d5c'
+ '5561eca43f9b46ad5a341b0cf59f3226'
'e2cb9d4092685c2a4216de9bbe8b72f1'
'b7c2805bb287a644c0a303bf7721e534'
'04b21c79df0a952c22d681dd4f4562df'
diff --git a/libre/blender-addon-luxrender/PKGBUILD b/libre/blender-addon-luxrender/PKGBUILD
index fad4692b2..6ec5ec2f5 100644
--- a/libre/blender-addon-luxrender/PKGBUILD
+++ b/libre/blender-addon-luxrender/PKGBUILD
@@ -4,13 +4,13 @@ _srcname=luxrender
_pkgver=1.2.1
_bldname=blender
_bldver=2.68
-_bldep=9
+_bldep=10
_pkgname=${_srcname::3}${_bldname::5}25
_srcver=c9deae0646d0
pkgname=$_bldname-addon-$_srcname
pkgver=$_pkgver.v$_bldver
-pkgrel=1
+pkgrel=2
pkgdesc="$_pkgname: A addon for the ${_bldname^} which allows render and export with LuxRender (built for the $_bldname-libre package)"
arch=any
url=http://www.$_srcname.net/
diff --git a/libre/blender-libre/PKGBUILD b/libre/blender-libre/PKGBUILD
index 6439786c6..b39705eed 100644
--- a/libre/blender-libre/PKGBUILD
+++ b/libre/blender-libre/PKGBUILD
@@ -1,9 +1,9 @@
# Maintainer: Márcio Silva <coadde@lavabit.com>
_pkgname=blender
-epoch=8
+epoch=9
_pkgver=2.68
-pkgrel=2
+pkgrel=1
_jpgver=1.5
_pyver=3.3
@@ -62,7 +62,7 @@ makedepends=(
mesa
subversion
)
-provides=$_pkgname
+provides=($_pkgname=$epoch:$_pkgver)
conflicts=$_pkgname
replaces=$_pkgname
install=$_pkgname.install
diff --git a/libre/ogre-libre/PKGBUILD b/libre/ogre-libre/PKGBUILD
index 05e7d8cbb..f0ff93a83 100644
--- a/libre/ogre-libre/PKGBUILD
+++ b/libre/ogre-libre/PKGBUILD
@@ -1,29 +1,28 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
-# Maintainer (Parabola): Márcio Silva <coadde@lavabit.com>
+# Maintainer: Márcio Silva <coadde@lavabit.com>
+
+_bldname=blender
+_bldver=2.68
+_bldep=10
+
+# ($srcdir/Tools/${_bldname^}2.5Export/__init__.py:bl_info>version)
+_addver=2.0.1
+_addrel=1
pkgbase=ogre
pkgname=(
- ogre-libre
- #ogre-docs
-)
-pkgflag=(
- -libre
- -docs
+ $pkgbase-libre
+ #$_bldname-addon-$pkgbase # package unstable
)
pkgver=1.8.1
-pkgrel=4
-pkgdesc='Scene-oriented, flexible 3D engine written in C++, without nonfree nvidia-cg-toolkit support, nonfree fonts and arts'
+pkgrel=5
+pkgdesc='Scene-oriented, flexible 3D engine written in C++, without nonfree software support and files'
arch=(
- i686
- x86_64
mips64el
+ x86_64
+ i686
)
-url="http://www.${pkgbase}3d.org"
-license=(
- 'MIT:(software)'
- 'cc by-sa:(sinbad character)'
-)
+url=http://www.${pkgbase}3d.org
+license=MIT
depends=(
boost-libs
freeimage
@@ -39,26 +38,20 @@ makedepends=(
cmake
doxygen
graphviz
- intel-tbb
mesa
- #poco
ttf-dejavu
)
-install=$pkgbase.install
-source=(
- "https://downloads.sourceforge.net/$pkgbase/${pkgbase}_src_v${pkgver//./-}.tar.bz2"
-)
-sha512sums=(
- 0bbce593e5a9ebf51e3cb53661f6447d99ae28a53365d7f518c6d408216690527ef7552385160cff8d5c3ef15d3ab5c2520ef2c1f51fda5541d5d4dca4663ae2
-)
+source=https://downloads.sourceforge.net/$pkgbase/${pkgbase}_src_v${pkgver//./-}.tar.bz2
+sha512sums=0bbce593e5a9ebf51e3cb53661f6447d99ae28a53365d7f518c6d408216690527ef7552385160cff8d5c3ef15d3ab5c2520ef2c1f51fda5541d5d4dca4663ae2
build() {
cd $srcdir/${pkgbase}_src_v${pkgver//./-}
# get a clean build dir
- [[ -d build ]] && rm -rf build
- mkdir build && cd build
+ [[ -d build ]] && rm -vrf build
+ mkdir -v build && cd build
+ # SAMPLES, SAMPLES_SOURCE and TESTS are nonfree
cmake .. \
-DCMAKE_BUILD_TYPE=Release\
-DCMAKE_INSTALL_PREFIX=/usr\
@@ -67,120 +60,72 @@ build() {
-D${pkgbase^^}_BUILD_COMPONENT_PROPERTY=TRUE\
-D${pkgbase^^}_BUILD_COMPONENT_RTSHADERSYSTEM=TRUE\
-D${pkgbase^^}_BUILD_COMPONENT_TERRAIN=TRUE\
- -D${pkgbase^^}_BUILD_PLATFORM_APPLE_IOS=FALSE\
+ -D${pkgbase^^}_BUILD_PLATFORM_NACL=FALSE\
-D${pkgbase^^}_BUILD_PLUGIN_BSP=TRUE\
- -D${pkgbase^^}_BUILD_PLUGIN_CG=FALSE\
-D${pkgbase^^}_BUILD_PLUGIN_OCTREE=TRUE\
-D${pkgbase^^}_BUILD_PLUGIN_PCZ=TRUE\
-D${pkgbase^^}_BUILD_PLUGIN_PFX=TRUE\
- -D${pkgbase^^}_BUILD_RENDERSYSTEM_D3D9=FALSE\
- -D${pkgbase^^}_BUILD_RENDERSYSTEM_D3D11=FALSE\
-D${pkgbase^^}_BUILD_RENDERSYSTEM_GL=TRUE\
-D${pkgbase^^}_BUILD_RENDERSYSTEM_GLES=FALSE\
-D${pkgbase^^}_BUILD_RENDERSYSTEM_GLES2=FALSE\
- -D${pkgbase^^}_BUILD_SAMPLES=TRUE\
+ -D${pkgbase^^}_BUILD_RTSHADERSYSTEM_CORE_SHADERS=TRUE\
+ -D${pkgbase^^}_BUILD_RTSHADERSYSTEM_EXT_SHADERS=TRUE\
+ -D${pkgbase^^}_BUILD_SAMPLES=FALSE\
-D${pkgbase^^}_BUILD_TESTS=FALSE\
-D${pkgbase^^}_BUILD_TOOLS=TRUE\
-D${pkgbase^^}_CONFIG_ENABLE_DDS=TRUE\
-D${pkgbase^^}_CONFIG_ENABLE_FREEIMAGE=TRUE\
- -D${pkgbase^^}_CONFIG_ENABLE_GLES2_CG_SUPPORT=FALSE\
- -D${pkgbase^^}_CONFIG_ENABLE_GLES2_GLSL_OPTIMISER=FALSE\
+ -D${pkgbase^^}_CONFIG_ENABLE_GLES2_GLSL_OPTIMISER=TRUE\
-D${pkgbase^^}_CONFIG_ENABLE_PVRTC=TRUE\
-D${pkgbase^^}_CONFIG_ENABLE_VIEWPORT_ORIENTATIONMODE=TRUE\
-D${pkgbase^^}_CONFIG_ENABLE_ZIP=TRUE\
-D${pkgbase^^}_CONFIG_NEW_COMPILERS=TRUE\
- -D${pkgbase^^}_INSTALL_DOCS=TRUE\
- -D${pkgbase^^}_INSTALL_SAMPLES=TRUE\
- -D${pkgbase^^}_INSTALL_SAMPLES_SOURCE=TRUE\
+ -D${pkgbase^^}_CONFIG_THREAD_PROVIDER=boost\
+ -D${pkgbase^^}_INSTALL_DOCS=FALSE\
+ -D${pkgbase^^}_INSTALL_SAMPLES=FALSE\
+ -D${pkgbase^^}_INSTALL_SAMPLES_SOURCE=FALSE\
-D${pkgbase^^}_INSTALL_TOOLS=TRUE\
-D${pkgbase^^}_LIB_DIRECTORY=lib\
-D${pkgbase^^}_PROFILING=TRUE\
-D${pkgbase^^}_USE_BOOST=TRUE
make V=0
-
- # generate docs
- if [[ $(which dot) && $(which doxygen) ]]; then
- make V=0 doc
- fi
}
package_ogre-libre() {
optdepends=(
- 'intel-tbb: better threading support'
- #'poco: portability'
"boost: for developing using $pkgbase"
- "$pkgbase${pkgflag[1]}: documentation"
- )
- provides=(
- $pkgbase=$pkgver
- )
- conflicts=(
- $pkgbase
- )
- replaces=(
- $pkgbase
+ "$pkgbase-docs: documentation"
)
+ provides=($pkgbase=$pkgver)
+ conflicts=$pkgbase
+ replaces=$pkgbase
cd $srcdir/${pkgbase}_src_v${pkgver//./-}/build
make DESTDIR=$pkgdir install
- # fix samplebrowser name
- mv $pkgdir/usr/bin/SampleBrowser $pkgdir/usr/bin/${pkgbase^}SampleBrowser
-
- ## LIBRE PATCH ##
- # drop cg shaders, hlsl shaders, unusable headers, unusable samples, nonfree fonts and nonfree arts
- rm -fv $pkgdir/usr/include/${pkgbase^^}/RTShaderSystem/${pkgbase^}Shader{CG,HLSL}Program{Processor,Writer}.h
- rm -fv $pkgdir/usr/lib/${pkgbase^^}/Samples/Sample_{BSP,CelShading,Dot3Bump,Fresnel,SSAO}.so
- rm -fvr $pkgdir/usr/share/${pkgbase^^}/Samples/{BSP,CelShading,Dot3Bump,Fresnel,SSAO}
- rm -fvr $pkgdir/usr/share/${pkgbase^^}/media/materials/textures/nvidia
- rm -fv $pkgdir/usr/share/${pkgbase^^}/media/packs/{chiropteraDM.{pk3,txt},cubemapsJS.zip}
- rm -fvr $pkgdir/usr/share/${pkgbase^^}/media/fonts
- sed -i -e '
- /BSP/d
- /CelShading/d
- /Dot3Bump/d
- /Fresnel/d
- /SSAO/d
- ' $pkgdir/usr/share/${pkgbase^^}/samples.cfg
- sed -i -e '
- /Direct3D9/d
- /Direct3D11/d
- /CgProgramManager/d
- ' $pkgdir/usr/share/${pkgbase^^}/plugins.cfg
- sed -i -e '
- /cubemapsJS/d
- /fonts/d
- /nvidia/d
- ' $pkgdir/usr/share/${pkgbase^^}/resources.cfg
- find $pkgdir -type f -name *.cg -delete
- find $pkgdir -type f -name *.hlsl -delete
- rm -fvr $pkgdir/usr/share/${pkgbase^^}/Samples/Browser/Android
- rm -fvr $pkgdir/usr/share/${pkgbase^^}/Samples/Browser/include/SampleBrowser_{NaCl,OSX,iOS}.h
- rm -fvr $pkgdir/usr/share/${pkgbase^^}/Samples/Browser/src/FileSystemLayerImpl_{{Android,NaCl,OSX,WIN32}.cpp,iOS.mm}
-
# install license
- install -Dm644 ../Docs/License.html $pkgdir/usr/share/licenses/$pkgbase/license.html
+ install -vDm644 ../Docs/License.html $pkgdir/usr/share/licenses/$pkgbase/license.html
- # move docs out of this package
- mv $pkgdir/usr/share/${pkgbase^^}/docs $srcdir/docs
+ # remove nonfree files
+ rm -vr $pkgdir/usr/lib/OGRE/cmake
+ rm -v $pkgdir/usr/include/OGRE/Example*.h
}
-package_ogre-docs() {
- pkgdesc="Documentation for $pkgbase"
+package_blender-addon-ogre() {
+ pkgdesc="${pkgbase^} Mesh Exporter: A addon for the ${_bldname^} which allows export mesh and (skeletal/morph/pose) animations to ${pkgbase^}3D format (built for the $_bldname-libre package)"
+ arch=any
depends=(
+ "$_bldname-libre>=$(($_bldep-1)):$_bldver"
+ "$_bldname-libre<$_bldep:${_bldver::2}$((${_bldver:2:4}+1))"
)
+ _pkgver=$pkgver
+ pkgver=$_addver.v$_bldver
+ pkgrel=$_addrel
- cd $srcdir/${pkgbase}_src_v${pkgver//./-}/build
-
- # move docs into this package
- install -dm755 $pkgdir/usr/share/doc
- mv $srcdir/docs $pkgdir/usr/share/doc/${pkgbase^^}
-
- # symlink for docs
- install -dm755 $pkgdir/usr/share/${pkgbase^^}
- cd $pkgdir/usr/share
- ln -s doc/${pkgbase^^} ${pkgbase^^}/docs
+ cd $srcdir/${pkgbase}_src_v${_pkgver//./-}
+ a=$pkgdir/usr/share/$_bldname/$_bldver/scripts/addons
+ install -vd $a && cp -va Tools/${_bldname^}2.5Export $a/$pkgbase
}
# vim:set ts=2 sw=2 et:
diff --git a/libre/ogre-libre/ogre.install b/libre/ogre-libre/ogre.install
deleted file mode 100644
index c05ad1ed3..000000000
--- a/libre/ogre-libre/ogre.install
+++ /dev/null
@@ -1,3 +0,0 @@
-post_install() {
- echo "To view the OGRE samples just run OgreSampleBrowser"
-}
diff --git a/pcr/blender-addon-ogre/PKGBUILD b/pcr/blender-addon-ogre/PKGBUILD
new file mode 100644
index 000000000..77ae390f6
--- /dev/null
+++ b/pcr/blender-addon-ogre/PKGBUILD
@@ -0,0 +1,26 @@
+# Maintainer: Márcio Silva <coadde@lavabit.com>
+
+_bldname=blender
+_bldver=2.68
+_bldep=10
+
+_pkgname=ogre
+pkgname=$_bldname-addon-$_pkgname
+pkgver=0.6.0
+pkgrel=1
+pkgdesc="${_bldname}2$_pkgname: A addon for the ${_bldname^} which allows export to ${_pkgname^}3D formats (scene/mesh/material/skeleton) (built for the $_bldname-libre package)"
+arch=any
+url=https://code.google.com/p/${_bldname}2$_pkgname
+license=LGPL2.1
+depends=(
+ "$_bldname-libre>=$(($_bldep-1)):$_bldver"
+ "$_bldname-libre<$_bldep:${_bldver::2}$((${_bldver:2:4}+1))"
+)
+source=https://${_bldname}2$_pkgname.googlecode.com/files/${_bldname}2$_pkgname-$pkgver.zip
+sha512sums=15609a6dc3f5901ec59193acb6944017cc426fa12ce658715006ba781b6c39a09f38a64c858b28f7e662dff50eccf06ec6ef6efc22e0d2876c6c77fb18c04712
+
+package() {
+ cd $srcdir
+ a=$pkgdir/usr/share/$_bldname/$_bldver/scripts/addons/$_pkgname
+ install -vd $a && cp -va io_export_${_pkgname}DotScene.py $a/__init__.py
+}
diff --git a/pcr/mitsuba/PKGBUILD b/pcr/mitsuba/PKGBUILD
index 7bc29b9ef..b83e7fef9 100644
--- a/pcr/mitsuba/PKGBUILD
+++ b/pcr/mitsuba/PKGBUILD
@@ -3,11 +3,11 @@
_pkgname=mitsuba
_bldname=blender
_bldver=2.68
-_bldep=9
+_bldep=10
_addname=$_pkgname-$_bldname
_adddat=20130320
_addrev=40
-_addrel=1
+_addrel=2
_pyver=3.3
# Wed Mar 20 01:30:37 2013 +0100 rev:40 ($srcdir/$_addname/${pkgname[0]}/__init__.py:bl_info>version)
diff --git a/pcr/yafaray/PKGBUILD b/pcr/yafaray/PKGBUILD
index bbaa2d3ae..e42a63269 100644
--- a/pcr/yafaray/PKGBUILD
+++ b/pcr/yafaray/PKGBUILD
@@ -4,10 +4,10 @@ _pkgname=yafaray
_pkgdate=20130510
_bldname=blender
_bldver=2.68
-_bldep=9
+_bldep=10
_gitname=Core
_addname=${_bldname^}-Exporter
-_addrel=1
+_addrel=2
_pyver=3.3
# Fri May 10 00:57:12 2013 -0700 - Merge pull request #67 from DarkTide/master // Depth fix for hist on background