void-packages/srcpkgs/cairo/template

74 lines
2.4 KiB
Plaintext

# Template build file for 'cairo'.
pkgname=cairo
version=1.12.16
revision=1
build_style=gnu-configure
configure_args="--disable-static --enable-tee"
short_desc="Vector graphics library with cross-device output support"
maintainer="Juan RP <xtraeme@gmail.com>"
license="LGPL-2.1, MPL-1.1"
homepage="http://cairographics.org"
distfiles="${homepage}/releases/$pkgname-$version.tar.xz"
checksum=2505959eb3f1de3e1841023b61585bfd35684b9733c7b6a3643f4f4cbde6d846
long_desc="
Cairo is a vector graphics library with cross-device output support. Currently
supported output targets include the X Window System and in-memory image
buffers. PostScript and PDF file output is planned. Cairo is designed to
produce identical output on all output media while taking advantage of display
hardware acceleration when available (eg. through the X Render Extension).
Cairo provides a stateful user-level API with capabilities similar to the PDF
1.4 imaging model. Cairo provides operations including stroking and filling
Bezier cubic splines, transforming and compositing translucent images, and
antialiased text rendering."
hostmakedepends="which automake libtool pkg-config"
makedepends="libpng-devel>=1.6 fontconfig-devel pixman-devel>=0.28 libXrender-devel>=0.9.7_3 libglib-devel"
depends="pixman>=0.28"
pre_configure() {
autoreconf -fi
}
# Package build options
build_options="gles2 opengl"
desc_option_gles2="Enable support for building the GLESv2 surface backend"
desc_option_opengl="Enable support for building the OpenGL surface backend"
# Enable gles2 by default on x86.
if [ "$XBPS_TARGET_MACHINE" = "i686" -o "$XBPS_TARGET_MACHINE" = "x86_64" ]; then
build_options_default="gles2"
fi
if [ "$build_option_opengl" ]; then
configure_args+=" --enable-gl"
else
configure_args+=" --disable-gl"
fi
if [ "$build_option_gles2" ]; then
configure_args+=" --enable-egl --enable-glesv2"
else
configure_args+=" --disable-egl --disable-glesv2"
fi
if [ "$build_option_opengl" -o "$build_option_gles2" ]; then
makedepends+=" MesaLib-devel"
fi
cairo-devel_package() {
depends="fontconfig-devel glib-devel libpng-devel>=1.6 libXrender-devel>=0.9.7_3 pixman-devel cairo>=${version}"
short_desc+=" -- development files"
if [ "$build_option_opengl" -o "$build_option_gles2" ]; then
depends+=" MesaLib-devel"
fi
pkg_install() {
vmove usr/include
vmove usr/share
vmove usr/lib/pkgconfig
vmove "usr/lib/*.so"
}
}