changeset 341:6f213a600195

graphics/gdk-pixbuf: initial import, closes #1431
author David Demelier <markand@malikania.fr>
date Wed, 27 Mar 2019 20:38:00 +0100
parents 1f23eb4953ce
children 8370eb7b15e5
files graphics/gdk-pixbuf/gdk-pixbuf.sh
diffstat 1 files changed, 100 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/graphics/gdk-pixbuf/gdk-pixbuf.sh	Wed Mar 27 20:38:00 2019 +0100
@@ -0,0 +1,100 @@
+#!/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:=gcc}
+: ${CFLAGS:=-O2}
+: ${CXX:=g++}
+: ${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
+
+	CC="$CC" \
+	CFLAGS="$CFLAGS" \
+	CXX="$CXX" \
+	CXXFLAGS="$CXXFLAGS" \
+	LDFLAGS="$LDFLAGS" \
+	meson \
+		--prefix /usr \
+		--buildtype release \
+		--default-library shared \
+		$with_jasper \
+		$with_jpeg \
+		$with_png \
+		$with_tiff \
+		$with_x \
+		. build
+	ninja -C build
+	DESTDIR=$DESTDIR ninja -C build install
+
+	popd
+	rm -rf $PKGNAME-$PKGVERSION
+}
+