Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/qiv/
Date: Tue, 29 Sep 2020 06:37:55
Message-Id: 1601358936.60fb093849b800c6999f9036524f0b8cbd528501.juippis@gentoo
1 commit: 60fb093849b800c6999f9036524f0b8cbd528501
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 29 05:55:36 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 29 05:55:36 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60fb0938
7
8 media-gfx/qiv: remove old 2.3.2-r0
9
10 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
11
12 media-gfx/qiv/Manifest | 1 -
13 media-gfx/qiv/qiv-2.3.2.ebuild | 63 ------------------------------------------
14 2 files changed, 64 deletions(-)
15
16 diff --git a/media-gfx/qiv/Manifest b/media-gfx/qiv/Manifest
17 index 4d5c17faf5f..fb4484480fa 100644
18 --- a/media-gfx/qiv/Manifest
19 +++ b/media-gfx/qiv/Manifest
20 @@ -1,2 +1 @@
21 -DIST qiv-2.3.2.tar.gz 135164 BLAKE2B b6b82c3007cd3214bb0b812026d22ab0a3c7fce87e51c1f2e19634fe131656f7adc1e92d2e1fcdcc563f1fd8b7c298307e48823bb26e077b336a6983f31894ac SHA512 a6750ecf26bc5b78fbebfdfcfd7a8ab0a5d3ba4e4b19c4a5563e1631dfaf8cc98f7a0bc9449956bc06f8b98cb307b31f78178676ddc9df4fa03429fa31c174e8
22 DIST qiv-2.3.2.tgz 133614 BLAKE2B f06f36524db8cdde1baf3e118e8ceeeb654dd49a674b55d661255734c0bedaa765fcf8bb77b03d3c2bac8d75a9088b3290f1d802d670393b6795fee85dd4f778 SHA512 c4636591f79e8e4c13807433a4101a461e614439e497a5637b958bd9d0937b04515854483d4060d9b1004d6c6060b437d634fdbe491eb0747a660ba65240472d
23
24 diff --git a/media-gfx/qiv/qiv-2.3.2.ebuild b/media-gfx/qiv/qiv-2.3.2.ebuild
25 deleted file mode 100644
26 index cd62b56094c..00000000000
27 --- a/media-gfx/qiv/qiv-2.3.2.ebuild
28 +++ /dev/null
29 @@ -1,63 +0,0 @@
30 -# Copyright 1999-2019 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit desktop toolchain-funcs vcs-snapshot xdg
36 -
37 -DESCRIPTION="Quick Image Viewer"
38 -HOMEPAGE="http://spiegl.de/qiv/ https://bitbucket.org/ciberandy/qiv"
39 -SRC_URI="https://bitbucket.org/ciberandy/qiv/get/v${PV}.tar.gz -> ${P}.tar.gz"
40 -
41 -LICENSE="GPL-2"
42 -SLOT="0"
43 -KEYWORDS="~amd64 ~mips ~x86"
44 -IUSE="exif lcms magic"
45 -
46 -RDEPEND="
47 - media-libs/imlib2[X]
48 - >=x11-libs/gtk+-2.12:2
49 - exif? ( media-libs/libexif )
50 - lcms? (
51 - media-libs/lcms:2
52 - media-libs/tiff:0
53 - virtual/jpeg:0
54 - )
55 - magic? ( sys-apps/file )"
56 -DEPEND="${RDEPEND}
57 - virtual/pkgconfig"
58 -
59 -PATCHES=( "${FILESDIR}"/${P}-optional-tiff.patch )
60 -
61 -src_prepare() {
62 - default
63 -
64 - sed -i \
65 - -e 's:$(CC) $(CFLAGS):$(CC) $(LDFLAGS) $(CFLAGS):' \
66 - Makefile || die
67 -
68 - if ! use exif ; then
69 - sed -i 's/^EXIF =/#\0/' Makefile || die
70 - fi
71 -
72 - if ! use lcms ; then
73 - sed -i 's/^LCMS =/#\0/' Makefile || die
74 - fi
75 -
76 - if ! use magic ; then
77 - sed -i 's/^MAGIC =/#\0/' Makefile || die
78 - fi
79 -}
80 -
81 -src_compile() {
82 - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
83 -}
84 -
85 -src_install() {
86 - dobin qiv
87 - doman qiv.1
88 - dodoc Changelog contrib/qiv-command.example README README.TODO
89 -
90 - domenu qiv.desktop
91 - doicon qiv.png
92 -}