[arch-commits] Commit in ilmbase/repos (10 files)

2015-12-05 Thread Bartłomiej Piotrowski
Date: Saturday, December 5, 2015 @ 16:30:02
  Author: bpiotrowski
Revision: 252423

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  ilmbase/repos/staging-i686/
  ilmbase/repos/staging-i686/PKGBUILD
(from rev 252422, ilmbase/trunk/PKGBUILD)
  ilmbase/repos/staging-i686/ilmbase-1.0.3-pkgconfig.patch
(from rev 252422, ilmbase/trunk/ilmbase-1.0.3-pkgconfig.patch)
  ilmbase/repos/staging-i686/ilmbase-2.0.1-no_undefined.patch
(from rev 252422, ilmbase/trunk/ilmbase-2.0.1-no_undefined.patch)
  ilmbase/repos/staging-i686/ilmbase-IexMath.patch
(from rev 252422, ilmbase/trunk/ilmbase-IexMath.patch)
  ilmbase/repos/staging-x86_64/
  ilmbase/repos/staging-x86_64/PKGBUILD
(from rev 252422, ilmbase/trunk/PKGBUILD)
  ilmbase/repos/staging-x86_64/ilmbase-1.0.3-pkgconfig.patch
(from rev 252422, ilmbase/trunk/ilmbase-1.0.3-pkgconfig.patch)
  ilmbase/repos/staging-x86_64/ilmbase-2.0.1-no_undefined.patch
(from rev 252422, ilmbase/trunk/ilmbase-2.0.1-no_undefined.patch)
  ilmbase/repos/staging-x86_64/ilmbase-IexMath.patch
(from rev 252422, ilmbase/trunk/ilmbase-IexMath.patch)

-+
 staging-i686/PKGBUILD   |   44 ++
 staging-i686/ilmbase-1.0.3-pkgconfig.patch  |8 
 staging-i686/ilmbase-2.0.1-no_undefined.patch   |   24 
 staging-i686/ilmbase-IexMath.patch  |   12 ++
 staging-x86_64/PKGBUILD |   44 ++
 staging-x86_64/ilmbase-1.0.3-pkgconfig.patch|8 
 staging-x86_64/ilmbase-2.0.1-no_undefined.patch |   24 
 staging-x86_64/ilmbase-IexMath.patch|   12 ++
 8 files changed, 176 insertions(+)

