2014-09-19 18:52:05 +00:00
|
|
|
# $Id$
|
|
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
|
|
# Contributor: Brice Carpentier <brice@daknet.org>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - drop valgrind makedepend
|
|
|
|
|
|
|
|
pkgname=cairo
|
2015-12-11 00:59:50 +00:00
|
|
|
pkgver=1.14.6
|
2016-07-31 14:22:40 +00:00
|
|
|
pkgrel=2
|
2014-09-19 18:52:05 +00:00
|
|
|
pkgdesc="Cairo vector graphics library"
|
|
|
|
arch=(i686 x86_64)
|
|
|
|
license=('LGPL' 'MPL')
|
|
|
|
url="http://cairographics.org/"
|
2016-07-31 14:22:40 +00:00
|
|
|
# requires libGL + libEGL - all libgl variants (mesa, nvidia-xxx-libgl/nvidia-utils) provide libEGL
|
|
|
|
depends=('libpng' 'libxrender' 'libxext' 'fontconfig' 'pixman' 'glib2' 'libgl' 'lzo')
|
2014-10-16 13:13:28 +00:00
|
|
|
makedepends=('mesa-libgl' 'librsvg' 'gtk2' 'poppler-glib' 'libspectre' 'gtk-doc' 'git')
|
2014-09-19 18:52:05 +00:00
|
|
|
# for the test suite:
|
2014-10-16 13:13:28 +00:00
|
|
|
#'ttf-dejavu' 'gsfonts' 'xorg-server-xvfb' ) # 'libdrm')
|
2014-09-19 18:52:05 +00:00
|
|
|
#optdepends=('xcb-util: for XCB backend') # really needed?
|
|
|
|
provides=('cairo-xcb')
|
|
|
|
replaces=('cairo-xcb')
|
2015-03-12 22:54:36 +00:00
|
|
|
source=(http://cairographics.org/releases/cairo-$pkgver.tar.xz)
|
2015-12-11 00:59:50 +00:00
|
|
|
sha1sums=('0a59324e6cbe031b5b898ff8b9e2ffceb9d114f5')
|
2014-09-19 18:52:05 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--localstatedir=/var \
|
|
|
|
--disable-static \
|
|
|
|
--disable-lto \
|
|
|
|
--enable-tee \
|
|
|
|
--enable-gl \
|
|
|
|
--enable-egl \
|
|
|
|
--enable-svg \
|
|
|
|
--enable-ps \
|
|
|
|
--enable-pdf \
|
2014-10-16 13:13:28 +00:00
|
|
|
--enable-gobject \
|
2015-11-01 14:46:37 +00:00
|
|
|
--enable-gtk-doc
|
2014-09-19 18:52:05 +00:00
|
|
|
|
|
|
|
#--disable-xlib-xcb \
|
2014-10-16 13:13:28 +00:00
|
|
|
#--enable-test-surfaces \ takes ages
|
2014-09-19 18:52:05 +00:00
|
|
|
#--enable-drm # breaks build
|
|
|
|
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
check() {
|
|
|
|
cd $pkgname-$pkgver
|
2014-10-16 13:13:28 +00:00
|
|
|
#make -j1 -k test || /bin/true
|
2014-09-19 18:52:05 +00:00
|
|
|
|
|
|
|
# results:
|
2014-10-16 13:13:28 +00:00
|
|
|
# 1.12.8-1 # 162 Passed, 328 Failed [ 8 crashed, 10 expected], 26 Skipped
|
|
|
|
# 1.12.12-2: # 29 Passed, 464 Failed [460 crashed, 2 expected], 26 Skipped
|
|
|
|
# 1.12.16-1: # 144 Passed, 364 Failed [ 6 crashed, 12 expected], 27 Skipped
|
2014-09-19 18:52:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
}
|