Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: media-gfx/azpainter/
Date: Wed, 26 May 2021 13:42:53
Message-Id: 1622032927.849e5d4180a51b74ace74d24c9a87136f49e595d.andrewammerlaan@gentoo
1 commit: 849e5d4180a51b74ace74d24c9a87136f49e595d
2 Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
3 AuthorDate: Wed May 26 12:42:07 2021 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
5 CommitDate: Wed May 26 12:42:07 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=849e5d41
7
8 media-gfx/azpainter: add 3.0.0
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.0.ebuild | 54 ++++++++++++++++++++++++++++++
14 2 files changed, 55 insertions(+)
15
16 diff --git a/media-gfx/azpainter/Manifest b/media-gfx/azpainter/Manifest
17 index 40a96a355..ec3e16aa9 100644
18 --- a/media-gfx/azpainter/Manifest
19 +++ b/media-gfx/azpainter/Manifest
20 @@ -1 +1,2 @@
21 DIST azpainter-2.1.7.tar.xz 758960 BLAKE2B a70371777d8f5a8a976032fb13fe21343d852442c3ca1eaa8d4ebdb0aeec25bf9d532a2d03c58c55df629b4a299b2d40100ba83909476d4e0a15b05ea27a5527 SHA512 7edcfe1e3a1f87b6cd3006da288d9a11c3667f49da73d9fa7665f4e2edb90282b30ec356b5f1eda3559b3c51c1f99e585f4b60d6039ba3c8c28da50022f9c798
22 +DIST azpainter-3.0.0.tar.xz 884588 BLAKE2B fd5e17c94d6b578ba40107aacf0f35cb6378ae93f984184cda317d2229daf9fc32ae2cdbec8732cfab34f31d51eb74677876fb732b7b4959ea11502f693666e9 SHA512 5e47ae67ff920190cb007da35b2750874e6ea7a78df969424d54033e9f66b4c77b804ebbae1f2717370d161ac387d93c859bf2b87e1b2fc70dec2cb6c535386c
23
24 diff --git a/media-gfx/azpainter/azpainter-3.0.0.ebuild b/media-gfx/azpainter/azpainter-3.0.0.ebuild
25 new file mode 100644
26 index 000000000..16bc4ac05
27 --- /dev/null
28 +++ b/media-gfx/azpainter/azpainter-3.0.0.ebuild
29 @@ -0,0 +1,54 @@
30 +# Copyright 2018-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
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 +SRC_URI="http://azsky2.html.xdomain.jp/arc/${P}.tar.xz"
40 +
41 +LICENSE="GPL-3"
42 +SLOT="0/3"
43 +KEYWORDS="~amd64 ~x86"
44 +IUSE=""
45 +
46 +DEPEND="
47 + x11-libs/libX11:=
48 + x11-libs/libXext:=
49 + x11-libs/libXcursor:=
50 + x11-libs/libXi:=
51 + media-libs/freetype:=
52 + media-libs/fontconfig:=
53 + sys-libs/zlib:=
54 + media-libs/libpng:=
55 + media-libs/libjpeg-turbo:=
56 + media-libs/libwebp:=
57 + media-libs/tiff:=
58 +"
59 +RDEPEND="${DEPEND}"
60 +
61 +DOCS=(
62 + about_mlk_en.txt
63 + about_mlk_ja.txt
64 + translation/tool/about-en.txt
65 + translation/tool/about-ja.txt
66 +)
67 +
68 +src_configure() {
69 + sh ./configure \
70 + --prefix=/usr \
71 + --docdir=/usr/share/doc/${PF} \
72 + CC="$(tc-getCC)" CFLAGS="${CFLAGS:-02}" LDFLAGS="${LDFLAGS}" || die
73 +}
74 +
75 +src_compile() {
76 + tc-export AR
77 + default
78 +}
79 +
80 +src_install() {
81 + default
82 + rm "${ED}"/usr/share/doc/${PF}/GPL3
83 +}