Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/xpaint/
Date: Fri, 03 Dec 2021 00:12:35
Message-Id: 1638489683.7a87ca41a24ccbcffe8787b9e16bcf3d4c5dc611.sam@gentoo
1 commit: 7a87ca41a24ccbcffe8787b9e16bcf3d4c5dc611
2 Author: Viorel Munteanu <ceamac.paragon <AT> gmail <DOT> com>
3 AuthorDate: Thu Dec 2 10:21:28 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 3 00:01:23 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a87ca41
7
8 media-gfx/xpaint: drop v3.1.3
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Viorel Munteanu <ceamac.paragon <AT> gmail.com>
12 Closes: https://github.com/gentoo/gentoo/pull/23148
13 Signed-off-by: Sam James <sam <AT> gentoo.org>
14
15 media-gfx/xpaint/Manifest | 1 -
16 media-gfx/xpaint/xpaint-3.1.3.ebuild | 104 -----------------------------------
17 2 files changed, 105 deletions(-)
18
19 diff --git a/media-gfx/xpaint/Manifest b/media-gfx/xpaint/Manifest
20 index 7ed4b083c4e6..a9e2161ac2f1 100644
21 --- a/media-gfx/xpaint/Manifest
22 +++ b/media-gfx/xpaint/Manifest
23 @@ -1,2 +1 @@
24 -DIST xpaint-3.1.3.tar.bz2 1656489 BLAKE2B c6f5ed4a6c990dccacc572c834fabf68a16cacfde477915e5c3598a96335a899344d4375a48e6bf06fb601e9b260a11cc2b43afb404a83b9fb7b3044288ce1fa SHA512 8ef15d6af4b65d9da18d3e5eb9eacc0b42e718d069e20de91f2e0352b642d0a4b7626a2008fdd6217c0668ed1ecdc7a09c4a993a6074c77b7899b4613c1c4bda
25 DIST xpaint-3.1.4.tar.bz2 1630009 BLAKE2B 6090156f0c27742487edfd24e803e814d7f2801c3847a5435a896e575ee3bf0b17f498e8ba8f4b7a87536780dd7c15ec7e0c0e0acb28b225d95ed0c835abfa97 SHA512 ea81f0f0eaad2072fe487efba933b6f0a4f2a4d8ae7548169b8e765cf1232c9944149a822173350af91309535d8f3625b8e58814811a5f4491fa3e2fcdf92e1d
26
27 diff --git a/media-gfx/xpaint/xpaint-3.1.3.ebuild b/media-gfx/xpaint/xpaint-3.1.3.ebuild
28 deleted file mode 100644
29 index 1c03f7e9b5fb..000000000000
30 --- a/media-gfx/xpaint/xpaint-3.1.3.ebuild
31 +++ /dev/null
32 @@ -1,104 +0,0 @@
33 -# Copyright 1999-2021 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -inherit autotools desktop toolchain-funcs xdg-utils
39 -
40 -DESCRIPTION="Image editor with tiff, jpeg and png support"
41 -HOMEPAGE="http://sf-xpaint.sourceforge.net/"
42 -SRC_URI="mirror://sourceforge/sf-xpaint/${P}.tar.bz2"
43 -
44 -LICENSE="GPL-3"
45 -SLOT="0"
46 -KEYWORDS="amd64 x86"
47 -IUSE="pgf tiff"
48 -# jpeg2k disabled for blocking media-libs/openjpeg:0 security cleanup, bug 735592
49 -
50 -RDEPEND="
51 - media-libs/fontconfig
52 - media-libs/freetype:2
53 - media-libs/libjpeg-turbo:=
54 - media-libs/libpng:0=
55 - media-libs/netpbm:=
56 - x11-libs/libICE
57 - x11-libs/libX11
58 - >=x11-libs/libXaw3dXft-1.6.2h[unicode]
59 - x11-libs/libXext
60 - x11-libs/libXft
61 - x11-libs/libXmu
62 - x11-libs/libXpm
63 - x11-libs/libXt
64 - sys-libs/zlib
65 - pgf? ( media-libs/libpgf )
66 - tiff? (
67 - media-libs/jbigkit:0=
68 - media-libs/tiff:0
69 - )
70 -"
71 -DEPEND="${RDEPEND}"
72 -BDEPEND="
73 - sys-devel/bison
74 - sys-devel/flex
75 - virtual/pkgconfig
76 -"
77 -
78 -PATCHES=(
79 - "${FILESDIR}"/${P}-libtool-clang.patch
80 - "${FILESDIR}"/${P}-gentoo-qa.patch
81 - "${FILESDIR}"/${P}-gentoo-prefix.patch
82 -)
83 -
84 -src_prepare() {
85 - default
86 - eautoreconf
87 -}
88 -
89 -src_configure() {
90 - econf \
91 - $(use_enable tiff) \
92 - --disable-libdvipgm \
93 - --disable-libopenjpeg
94 -}
95 -
96 -src_compile() {
97 - # clean up
98 - emake clean
99 - emake -C util clean
100 -
101 - # parallel make still fails sometimes
102 - emake substads
103 - emake xpaint.1
104 -
105 - # regenerate resources in app-defaults
106 - rm XPaint.ad || die
107 -
108 - default
109 - emake \
110 - WITH_PGF="$(usex pgf "yes" "no")" \
111 - CC="$(tc-getCC)" \
112 - CXX="$(tc-getCXX)" \
113 - includedir="${EPREFIX}"/usr/include \
114 - -C util
115 -}
116 -
117 -src_install() {
118 - default
119 - emake \
120 - WITH_PGF="$(usex pgf "yes" "no")" \
121 - DESTDIR="${ED}" \
122 - -C util install
123 - doicon icons/xpaint.svg
124 - make_desktop_entry "${PN}"
125 - find "${ED}" \( -name '*.la' -o -name '*.a' \) -type f -delete || die
126 -}
127 -
128 -pkg_postinst() {
129 - xdg_desktop_database_update
130 - xdg_icon_cache_update
131 -}
132 -
133 -pkg_postrm() {
134 - xdg_desktop_database_update
135 - xdg_icon_cache_update
136 -}