6353b3548c
Fix #3829.
54 lines
1.7 KiB
Bash
54 lines
1.7 KiB
Bash
# Template build file for 'cairo'.
|
|
pkgname=cairo
|
|
version=1.14.6
|
|
revision=2
|
|
build_style=gnu-configure
|
|
configure_args="--disable-static --disable-lto --enable-tee
|
|
$(vopt_if opengl '--enable-gl --enable-egl')
|
|
$(vopt_if gles2 '--enable-egl --enable-glesv2')"
|
|
short_desc="Vector graphics library with cross-device output support"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="LGPL-2.1, MPL-1.1"
|
|
homepage="http://cairographics.org"
|
|
distfiles="${homepage}/releases/$pkgname-$version.tar.xz"
|
|
checksum=613cb38447b76a93ff7235e17acd55a78b52ea84a9df128c3f2257f8eaa7b252
|
|
|
|
hostmakedepends="automake libtool pkg-config"
|
|
makedepends="libpng-devel fontconfig-devel pixman-devel libXrender-devel libglib-devel
|
|
$(vopt_if opengl MesaLib-devel) $(vopt_if gles2 MesaLib-devel)"
|
|
|
|
if [ ${build_option_ultimate} ]; then
|
|
_ultimate_version="2016-04-23"
|
|
_ultimate_wrksrc="${XBPS_BUILDDIR}/fontconfig-ultimate-${_ultimate_version}"
|
|
distfiles+=" https://github.com/bohoomil/fontconfig-ultimate/archive/${_ultimate_version}.tar.gz"
|
|
checksum+=" 9ea0e2455980be7c2ff649c1deb07838e9be64f4fad939716e0050fd5897b057"
|
|
post_extract() {
|
|
msg_normal "Applying ultimate patchset"
|
|
for P in ${_ultimate_wrksrc}/${pkgname}/*.patch; do
|
|
patch -p1 < $P
|
|
done
|
|
}
|
|
fi
|
|
|
|
pre_configure() {
|
|
autoreconf -fi
|
|
}
|
|
|
|
# Package build options
|
|
build_options="gles2 opengl ultimate"
|
|
desc_option_ultimate="Enable ultimate patchset"
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
i686*|x86_64*) build_options_default+=" opengl";;
|
|
esac
|
|
|
|
cairo-devel_package() {
|
|
depends="${makedepends} cairo>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/share
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/lib/*.so
|
|
}
|
|
}
|