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: Wed, 04 Mar 2020 16:34:53
Message-Id: 1583339662.4e4192476d5d683e89e02aadec492089b7685947.fordfrog@gentoo
1 commit: 4e4192476d5d683e89e02aadec492089b7685947
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 4 16:34:22 2020 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 4 16:34:22 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e419247
7
8 media-libs/simage: removed old 1.7.1-r1
9
10 Package-Manager: Portage-2.3.89, 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.1-r1.ebuild | 83 --------------------------------
15 2 files changed, 84 deletions(-)
16
17 diff --git a/media-libs/simage/Manifest b/media-libs/simage/Manifest
18 index ffa68c89f9b..19eabf5208f 100644
19 --- a/media-libs/simage/Manifest
20 +++ b/media-libs/simage/Manifest
21 @@ -1,2 +1 @@
22 -DIST simage-1.7.1-src.zip 4145907 BLAKE2B 99f5f5f46530c2600d47ab0bb080d69281447ee96a2bb9b63ebe5a5c56e235f34ca8bd97b0d6adedf061fe221a61d144d4ccce00123941a9c74d72b1f190030d SHA512 b3c81fa363cd570b3512cd2984f154b83876353ec389dc35afcac4e4ddf8d301eef5b0f8df93c38b9caa6afd81fbe53d3943ad05e041b77734f03c26d2e12867
23 DIST simage-1.8.0.tar.gz 791151 BLAKE2B 0a5720c06501c8212b5a148ad790ff60d6d9fc507868a66d40dbe3b6b089e47dca21828fee96ef708a03651d02843c9e6b6db7856088ddf7e487b4b5eeafbccd SHA512 7070c845fc72094a97b1253d23a5f60f90e71dc6ed968c9c7da67e05660b05245a807fbdf0f592a1d459c7c3b725783c55f59f867182b11cb9ec40741d7ad58c
24
25 diff --git a/media-libs/simage/simage-1.7.1-r1.ebuild b/media-libs/simage/simage-1.7.1-r1.ebuild
26 deleted file mode 100644
27 index d71968b640f..00000000000
28 --- a/media-libs/simage/simage-1.7.1-r1.ebuild
29 +++ /dev/null
30 @@ -1,83 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit cmake-utils flag-o-matic
37 -
38 -DESCRIPTION="Image and video texturing library"
39 -HOMEPAGE="https://bitbucket.org/Coin3D/simage"
40 -SRC_URI="https://bitbucket.org/Coin3D/simage/downloads/${P}-src.zip"
41 -
42 -LICENSE="public-domain mpeg2enc"
43 -KEYWORDS="amd64 ~arm ~hppa ~ia64 ppc ppc64 ~sparc x86"
44 -SLOT="0"
45 -IUSE="debug gif jpeg png qt5 sndfile test tiff vorbis"
46 -RESTRICT="!test? ( test )"
47 -
48 -BDEPEND="
49 - app-arch/unzip
50 -"
51 -RDEPEND="
52 - gif? ( media-libs/giflib )
53 - jpeg? ( virtual/jpeg:0= )
54 - png? ( media-libs/libpng:0= )
55 - qt5? (
56 - dev-qt/qtcore:5
57 - dev-qt/qtgui:5
58 - )
59 - sndfile? ( media-libs/libsndfile )
60 - tiff? ( media-libs/tiff:0= )
61 - vorbis? (
62 - media-libs/libogg
63 - media-libs/libvorbis
64 - )
65 -"
66 -DEPEND="
67 - ${RDEPEND}
68 - test? ( media-libs/libsndfile )
69 -"
70 -
71 -S="${WORKDIR}/${PN}"
72 -
73 -PATCHES=(
74 - "${FILESDIR}/${P}-cmake-automagic-deps.patch"
75 - # examples need to link against libsndfile unconditionally so either we could
76 - # make the dep unconditional or not build the examples. i chose the latter way.
77 - # btw, examples are not installed anyway, they are just compiled.
78 - "${FILESDIR}/${P}-disable-examples.patch"
79 - "${FILESDIR}/${P}-tests-conditional.patch"
80 - "${FILESDIR}/${P}-disable-gif-quantize-buffer.patch"
81 -)
82 -
83 -DOCS=(AUTHORS ChangeLog NEWS README)
84 -
85 -src_configure() {
86 - use debug && append-cppflags -DSIMAGE_DEBUG=1
87 -
88 - local mycmakeargs=(
89 - -DSIMAGE_AVIENC_SUPPORT=OFF # Windows only
90 - -DSIMAGE_BUILD_SHARED_LIBS=ON
91 - -DSIMAGE_CGIMAGE_SUPPORT=OFF # OS X only
92 - -DSIMAGE_EPS_SUPPORT=ON
93 - -DSIMAGE_GDIPLUS_SUPPORT=OFF # Windows only
94 - -DSIMAGE_GIF_SUPPORT=$(usex gif)
95 - -DSIMAGE_JASPER_SUPPORT=OFF
96 - -DSIMAGE_JPEG_SUPPORT=$(usex jpeg)
97 - -DSIMAGE_LIBSNDFILE_SUPPORT=$(usex sndfile)
98 - -DSIMAGE_MPEG2ENC_SUPPORT=ON
99 - -DSIMAGE_OGGVORBIS_SUPPORT=$(usex vorbis)
100 - -DSIMAGE_PIC_SUPPORT=ON
101 - -DSIMAGE_PNG_SUPPORT=$(usex png)
102 - -DSIMAGE_QIMAGE_SUPPORT=$(usex qt5)
103 - -DSIMAGE_QUICKTIME_SUPPORT=OFF # OS X only
104 - -DSIMAGE_TIFF_SUPPORT=$(usex tiff)
105 - -DSIMAGE_USE_QT5=ON
106 - -DSIMAGE_RGB_SUPPORT=ON
107 - -DSIMAGE_TGA_SUPPORT=ON
108 - -DSIMAGE_XWD_SUPPORT=ON
109 - -DTESTS=$(usex test)
110 - )
111 -
112 - cmake-utils_src_configure
113 -}