Gentoo Archives: gentoo-commits

From: Florian Schmaus <flow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: media-gfx/azpainter/
Date: Tue, 01 Feb 2022 10:39:00
Message-Id: 1643350752.8e865e928ca69f141c28d64285fe40396e158190.flow@gentoo
1 commit: 8e865e928ca69f141c28d64285fe40396e158190
2 Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
3 AuthorDate: Fri Jan 28 06:18:40 2022 +0000
4 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 28 06:19:12 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8e865e92
7
8 media-gfx/azpainter: add 3.0.4
9
10 Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
11
12 media-gfx/azpainter/Manifest | 1 +
13 media-gfx/azpainter/azpainter-3.0.4.ebuild | 51 ++++++++++++++++++++++++++++++
14 2 files changed, 52 insertions(+)
15
16 diff --git a/media-gfx/azpainter/Manifest b/media-gfx/azpainter/Manifest
17 index c259b815e..a523d1cc6 100644
18 --- a/media-gfx/azpainter/Manifest
19 +++ b/media-gfx/azpainter/Manifest
20 @@ -1 +1,2 @@
21 DIST azpainter-v3.0.3.tar.gz 1260272 BLAKE2B b0d7e21f4a24ef27e6d4cbc639624dcc333d19f477dbf436bf72929473e07318246009d3291e56296d8f8a46d1f10d2dc1b8224f99c94dc46672f9c91827ce9f SHA512 7c363127d1bb3ad9c212ec3a226b047edff0452e46d0d8de52fefaf2399d72a4e3211b2b32ea57a43a9d705ad06729543c4ab401dba672a909568b7935b67801
22 +DIST azpainter-v3.0.4.tar.gz 1283239 BLAKE2B a0632909c4b066309fd5a696b7839526f5a2a4dbf91a3c77a27ad199ea83fb09b5f711effe3c77da629e2dfffe30a0b09eda66a939affa1f52f3c73ed3ca14e1 SHA512 44fd259d50ef794c223e7bed9f4ccf9c5fe6b0905e521066e279b33c836d8d0090c01229b63444ea459477f2aef174d9876b1811753d0a253cef02ffe4e95af2
23
24 diff --git a/media-gfx/azpainter/azpainter-3.0.4.ebuild b/media-gfx/azpainter/azpainter-3.0.4.ebuild
25 new file mode 100644
26 index 000000000..42ae75323
27 --- /dev/null
28 +++ b/media-gfx/azpainter/azpainter-3.0.4.ebuild
29 @@ -0,0 +1,51 @@
30 +# Copyright 2018-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +inherit toolchain-funcs xdg
36 +
37 +DESCRIPTION="Full color painting software for Linux for illustration drawing"
38 +HOMEPAGE="http://azsky2.html.xdomain.jp/soft/azpainter.html
39 + https://gitlab.com/azelpg/azpainter"
40 +SRC_URI="https://gitlab.com/azelpg/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz"
41 +S="${WORKDIR}/${PN}-v${PV}"
42 +
43 +LICENSE="GPL-3"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +
47 +DEPEND="
48 + x11-libs/libX11
49 + x11-libs/libXext
50 + x11-libs/libXcursor
51 + x11-libs/libXi
52 + media-libs/freetype
53 + media-libs/fontconfig
54 + sys-libs/zlib:=
55 + media-libs/libpng:=
56 + media-libs/libjpeg-turbo:=
57 + media-libs/libwebp:=
58 + media-libs/tiff
59 +"
60 +RDEPEND="${DEPEND}"
61 +
62 +DOCS=(
63 + about_mlk_en.txt
64 + about_mlk_ja.txt
65 + translation/tool/about-en.txt
66 + translation/tool/about-ja.txt
67 +)
68 +
69 +src_configure() {
70 + sh ./configure \
71 + --prefix=/usr \
72 + --docdir=/usr/share/doc/${PF} \
73 + CC="$(tc-getCC)" CFLAGS="${CFLAGS:-02}" LDFLAGS="${LDFLAGS}" || die
74 + tc-export AR
75 +}
76 +
77 +src_install() {
78 + default
79 + rm "${ED}"/usr/share/doc/${PF}/GPL3
80 +}