summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-04-04 01:16:48 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-04-04 01:16:48 -0300
commit548ba672d16c74e1c38af613fcc00f089890905d (patch)
tree0df5d0d18e39b7cfec3c32ac0f4505bd891569a9
parent64117aae0f7248f9c1cd43ef4eb2ef5790924f06 (diff)
parent1413730c0d6da1cd4b87eeb6e338a416a0a88990 (diff)
Merge branch 'master' of ssh://projects.parabolagnulinux.org:1863/srv/git/abslibre
-rw-r--r--pcr/imagemagick-srv/PKGBUILD28
1 files changed, 16 insertions, 12 deletions
diff --git a/pcr/imagemagick-srv/PKGBUILD b/pcr/imagemagick-srv/PKGBUILD
index 0e7bee853..457e07a17 100644
--- a/pcr/imagemagick-srv/PKGBUILD
+++ b/pcr/imagemagick-srv/PKGBUILD
@@ -4,21 +4,21 @@
pkgbase=imagemagick
pkgname=imagemagick-srv
-pkgver=6.8.6.8
-pkgrel=1.1
+pkgver=6.8.8.9
+pkgrel=1
arch=('i686' 'x86_64' 'mips64el')
url="http://www.imagemagick.org/"
license=('custom')
provides=("$pkgbase=$pkgver")
conflicts=$pkgbase
-replaces=$pkgbase
makedepends=('libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'ghostscript' \
'openexr' 'libwmf' 'librsvg' 'libxml2' 'jasper' 'liblqr' \
'libwebp') # libcl opencl-headers
-#source=(http://www.imagemagick.org/download/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz \
-source=(ftp://ftp.sunet.se/pub/multimedia/graphics/ImageMagick/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz \
+#source=(http://www.imagemagick.org/download/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc}
+source=(ftp://ftp.sunet.se/pub/multimedia/graphics/ImageMagick/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc}
perlmagick.rpath.patch)
-sha1sums=('fe298492c6be08eb887d02b75efeb609fa6c4d61'
+sha1sums=('3ad2deadbc7e7c6e61eb5590fcc49d71fd96b247'
+ 'SKIP'
'e143cf9d530fabf3b58023899b5cc544ba93daec')
prepare() {
@@ -30,24 +30,28 @@ prepare() {
build() {
cd ImageMagick-${pkgver%.*}-${pkgver##*.}
+ [[ $CARCH = "i686" ]] && EXTRAOPTS="--with-gcc-arch=i686"
+ [[ $CARCH = "x86_64" ]] && EXTRAOPTS="--with-gcc-arch=x86-64"
+ [[ $CARCH = "mips64el" ]] && EXTRAOPTS="--with-gcc-arch=mips64el"
./configure --prefix=/usr --sysconfdir=/etc --with-modules --disable-static \
--disable-hdri --with-wmf --with-openexr --with-xml --with-lcms2 --with-jp2 \
--with-webp --with-gslib --with-gs-font-dir=/usr/share/fonts/Type1 \
--with-perl --with-perl-options="INSTALLDIRS=vendor" --with-lqr --with-rsvg \
--disable-opencl --without-gvc --without-djvu --without-autotrace \
- --without-jbig --without-fpx --without-dps --without-fftw
+ --without-jbig --without-fpx --without-dps --without-fftw $EXTRAOPTS
make
}
-check() {
- cd ImageMagick-${pkgver%.*}-${pkgver##*.}
- make check
-}
+#check() {
+# cd ImageMagick-${pkgver%.*}-${pkgver##*.}
+# make check
+#}
package_imagemagick-srv() {
pkgdesc="An image viewing/manipulation program (for web servers)"
depends=('perl' 'libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'liblqr') # 'libcl')
- optdepends=('ghostscript: for Ghostscript support'
+ optdepends=('imagemagick-doc: for additional information'
+ 'ghostscript: for Ghostscript support'
'openexr: for OpenEXR support'
'libwmf: for WMF support'
'librsvg: for SVG support'