Copied: ilmbase/repos/staging-i686/PKGBUILD (from rev 252422, 
ilmbase/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2015-12-05 15:30:02 UTC (rev 252423)
@@ -0,0 +1,44 @@
+# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
+# Maintainer: Tobias Powalowski 
+
+pkgname=ilmbase
+pkgver=2.2.0
+pkgrel=2
+depends=('gcc-libs')
+pkgdesc="Base libraries from ILM for OpenEXR"
+arch=(i686 x86_64)
+url="http://www.openexr.com;
+license=('custom')
+source=(http://download.savannah.nongnu.org/releases/openexr/$pkgname-$pkgver.tar.gz
+ilmbase-2.0.1-no_undefined.patch
+ilmbase-1.0.3-pkgconfig.patch)
+
+prepare() {
+  cd "${srcdir}/$pkgname-$pkgver"
+  # patches from fedora
+  patch -p1 -i ../ilmbase-2.0.1-no_undefined.patch
+  patch -p1 -i ../ilmbase-1.0.3-pkgconfig.patch
+}
+
+build() {
+  cd "${srcdir}/$pkgname-$pkgver"
+  ./configure --prefix=/usr
+  # manually set PTHREAD_LIBS to include -lpthread until libtool bogosity is 
fixed,
+  # https://bugzilla.redhat.com/show_bug.cgi?id=661333
+  make PTHREAD_LIBS="-pthread -lpthread"
+}
+
+check() {
+  cd "${srcdir}/$pkgname-$pkgver"
+  # one of the tests fails randomly for an unknown reason
+  make check || true
+}
+
+package() {
+  cd "${srcdir}/$pkgname-$pkgver"
+  make DESTDIR="${pkgdir}" install
+  install -D -m644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
+}
+md5sums=('b540db502c5fa42078249f43d18a4652'
+ '27ff3915e03964f85a9e9fb896a93479'
+ 'ed3eb3dfa2393adc6829cc9ca8caa0ff')

Copied: ilmbase/repos/staging-i686/ilmbase-1.0.3-pkgconfig.patch (from rev 
252422, ilmbase/trunk/ilmbase-1.0.3-pkgconfig.patch)
===
--- staging-i686/ilmbase-1.0.3-pkgconfig.patch  (rev 0)
+++ staging-i686/ilmbase-1.0.3-pkgconfig.patch  2015-12-05 15:30:02 UTC (rev 
252423)
@@ -0,0 +1,8 @@
+diff -up ilmbase-1.0.3/IlmBase.pc.in.pkgconfig ilmbase-1.0.3/IlmBase.pc.in
+--- ilmbase-1.0.3/IlmBase.pc.in.pkgconfig  2012-07-17 18:27:25.0 
-0500
 ilmbase-1.0.3/IlmBase.pc.in2012-09-08 11:11:15.913468312 -0500
+@@ -9,3 +9,4 @@ Description: Base math and exception lib
+ Version: @ILMBASE_VERSION@
+ Libs: -L${libdir} -lImath -lHalf -lIex -lIexMath -lIlmThread @PTHREAD_LIBS@
+ Cflags: @PTHREAD_CFLAGS@ -I${OpenEXR_includedir}
++Requires.private: gl glu

Copied: ilmbase/repos/staging-i686/ilmbase-2.0.1-no_undefined.patch (from rev 
252422, ilmbase/trunk/ilmbase-2.0.1-no_undefined.patch)
===
--- staging-i686/ilmbase-2.0.1-no_undefined.patch   
(rev 0)
+++ staging-i686/ilmbase-2.0.1-no_undefined.patch   2015-12-05 15:30:02 UTC 
(rev 252423)
@@ -0,0 +1,24 @@
+diff -up ilmbase-2.0.1/IlmThread/Makefile.am.no_undefined 
ilmbase-2.0.1/IlmThread/Makefile.am
+--- ilmbase-2.0.1/IlmThread/Makefile.am.no_undefined   2013-06-18 
14:51:38.0 -0500
 ilmbase-2.0.1/IlmThread/Makefile.am2013-08-28 21:04:25.793391766 
-0500
+@@ -14,7 +14,7 @@ libIlmThread_la_LDFLAGS = -version-info
+ if 

[arch-commits] Commit in ilmbase/repos (10 files)

2014-05-15 Thread Tobias Powalowski
Date: Thursday, May 15, 2014 @ 12:45:27
  Author: tpowa
Revision: 212800

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  ilmbase/repos/staging-i686/
  ilmbase/repos/staging-i686/PKGBUILD
(from rev 212799, ilmbase/trunk/PKGBUILD)
  ilmbase/repos/staging-i686/ilmbase-1.0.3-pkgconfig.patch
(from rev 212799, ilmbase/trunk/ilmbase-1.0.3-pkgconfig.patch)
  ilmbase/repos/staging-i686/ilmbase-2.0.1-no_undefined.patch
(from rev 212799, ilmbase/trunk/ilmbase-2.0.1-no_undefined.patch)
  ilmbase/repos/staging-i686/ilmbase-IexMath.patch
(from rev 212799, ilmbase/trunk/ilmbase-IexMath.patch)
  ilmbase/repos/staging-x86_64/
  ilmbase/repos/staging-x86_64/PKGBUILD
(from rev 212799, ilmbase/trunk/PKGBUILD)
  ilmbase/repos/staging-x86_64/ilmbase-1.0.3-pkgconfig.patch
(from rev 212799, ilmbase/trunk/ilmbase-1.0.3-pkgconfig.patch)
  ilmbase/repos/staging-x86_64/ilmbase-2.0.1-no_undefined.patch
(from rev 212799, ilmbase/trunk/ilmbase-2.0.1-no_undefined.patch)
  ilmbase/repos/staging-x86_64/ilmbase-IexMath.patch
(from rev 212799, ilmbase/trunk/ilmbase-IexMath.patch)

-+
 staging-i686/PKGBUILD   |   46 ++
 staging-i686/ilmbase-1.0.3-pkgconfig.patch  |8 +++
 staging-i686/ilmbase-2.0.1-no_undefined.patch   |   24 +++
 staging-i686/ilmbase-IexMath.patch  |   12 +
 staging-x86_64/PKGBUILD |   46 ++
 staging-x86_64/ilmbase-1.0.3-pkgconfig.patch|8 +++
 staging-x86_64/ilmbase-2.0.1-no_undefined.patch |   24 +++
 staging-x86_64/ilmbase-IexMath.patch|   12 +
 8 files changed, 180 insertions(+)

Copied: ilmbase/repos/staging-i686/PKGBUILD (from rev 212799, 
ilmbase/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-05-15 10:45:27 UTC (rev 212800)
@@ -0,0 +1,46 @@
+# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+
+pkgname=ilmbase
+pkgver=2.1.0
+pkgrel=1
+depends=('gcc-libs')
+pkgdesc=Base libraries from ILM for OpenEXR
+arch=(i686 x86_64)
+url=http://www.openexr.com;
+license=('custom')
+source=(http://download.savannah.nongnu.org/releases/openexr/$pkgname-$pkgver.tar.gz
+ilmbase-2.0.1-no_undefined.patch
+ilmbase-1.0.3-pkgconfig.patch)
+
+prepare() {
+  cd ${srcdir}/$pkgname-$pkgver
+  # patches from fedora
+  patch -p1 -i ../ilmbase-2.0.1-no_undefined.patch
+  patch -p1 -i ../ilmbase-1.0.3-pkgconfig.patch
+}
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  # manually set PTHREAD_LIBS to include -lpthread until libtool bogosity is 
fixed,
+  # https://bugzilla.redhat.com/show_bug.cgi?id=661333
+  make PTHREAD_LIBS=-pthread -lpthread
+}
+
+check() {
+  cd ${srcdir}/$pkgname-$pkgver
+  # one of the tests fails randomly for an unknown reason
+  make check || true
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+  install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}
+md5sums=('8ba2f608191ad020e50277d8a3ba0850'
+ '27ff3915e03964f85a9e9fb896a93479')
+md5sums=('8ba2f608191ad020e50277d8a3ba0850'
+ '27ff3915e03964f85a9e9fb896a93479'
+ 'ed3eb3dfa2393adc6829cc9ca8caa0ff')

Copied: ilmbase/repos/staging-i686/ilmbase-1.0.3-pkgconfig.patch (from rev 
212799, ilmbase/trunk/ilmbase-1.0.3-pkgconfig.patch)
===
--- staging-i686/ilmbase-1.0.3-pkgconfig.patch  (rev 0)
+++ staging-i686/ilmbase-1.0.3-pkgconfig.patch  2014-05-15 10:45:27 UTC (rev 
212800)
@@ -0,0 +1,8 @@
+diff -up ilmbase-1.0.3/IlmBase.pc.in.pkgconfig ilmbase-1.0.3/IlmBase.pc.in
+--- ilmbase-1.0.3/IlmBase.pc.in.pkgconfig  2012-07-17 18:27:25.0 
-0500
 ilmbase-1.0.3/IlmBase.pc.in2012-09-08 11:11:15.913468312 -0500
+@@ -9,3 +9,4 @@ Description: Base math and exception lib
+ Version: @ILMBASE_VERSION@
+ Libs: -L${libdir} -lImath -lHalf -lIex -lIexMath -lIlmThread @PTHREAD_LIBS@
+ Cflags: @PTHREAD_CFLAGS@ -I${OpenEXR_includedir}
++Requires.private: gl glu

Copied: ilmbase/repos/staging-i686/ilmbase-2.0.1-no_undefined.patch (from rev 
212799, ilmbase/trunk/ilmbase-2.0.1-no_undefined.patch)
===
--- staging-i686/ilmbase-2.0.1-no_undefined.patch   
(rev 0)
+++ staging-i686/ilmbase-2.0.1-no_undefined.patch   2014-05-15 10:45:27 UTC 
(rev 212800)
@@ -0,0 +1,24 @@
+diff -up ilmbase-2.0.1/IlmThread/Makefile.am.no_undefined 
ilmbase-2.0.1/IlmThread/Makefile.am
+--- ilmbase-2.0.1/IlmThread/Makefile.am.no_undefined   2013-06-18 
14:51:38.0 -0500
 ilmbase-2.0.1/IlmThread/Makefile.am2013-08-28 21:04:25.793391766 
-0500
+@@ -14,7 

[arch-commits] Commit in ilmbase/repos (10 files)

2014-02-25 Thread Bartłomiej Piotrowski
Date: Wednesday, February 26, 2014 @ 06:47:44
  Author: bpiotrowski
Revision: 206430

archrelease: copy trunk to staging-i686, staging-x86_64

Added:
  ilmbase/repos/staging-i686/PKGBUILD
(from rev 206429, ilmbase/trunk/PKGBUILD)
  ilmbase/repos/staging-i686/ilmbase-2.0.1-no_undefined.patch
(from rev 206429, ilmbase/trunk/ilmbase-2.0.1-no_undefined.patch)
  ilmbase/repos/staging-i686/ilmbase-IexMath.patch
(from rev 206429, ilmbase/trunk/ilmbase-IexMath.patch)
  ilmbase/repos/staging-x86_64/PKGBUILD
(from rev 206429, ilmbase/trunk/PKGBUILD)
  ilmbase/repos/staging-x86_64/ilmbase-2.0.1-no_undefined.patch
(from rev 206429, ilmbase/trunk/ilmbase-2.0.1-no_undefined.patch)
  ilmbase/repos/staging-x86_64/ilmbase-IexMath.patch
(from rev 206429, ilmbase/trunk/ilmbase-IexMath.patch)
Deleted:
  ilmbase/repos/staging-i686/PKGBUILD
  ilmbase/repos/staging-i686/ilmbase-IexMath.patch
  ilmbase/repos/staging-x86_64/PKGBUILD
  ilmbase/repos/staging-x86_64/ilmbase-IexMath.patch

-+
 /PKGBUILD   |   76 ++
 /ilmbase-IexMath.patch  |   24 ++
 staging-i686/PKGBUILD   |   31 
 staging-i686/ilmbase-2.0.1-no_undefined.patch   |   24 ++
 staging-i686/ilmbase-IexMath.patch  |   12 ---
 staging-x86_64/PKGBUILD |   31 
 staging-x86_64/ilmbase-2.0.1-no_undefined.patch |   24 ++
 staging-x86_64/ilmbase-IexMath.patch|   12 ---
 8 files changed, 148 insertions(+), 86 deletions(-)

Deleted: staging-i686/PKGBUILD
===
--- staging-i686/PKGBUILD   2014-02-26 05:47:38 UTC (rev 206429)
+++ staging-i686/PKGBUILD   2014-02-26 05:47:44 UTC (rev 206430)
@@ -1,31 +0,0 @@
-# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
-# Maintainer: Tobias Powalowski tp...@archlinux.org
-
-pkgname=ilmbase
-pkgver=2.1.0
-pkgrel=1
-depends=('gcc-libs')
-pkgdesc=Base libraries from ILM for OpenEXR
-arch=(i686 x86_64)
-url=http://www.openexr.com;
-license=('custom')
-source=(http://download.savannah.nongnu.org/releases/openexr/$pkgname-$pkgver.tar.gz)
-
-build() {
-  cd ${srcdir}/$pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd ${srcdir}/$pkgname-$pkgver
-  # one of the tests fails randomly for an unknown reason
-  make check || true
-}
-
-package() {
-  cd ${srcdir}/$pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
-  install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}
-md5sums=('8ba2f608191ad020e50277d8a3ba0850')

Copied: ilmbase/repos/staging-i686/PKGBUILD (from rev 206429, 
ilmbase/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-02-26 05:47:44 UTC (rev 206430)
@@ -0,0 +1,38 @@
+# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+
+pkgname=ilmbase
+pkgver=2.1.0
+pkgrel=2
+depends=('gcc-libs')
+pkgdesc=Base libraries from ILM for OpenEXR
+arch=(i686 x86_64)
+url=http://www.openexr.com;
+license=('custom')
+source=(http://download.savannah.nongnu.org/releases/openexr/$pkgname-$pkgver.tar.gz
+ilmbase-2.0.1-no_undefined.patch)
+
+prepare() {
+  cd ${srcdir}/$pkgname-$pkgver
+  patch -p1 -i ../ilmbase-2.0.1-no_undefined.patch
+}
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${srcdir}/$pkgname-$pkgver
+  # one of the tests fails randomly for an unknown reason
+  make check || true
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+  install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}
+md5sums=('8ba2f608191ad020e50277d8a3ba0850'
+ '27ff3915e03964f85a9e9fb896a93479')

Copied: ilmbase/repos/staging-i686/ilmbase-2.0.1-no_undefined.patch (from rev 
206429, ilmbase/trunk/ilmbase-2.0.1-no_undefined.patch)
===
--- staging-i686/ilmbase-2.0.1-no_undefined.patch   
(rev 0)
+++ staging-i686/ilmbase-2.0.1-no_undefined.patch   2014-02-26 05:47:44 UTC 
(rev 206430)
@@ -0,0 +1,24 @@
+diff -up ilmbase-2.0.1/IlmThread/Makefile.am.no_undefined 
ilmbase-2.0.1/IlmThread/Makefile.am
+--- ilmbase-2.0.1/IlmThread/Makefile.am.no_undefined   2013-06-18 
14:51:38.0 -0500
 ilmbase-2.0.1/IlmThread/Makefile.am2013-08-28 21:04:25.793391766 
-0500
+@@ -14,7 +14,7 @@ libIlmThread_la_LDFLAGS = -version-info
+ if LIB_SUFFIX_EXISTS
+ libIlmThread_la_LDFLAGS += -release @LIB_SUFFIX@
+ endif
+-libIlmThread_la_LIBADD = ../Iex/libIex.la
++libIlmThread_la_LIBADD = ../Iex/libIex.la $(PTHREAD_LIBS)
+ 
+ libIlmThreadincludedir = $(includedir)/OpenEXR
+ 
+diff -up ilmbase-2.0.1/IlmThread/Makefile.in.no_undefined 

[arch-commits] Commit in ilmbase/repos (10 files)

2012-10-27 Thread Eric Bélanger
Date: Saturday, October 27, 2012 @ 19:41:54
  Author: eric
Revision: 169749

db-move: moved ilmbase from [testing] to [extra] (i686, x86_64)

Added:
  ilmbase/repos/extra-i686/PKGBUILD
(from rev 169738, ilmbase/repos/testing-i686/PKGBUILD)
  ilmbase/repos/extra-i686/ilmbase-IexMath.patch
(from rev 169738, ilmbase/repos/testing-i686/ilmbase-IexMath.patch)
  ilmbase/repos/extra-x86_64/PKGBUILD
(from rev 169738, ilmbase/repos/testing-x86_64/PKGBUILD)
  ilmbase/repos/extra-x86_64/ilmbase-IexMath.patch
(from rev 169738, ilmbase/repos/testing-x86_64/ilmbase-IexMath.patch)
Deleted:
  ilmbase/repos/extra-i686/PKGBUILD
  ilmbase/repos/extra-i686/tests-compile-fixes.patch
  ilmbase/repos/extra-x86_64/PKGBUILD
  ilmbase/repos/extra-x86_64/tests-compile-fixes.patch
  ilmbase/repos/testing-i686/
  ilmbase/repos/testing-x86_64/

+
 extra-i686/PKGBUILD|   70 +++
 extra-i686/ilmbase-IexMath.patch   |   12 +
 extra-i686/tests-compile-fixes.patch   |   12 -
 extra-x86_64/PKGBUILD  |   70 +++
 extra-x86_64/ilmbase-IexMath.patch |   12 +
 extra-x86_64/tests-compile-fixes.patch |   12 -
 6 files changed, 94 insertions(+), 94 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-10-27 23:41:52 UTC (rev 169748)
+++ extra-i686/PKGBUILD 2012-10-27 23:41:54 UTC (rev 169749)
@@ -1,35 +0,0 @@
-# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
-# Maintainer: Tobias Powalowski tp...@archlinux.org
-
-pkgname=ilmbase
-pkgver=1.0.2
-pkgrel=1
-depends=('gcc-libs')
-pkgdesc=Base libraries from ILM for OpenEXR
-arch=(i686 x86_64)
-license=('custom')
-options=('!libtool')
-source=(http://savannah.nongnu.org/download/openexr/$pkgname-$pkgver.tar.gz
-tests-compile-fixes.patch)
-url=http://www.openexr.com;
-md5sums=('26c133ee8ca48e1196fbfb3ffe292ab4'
- '2687ab9ac01b417ee5cf8c0174b72e43')
-
-build() {
-  cd ${srcdir}/$pkgname-$pkgver
-  patch -Np1 -i ${srcdir}/tests-compile-fixes.patch
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd ${srcdir}/$pkgname-$pkgver
-  # one of the tests fails randomly for an unknown reason
-  make check || true
-}
-
-package() {
-  cd ${srcdir}/$pkgname-$pkgver
-  make DESTDIR=${pkgdir} install
-  install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}

Copied: ilmbase/repos/extra-i686/PKGBUILD (from rev 169738, 
ilmbase/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-10-27 23:41:54 UTC (rev 169749)
@@ -0,0 +1,35 @@
+# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
+# Maintainer: Tobias Powalowski tp...@archlinux.org
+
+pkgname=ilmbase
+pkgver=1.0.3
+pkgrel=1
+depends=('gcc-libs')
+pkgdesc=Base libraries from ILM for OpenEXR
+arch=(i686 x86_64)
+url=http://www.openexr.com;
+license=('custom')
+options=('!libtool')
+source=(https://github.com/downloads/openexr/openexr/$pkgname-$pkgver.tar.gz 
+ilmbase-IexMath.patch)
+md5sums=('d99962ec7e2bfac0647aaabf6b91d5de'
+ '9c8efaf15f60bccf79749ec879657962')
+
+build() {
+  cd ${srcdir}/$pkgname-$pkgver
+  patch -p0 -i ${srcdir}/ilmbase-IexMath.patch
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${srcdir}/$pkgname-$pkgver
+  # one of the tests fails randomly for an unknown reason
+  make check || true
+}
+
+package() {
+  cd ${srcdir}/$pkgname-$pkgver
+  make DESTDIR=${pkgdir} install
+  install -D -m644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
+}

Copied: ilmbase/repos/extra-i686/ilmbase-IexMath.patch (from rev 169738, 
ilmbase/repos/testing-i686/ilmbase-IexMath.patch)
===
--- extra-i686/ilmbase-IexMath.patch(rev 0)
+++ extra-i686/ilmbase-IexMath.patch2012-10-27 23:41:54 UTC (rev 169749)
@@ -0,0 +1,12 @@
+--- IexMath/IexMathFpu.cpp.orig2012-07-26 20:51:55.0 +0200
 IexMath/IexMathFpu.cpp 2012-10-04 15:30:47.0 +0200
+@@ -27,8 +27,7 @@
+ #endif
+ 
+ 
+-#ifdef HAVE_UCONTEXT_H
+-
++#if defined(HAVE_UCONTEXT_H)  (defined(x86_64) || defined(i386_))
+ 
+ #include ucontext.h
+ #include signal.h

Deleted: extra-i686/tests-compile-fixes.patch
===
--- extra-i686/tests-compile-fixes.patch2012-10-27 23:41:52 UTC (rev 
169748)
+++ extra-i686/tests-compile-fixes.patch2012-10-27 23:41:54 UTC (rev 
169749)
@@ -1,12 +0,0 @@
-diff -ur ilmbase-1.0.2/Imath/ImathMatrix.h 
ilmbase-1.0.2.new/Imath/ImathMatrix.h
 ilmbase-1.0.2/Imath/ImathMatrix.h  2010-07-17 00:48:40.0 +0200
-+++ ilmbase-1.0.2.new/Imath/ImathMatrix.h  2011-04-25 10:15:21.121608420 
+0200
-@@ -49,6 +49,8 @@
- #include ImathVec.h
- #include