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, 25 Dec 2020 09:38:37
Message-Id: 1608889110.d9fb066c026acd199939600b4f6f089e01095e32.fordfrog@gentoo
1 commit: d9fb066c026acd199939600b4f6f089e01095e32
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 25 09:38:08 2020 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 25 09:38:30 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9fb066c
7
8 media-libs/simage: fixed linking against libsndfile
9
10 1) changed to updated upstream tarball - based on findings
11 by Bernd Waibel <waebbl <AT> gmail.com> described at
12 https://github.com/waebbl/waebbl-gentoo/issues/274#issuecomment-748602840
13 2) fixed discrepancy in config variable name
14
15 Package-Manager: Portage-3.0.12, Repoman-3.0.2
16 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
17
18 media-libs/simage/Manifest | 2 +-
19 media-libs/simage/{simage-1.8.0.ebuild => simage-1.8.0-r1.ebuild} | 6 +++---
20 2 files changed, 4 insertions(+), 4 deletions(-)
21
22 diff --git a/media-libs/simage/Manifest b/media-libs/simage/Manifest
23 index 19eabf5208f..9b5912ad3db 100644
24 --- a/media-libs/simage/Manifest
25 +++ b/media-libs/simage/Manifest
26 @@ -1 +1 @@
27 -DIST simage-1.8.0.tar.gz 791151 BLAKE2B 0a5720c06501c8212b5a148ad790ff60d6d9fc507868a66d40dbe3b6b089e47dca21828fee96ef708a03651d02843c9e6b6db7856088ddf7e487b4b5eeafbccd SHA512 7070c845fc72094a97b1253d23a5f60f90e71dc6ed968c9c7da67e05660b05245a807fbdf0f592a1d459c7c3b725783c55f59f867182b11cb9ec40741d7ad58c
28 +DIST simage-1.8.0-src.tar.gz 797069 BLAKE2B 6f9e3512c9815974b1b2799306c6567f6b5aec6771fe31e0a5fa47a827819df02e80e976063ddbae3e3aa3a4d33da68a23c9067e7b91f82c28592f83d0e782cc SHA512 fb4943c38f418461b087d5d013c2054f25d553a872fc80f9445a5e907901eb40265d838c5cc1031032dd84885f066f1c640a1949bc450591fb0ea88c05d1e38f
29
30 diff --git a/media-libs/simage/simage-1.8.0.ebuild b/media-libs/simage/simage-1.8.0-r1.ebuild
31 similarity index 93%
32 rename from media-libs/simage/simage-1.8.0.ebuild
33 rename to media-libs/simage/simage-1.8.0-r1.ebuild
34 index 53eb51da047..1b1b448073e 100644
35 --- a/media-libs/simage/simage-1.8.0.ebuild
36 +++ b/media-libs/simage/simage-1.8.0-r1.ebuild
37 @@ -7,7 +7,7 @@ inherit cmake flag-o-matic
38
39 DESCRIPTION="Image and video texturing library"
40 HOMEPAGE="https://github.com/coin3d/simage/"
41 -SRC_URI="https://github.com/coin3d/simage/archive/${P}.tar.gz"
42 +SRC_URI="https://github.com/coin3d/simage/releases/download/${P}/${P}-src.tar.gz"
43
44 LICENSE="BSD-1"
45 KEYWORDS="amd64 ~arm ~hppa ~ia64 ppc ppc64 ~sparc x86"
46 @@ -36,7 +36,7 @@ DEPEND="
47 test? ( media-libs/libsndfile )
48 "
49
50 -S="${WORKDIR}/${PN}-${P}"
51 +S="${WORKDIR}/${PN}"
52
53 PATCHES=(
54 "${FILESDIR}/${PN}-1.7.1-cmake-automagic-deps.patch"
55 @@ -63,13 +63,13 @@ src_configure() {
56 -DSIMAGE_GIF_SUPPORT=$(usex gif)
57 -DSIMAGE_JASPER_SUPPORT=OFF
58 -DSIMAGE_JPEG_SUPPORT=$(usex jpeg)
59 - -DSIMAGE_LIBSNDFILE_SUPPORT=$(usex sndfile)
60 -DSIMAGE_MPEG2ENC_SUPPORT=ON
61 -DSIMAGE_OGGVORBIS_SUPPORT=$(usex vorbis)
62 -DSIMAGE_PIC_SUPPORT=ON
63 -DSIMAGE_PNG_SUPPORT=$(usex png)
64 -DSIMAGE_QIMAGE_SUPPORT=$(usex qt5)
65 -DSIMAGE_QUICKTIME_SUPPORT=OFF # OS X only
66 + -DSIMAGE_SNDFILE_SUPPORT=$(usex sndfile)
67 -DSIMAGE_TIFF_SUPPORT=$(usex tiff)
68 -DSIMAGE_USE_QT5=ON
69 -DSIMAGE_RGB_SUPPORT=ON