[arch-commits] Commit in enblend-enfuse/trunk (PKGBUILD)

Bruno Pagani archange at archlinux.org
Sun Nov 26 15:03:35 UTC 2017


    Date: Sunday, November 26, 2017 @ 15:03:33
  Author: archange
Revision: 268917

upgpkg: enblend-enfuse 4.2-4

Adopt the package, clean the PKGBUILD.
Enable OpenMP, enable OpenCL for when it will be available.
Currently building docs fails.

Modified:
  enblend-enfuse/trunk/PKGBUILD

----------+
 PKGBUILD |   38 ++++++++++++++++++--------------------
 1 file changed, 18 insertions(+), 20 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2017-11-26 15:00:14 UTC (rev 268916)
+++ PKGBUILD	2017-11-26 15:03:33 UTC (rev 268917)
@@ -1,36 +1,34 @@
 # $Id$
-# Maintainer: Daniel Isenmann <daniel at archlinux.org>
+# Maintainer: Bruno Pagani <archange at archlinux.org>
+# Contributor: Daniel Isenmann <daniel at archlinux.org>
 # Contributor: Dominik Ryba <domryba at post.pl>
 
 pkgname=enblend-enfuse
 pkgver=4.2
-pkgrel=3
+pkgrel=4
 pkgdesc="Intelligent blend tool for overlapping picture"
-arch=("x86_64")
+arch=('x86_64')
+url="http://enblend.sourceforge.net"
 license=('GPL')
-url="http://enblend.sourceforge.net"
-#depends=('openexr' 'glew' 'freeglut' 'lcms2' 'boost-libs' 'vigra' 'gsl')
-#makedepends=('boost' 'mesa' 'help2man')
-depends=('vigra' 'lcms2' 'gsl')
-makedepends=('libtiff'  'openexr' 'libgl' 'glu' 'boost' 
-             # to build the docs
-             'texlive-latexextra' 'texlive-formatsextra' 'help2man')
-             # additional packages required to fully rebuild all docs
-             #'imagemagick' 'hevea' 'perl-readonly' 'perl-time-modules' 'gnuplot'  'graphviz')
+depends=('lcms2' 'vigra' 'gsl')
+makedepends=('libjpeg' 'libpng' 'libtiff' 'openexr' 'libgl' 'glu' 'boost' 'help2man' 'texlive-bin')
+            # Building doc is failing because of FS#56460. Not building doc fails if pdflatex is not available.
+            # 'texlive-latexextra' 'perl-readonly' 'perl-timedate' 'imagemagick' 'hevea' 'gnuplot' 'graphviz' 'librsvg')
 replaces=('enblend')
 conflicts=('enblend')
 provides=('enblend')
-#options=('!makeflags')
-source=(http://downloads.sourceforge.net/sourceforge/enblend/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('bc03ddb0066a0682cc8c08fa2529e602d671735a')
+source=(https://downloads.sourceforge.net/enblend/${pkgname}-${pkgver}.tar.gz)
+sha256sums=('8703e324939ebd70d76afd350e56800f5ea2c053a040a5f5218b2a1a4300bd48')
 
 build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
+    cd ${pkgname}-${pkgver}
+    ./configure --prefix=/usr \
+                --enable-openmp=yes \
+                --enable-opencl=yes
+    make
 }
 
 package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
+    cd ${pkgname}-${pkgver}
+    make DESTDIR="${pkgdir}" install
 }



More information about the arch-commits mailing list