Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/simage/
Date: Fri, 31 Jan 2020 00:39:20
Message-Id: 1580431149.ba7aef47a070873ae75c04b038040f27bd6320d1.fordfrog@gentoo
1 commit: ba7aef47a070873ae75c04b038040f27bd6320d1
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 31 00:38:42 2020 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 31 00:39:09 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba7aef47
7
8 media-libs/simage: removed old 1.7.0-r1
9
10 Package-Manager: Portage-2.3.86, Repoman-2.3.20
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 media-libs/simage/Manifest | 1 -
14 media-libs/simage/simage-1.7.0-r1.ebuild | 75 --------------------------------
15 2 files changed, 76 deletions(-)
16
17 diff --git a/media-libs/simage/Manifest b/media-libs/simage/Manifest
18 index 58cf77d47d7..dff8036465f 100644
19 --- a/media-libs/simage/Manifest
20 +++ b/media-libs/simage/Manifest
21 @@ -1,2 +1 @@
22 -DIST simage-1.7.0.tar.gz 752602 BLAKE2B feca31f8d41ae67271e43c9c664243d872985068ffc8496d43c9b59a47ae5c3067956acced3ff9abbdc5a360aec662e3972a93d8523a704a72ac9d12dd4cfaa0 SHA512 944ec009dd7041692073ddd9795fdd633fe3bc9101f1c1234e8be3746487a9431aecf52abde01563e719153fbe1ca7d29f9b64042e4a64ea08d6cb14666dd89f
23 DIST simage-1.7.1-src.zip 4145907 BLAKE2B 99f5f5f46530c2600d47ab0bb080d69281447ee96a2bb9b63ebe5a5c56e235f34ca8bd97b0d6adedf061fe221a61d144d4ccce00123941a9c74d72b1f190030d SHA512 b3c81fa363cd570b3512cd2984f154b83876353ec389dc35afcac4e4ddf8d301eef5b0f8df93c38b9caa6afd81fbe53d3943ad05e041b77734f03c26d2e12867
24
25 diff --git a/media-libs/simage/simage-1.7.0-r1.ebuild b/media-libs/simage/simage-1.7.0-r1.ebuild
26 deleted file mode 100644
27 index f491e59cb38..00000000000
28 --- a/media-libs/simage/simage-1.7.0-r1.ebuild
29 +++ /dev/null
30 @@ -1,75 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -DESCRIPTION="Image and video texturing library"
37 -HOMEPAGE="https://bitbucket.org/Coin3D/simage"
38 -SRC_URI="https://bitbucket.org/Coin3D/coin/downloads/${P}.tar.gz"
39 -
40 -LICENSE="public-domain mpeg2enc"
41 -KEYWORDS="amd64 ~arm ~hppa ~ia64 ppc ppc64 ~sparc x86"
42 -SLOT="0"
43 -IUSE="debug gif jpeg png sndfile static-libs tiff vorbis zlib"
44 -RESTRICT="mirror bindist" #465086
45 -
46 -RDEPEND="
47 - gif? ( media-libs/giflib )
48 - jpeg? ( virtual/jpeg:0= )
49 - png? ( media-libs/libpng:0= )
50 - sndfile? ( media-libs/libsndfile )
51 - tiff? ( media-libs/tiff:0= )
52 - vorbis? (
53 - media-libs/libogg
54 - media-libs/libvorbis
55 - )
56 - zlib? ( sys-libs/zlib )
57 -"
58 -DEPEND="${RDEPEND}
59 - virtual/pkgconfig
60 -"
61 -
62 -DOCS=(AUTHORS ChangeLog NEWS README)
63 -
64 -PATCHES=(
65 - "${FILESDIR}"/${PN}-1.7.0-pkgconfig-partial.patch
66 - "${FILESDIR}"/${PN}-1.7.0-libpng15.patch
67 -)
68 -
69 -# --with-pic, two defined (PIC and one for image format, sillyt), no not pass
70 -# --enable-qimage, broken Qt checks, unable to locate FHS-compliant Qt install
71 -# --with-x, not used anywhere
72 -src_configure() {
73 - econf \
74 - --disable-qimage \
75 - --disable-quicktime \
76 - --with-eps \
77 - --with-mpeg2enc \
78 - --with-rgb \
79 - --with-targa \
80 - --with-xwd \
81 - --without-x \
82 - $(use_with gif) \
83 - $(use_enable debug) \
84 - $(use_enable debug symbols) \
85 - $(use_with jpeg) \
86 - --without-jasper \
87 - $(use_with png) \
88 - $(use_with sndfile libsndfile) \
89 - $(use_enable static-libs static) \
90 - $(use_with tiff) \
91 - $(use_with vorbis oggvorbis) \
92 - $(use_with zlib)
93 -}
94 -
95 -src_install() {
96 - # Remove simage from Libs.private
97 - sed -e '/Libs.private/s/ -lsimage//' -i simage.pc || die
98 -
99 - default
100 -
101 - # Remove libtool files when not needed.
102 - if use static-libs; then
103 - rm -f "${ED}"/usr/lib*/*.la || die
104 - fi
105 -}