azpainter: update to 2.1.6

This commit is contained in:
Nathan Owens 2020-11-30 09:49:40 -06:00 committed by Piraty
parent 8fedc4a364
commit 13bb93aa19
3 changed files with 51 additions and 21 deletions

View file

@ -0,0 +1,39 @@
From 460cd59bcc0735ca4e1f4e14b59f4e3459c2044d Mon Sep 17 00:00:00 2001
From: Nathan Owens <ndowens@artixlinux.org>
Date: Mon, 30 Nov 2020 09:44:57 -0600
Subject: [PATCH] fix configure error
---
configure | 3 ---
1 file changed, 3 deletions(-)
diff --git configure configure
index cb9a9f6..06e65e0 100755
--- configure
+++ configure
@@ -203,9 +203,6 @@ for opt;do
cf_check_lib=no ;;
*=*)
eval "$opt" ;;
- *)
- echo "unknown option: $opt"
- exit 1 ;;
esac
done
--
2.29.2
diff --git configure configure
index 06e65e0..b10aed0 100755
--- configure
+++ configure
@@ -201,8 +201,6 @@ for opt;do
cf_docdir=$tmp1 ;;
--no-check-lib)
cf_check_lib=no ;;
- *=*)
- eval "$opt" ;;
esac
done

View file

@ -1,11 +0,0 @@
--- configure.ac.orig
+++ configure.ac
@@ -30,7 +30,7 @@
[AC_DEFINE([HAVE_PTHREAD_H], [1], [pthread.h])],
AC_MSG_ERROR(pthread.h not found))
-AC_CHECK_FILE("$freetype_dir/ft2build.h",,AC_MSG_ERROR([(freetype) ft2build.h not found]))
+
AC_CHECK_HEADER([fontconfig/fontconfig.h],,AC_MSG_ERROR(fontconfig.h not found))
AC_CHECK_HEADER([zlib.h],,AC_MSG_ERROR(zlib.h not found))
AC_CHECK_HEADER([png.h],,AC_MSG_ERROR(png.h not found))

View file

@ -1,20 +1,22 @@
# Template file for 'azpainter'
pkgname=azpainter
version=2.1.5
version=2.1.6
revision=1
build_style=gnu-configure
hostmakedepends="automake"
makedepends="fontconfig-devel libXi-devel libjpeg-turbo-devel"
hostmakedepends="libpng-devel libjpeg-turbo-devel libXi-devel
fontconfig-devel"
makedepends="$hostmakedepends"
depends="desktop-file-utils hicolor-icon-theme"
short_desc="Full-color painting software for illustration drawing"
maintainer="Alexander Mamay <alexander@mamay.su>"
license="GPL-3.0-or-later"
homepage="https://osdn.net/projects/azpainter/"
distfiles="https://dotsrc.dl.osdn.net/osdn/azpainter/71988/azpainter-${version}.tar.xz"
checksum=de96d3f33c7de53ff2ad1cd13be98d4bd595c86d1b75e21f509afd56e5cd9dc7
homepage="https://github.com/Symbian9/azpainter"
distfiles="https://github.com/Symbian9/azpainter/releases/download/v${version}/${pkgname}-${version}.tar.xz"
checksum=85f3f935e76b420f2e5e272514368fdfbe4c25c01daa1e161ac28a6e1edb0d2c
CPPFLAGS="-I${XBPS_CROSS_BASE}/usr/include/freetype2"
pre_configure() {
autoreconf -fi
pre_build() {
vsed -e 's|CFLAGS :=|override CFLAGS =|' \
-e "/CC/s|:= gcc|= ${XBPS_CROSS_TRIPLET}-gcc|" \
-e 's|LDFLAGS :=|override LDFLAGS =|' \
-i Makefile -i mlib/Makefile
}