# $Id: PKGBUILD 196943 2013-10-21 10:31:44Z tpowa $ # Maintainer: Tobias Powalowski # Maintainer (Parabola): André Silva _pkgname=openexr pkgname=openexr-libre pkgver=2.0.1 pkgrel=2 pkgdesc="An high dynamic-range image file format library, without embedded nonfree fonts in the documentation" url="http://www.openexr.com/" arch=('i686' 'x86_64' 'mips64el') license=('BSD') depends=('zlib' 'ilmbase') makedepends=('libcups' 'libxinerama') [ "$CARCH" != "mips64el" ] && makedepends+=('libreoffice-writer' 'jre7-openjdk-headless') replaces=$_pkgname conflicts=$_pkgname provides=$_pkgname=$pkgver options=('!libtool') source=("http://download.savannah.nongnu.org/releases/${_pkgname}/${_pkgname}-${pkgver}.tar.gz" "http://repo.parabolagnulinux.org/other/${pkgname}/MultiViewOpenEXR.odt" "http://repo.parabolagnulinux.org/other/${pkgname}/OpenEXRFileLayout.odt" "http://repo.parabolagnulinux.org/other/${pkgname}/ReadingAndWritingImageFiles.odt" "http://repo.parabolagnulinux.org/other/${pkgname}/TechnicalIntroduction.odt") noextract=(MultiViewOpenEXR.odt OpenEXRFileLayout.odt ReadingAndWritingImageFiles.odt TechnicalIntroduction.odt) build() { cd "${srcdir}/${_pkgname}-${pkgver}" [ "$CARCH" = "mips64el" ] && sed -i 's/ doc //' Makefile.in # no libreoffice yet ./configure --prefix=/usr make } package() { cd "${srcdir}/${_pkgname}-${pkgver}" # remove documentation with embedded nonfree fonts rm -rv "doc/"{MultiViewOpenEXR,OpenEXRFileLayout,ReadingAndWritingImageFiles,TechnicalIntroduction}.pdf # add source documentation with free fonts install -m644 -v "${srcdir}/"{MultiViewOpenEXR,OpenEXRFileLayout,ReadingAndWritingImageFiles,TechnicalIntroduction}.odt doc if [ "$CARCH" != "mips64el" ]; then # convert documentation to pdf format cd doc for x in ${noextract[@]}; do libreoffice --headless --invisible --convert-to pdf ${x} done cd .. fi make DESTDIR="${pkgdir}" install install -D -m644 COPYING "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE" install -m644 "doc/"{MultiViewOpenEXR,OpenEXRFileLayout,ReadingAndWritingImageFiles,TechnicalIntroduction}.odt "${pkgdir}/usr/share/doc/OpenEXR-${pkgver}" } md5sums=('4387e6050d2faa65dd5215618ff2ddce' '69f117d3c91827e5de47f1e00137a4cc' '4d5ffa31f9af63bd5c621c6cbac6c673' 'de099240193d8a51086dfae914fff3cf' 'ece8bf90d438b89c6bd9fe4a89cc318a')