diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2017-09-29 07:25:06 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-09-29 07:28:20 +0000 |
commit | 95aeab4994065e6a26f794032b9d46ae32fc612a (patch) | |
tree | b13c5bd7ac47cfb962ab08e1db26c6b79cc5304d /community/gegl | |
parent | 4dde5d5a86737f9d7f5ce23bd022dc60dc81d527 (diff) | |
download | aports-95aeab4994065e6a26f794032b9d46ae32fc612a.tar.bz2 aports-95aeab4994065e6a26f794032b9d46ae32fc612a.tar.xz |
community/gegl: move from main
Diffstat (limited to 'community/gegl')
-rw-r--r-- | community/gegl/APKBUILD | 46 | ||||
-rw-r--r-- | community/gegl/gegl-uclibc.patch | 22 |
2 files changed, 68 insertions, 0 deletions
diff --git a/community/gegl/APKBUILD b/community/gegl/APKBUILD new file mode 100644 index 0000000000..e3852295d8 --- /dev/null +++ b/community/gegl/APKBUILD @@ -0,0 +1,46 @@ +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=gegl +pkgver=0.2.0 +pkgrel=5 +pkgdesc="Graph based image processing framework" +url="http://www.gegl.org/" +arch="all" +license="GPL3 LGPL3" +makedepends="babl-dev libpng-dev libjpeg-turbo-dev gtk+-dev librsvg-dev + lua5.1-dev jasper-dev exiv2-dev" +subpackages="$pkgname-dev $pkgname-lang" +source="http://ftp.gimp.org/pub/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.bz2 + " + +depends_dev="babl-dev glib-dev" +_builddir="$srcdir"/$pkgname-$pkgver +prepare() { + cd "$_builddir" + update_config_sub || return 1 + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir/$i" || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --disable-docs \ + --with-exiv2 \ + --with-jasper \ + --with-librsvg \ + --with-lua \ + || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 +} +sha512sums="16ef3f6852fd8efef2b6468a754342a2d003f2c2bef468d9465a448e6c89dedb8e791570f073a9faed05218a7c94c6c418eaa0f3abeadfb3e6b88d766ab792c8 gegl-0.2.0.tar.bz2" diff --git a/community/gegl/gegl-uclibc.patch b/community/gegl/gegl-uclibc.patch new file mode 100644 index 0000000000..cb93f0fec7 --- /dev/null +++ b/community/gegl/gegl-uclibc.patch @@ -0,0 +1,22 @@ +--- ./gegl/buffer/gegl-buffer.c.orig ++++ ./gegl/buffer/gegl-buffer.c +@@ -80,7 +80,7 @@ + /* #define GEGL_BUFFER_DEBUG_ALLOCATIONS to print allocation stack + * traces for leaked GeglBuffers using GNU C libs backtrace_symbols() + */ +-#ifndef G_OS_WIN32 ++#if !defined(G_OS_WIN32) && !defined(__UCLIBC__) + #include <execinfo.h> + #endif + +@@ -876,8 +876,8 @@ + gegl_buffer_get_alloc_stack (void) + { + char *result = NULL; +-#ifdef G_OS_WIN32 +- result = g_strdup ("backtrack not available on win32\n"); ++#if defined(G_OS_WIN32) || defined(__UCLIBC__) ++ result = g_strdup ("backtrack not available\n"); + #else + void *functions[MAX_N_FUNCTIONS]; + int n_functions = 0; |