view graphics/gdk-pixbuf/gdk-pixbuf.sh @ 505:7828241c9634

graphics: convert packages to clang
author David Demelier <markand@malikania.fr>
date Tue, 09 Apr 2019 20:05:00 +0200
parents 6cfc4648ffab
children b1690d766bdb
line wrap: on
line source

#!/bin/sh
#
# Copyright (c) 2019 David Demelier <markand@malikania.fr>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#

PKGNAME=gdk-pixbuf
PKGVERSION=2.38.1
PKGREVISION=1
PKGLICENSE="LGPLv21"
PKGSUMMARY="image loading library"
PKGDOWNLOAD="http://ftp.gnome.org/pub/gnome/sources/gdk-pixbuf/2.38/$PKGNAME-$PKGVERSION.tar.xz"
PKGDEPENDS="dev/meson:build"
PKGOPTIONS="JASPER JPEG PNG TIFF X"

: ${CC:=clang}
: ${CFLAGS:=-O2}
: ${CXX:=clang++}
: ${CXXFLAGS:=-O2}
: ${LDFLAGS:=}
: ${JASPER:=no}
: ${JPEG:=yes}
: ${PNG:=yes}
: ${TIFF:=yes}
: ${X:=yes}

if [ "$JASPER" = "yes" ]; then
	PKGDEPENDS="graphics/jasper $PKGDEPENDS"
	with_jasper="-D jasper=true"
else
	with_jasper="-D jasper=false"
fi

if [ "$JPEG" = "yes" ]; then
	PKGDEPENDS="graphics/libjpeg-turbo $PKGDEPENDS"
	with_jpeg="-D jpeg=true"
else
	with_jpeg="-D jpeg=false"
fi

if [ "$PNG" = "yes" ]; then
	PKGDEPENDS="graphics/libpng $PKGDEPENDS"
	with_png="-D png=true"
else
	with_png="-D png=false"
fi

if [ "$TIFF" = "yes" ]; then
	PKGDEPENDS="graphics/libtiff $PKGDEPENDS"
	with_tiff="-D tiff=true"
else
	with_tiff="-D tiff=false"
fi

if [ "$X" = "yes" ]; then
	PKGDEPENDS="x11/libx11 $PKGDEPENDS"
	with_x="-D x11=true"
else
	with_x="-D x11=false"
fi

build()
{
	rm -rf $PKGNAME-$PKGVERSION
	tar xvaf $PKGNAME-$PKGVERSION.tar.xz
	pushd $PKGNAME-$PKGVERSION

	# TODO: enable documentation once docbook-xml is there.
	CC="$CC" \
	CFLAGS="$CFLAGS" \
	CXX="$CXX" \
	CXXFLAGS="$CXXFLAGS" \
	LDFLAGS="$LDFLAGS" \
	meson \
		--prefix /usr \
		--buildtype release \
		--default-library shared \
		-D docs=false \
		-D man=false \
		$with_jasper \
		$with_jpeg \
		$with_png \
		$with_tiff \
		$with_x \
		. build
	CC="$CC" ninja -C build
	DESTDIR=$DESTDIR ninja -C build install

	popd
	rm -rf $PKGNAME-$PKGVERSION
}