Gentoo Archives: gentoo-commits

From: Gilles Dartiguelongue <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/exempi/
Date: Sun, 25 Mar 2018 21:33:19
Message-Id: 1522013578.b566633d73ffee4a83dd4ed6cf2c411a297b3763.eva@gentoo
1 commit: b566633d73ffee4a83dd4ed6cf2c411a297b3763
2 Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 25 21:21:23 2018 +0000
4 Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 25 21:32:58 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b566633d
7
8 media-libs/exempi: version bump to 2.4.5 fixing multiple security issues
9
10 Bug: https://bugs.gentoo.org/649950
11 Bug: https://bugs.gentoo.org/650714
12 Package-Manager: Portage-2.3.24, Repoman-2.3.6
13
14 media-libs/exempi/Manifest | 1 +
15 media-libs/exempi/exempi-2.4.5.ebuild | 52 +++++++++++++++++++++++++++++++++++
16 2 files changed, 53 insertions(+)
17
18 diff --git a/media-libs/exempi/Manifest b/media-libs/exempi/Manifest
19 index 0908e98beee..af5d370f21f 100644
20 --- a/media-libs/exempi/Manifest
21 +++ b/media-libs/exempi/Manifest
22 @@ -1,2 +1,3 @@
23 DIST exempi-2.2.1.tar.gz 3566843 BLAKE2B f174bdf7fe88491694adef8dfa7f25184882deae967bb955972bcef71cff1cc42b0ddee38a356833bd35579f2b9f3e3310dbdcc8312fd4c60737323de5611a3e SHA512 f4b97ec7af89924755a0695464bad5081de6a5d6a6f28c06984c051d677f8771c39df12951761ecd28d6ff520ddec4e21179dcba8b58f0ef649bbdad1a53aa9c
24 DIST exempi-2.4.2.tar.gz 3911796 BLAKE2B 73fc84dfff84b608e1408678af06b017617c3be62d0b3ae1606676b5c47d68683f3f94cb9b9a4afcfa76beabbac01997eb421491b51a8cc44912990af4ad0dc5 SHA512 47d0737a95dbd31c3c39ef9a9a8c00e87135c2eb909bea1d89fa8df31c0e73dadd7e9f9f0e6445d3b17457396e0c1381b93f5751494e1061822df47f7099b568
25 +DIST exempi-2.4.5.tar.gz 3901474 BLAKE2B 7db80266847a18464ee5d75e2ffa38a05b2b23a30fb02a16c0a4a512f853a625f00db3ee0de3f177af584e12d65c8ecd2acc96cae96ef02d7b39129ab4b5274a SHA512 2b3dd8b2d1763fbbfed1995635f625a8e909a4c3119147385737f349002b2fa038cfaca72b2b877db8f28b9022230e49264b58766a68060b0b7c322cad99b22c
26
27 diff --git a/media-libs/exempi/exempi-2.4.5.ebuild b/media-libs/exempi/exempi-2.4.5.ebuild
28 new file mode 100644
29 index 00000000000..2782b8b68f3
30 --- /dev/null
31 +++ b/media-libs/exempi/exempi-2.4.5.ebuild
32 @@ -0,0 +1,52 @@
33 +# Copyright 1999-2018 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +inherit autotools ltprune
38 +
39 +DESCRIPTION="Exempi is a port of the Adobe XMP SDK to work on UNIX"
40 +HOMEPAGE="https://libopenraw.freedesktop.org/wiki/Exempi"
41 +SRC_URI="https://libopenraw.freedesktop.org/download/${P}.tar.gz"
42 +
43 +LICENSE="BSD"
44 +SLOT="2/3"
45 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
46 +IUSE="examples static-libs test"
47 +
48 +RDEPEND="
49 + >=dev-libs/expat-2:=
50 + virtual/libiconv
51 + sys-libs/zlib:=
52 +"
53 +DEPEND="${RDEPEND}
54 + sys-devel/autoconf-archive
55 + sys-devel/gettext
56 + test? ( >=dev-libs/boost-1.48 )
57 +"
58 +
59 +src_prepare() {
60 + default
61 + eapply "${FILESDIR}"/${PN}-2.4.2-iconv.patch
62 + cp /usr/share/gettext/config.rpath . || die
63 + eautoreconf
64 +}
65 +
66 +src_configure() {
67 + # Valgrind detection is "disabled" due to bug #295875
68 + econf \
69 + $(use_enable static-libs static) \
70 + $(use_enable test unittest) \
71 + VALGRIND=""
72 +}
73 +
74 +src_install() {
75 + default
76 + prune_libtool_files --all
77 +
78 + if use examples; then
79 + emake -C samples/source distclean
80 + rm samples/{,source,testfiles}/Makefile* || die
81 + insinto /usr/share/doc/${PF}/examples
82 + doins -r samples/*
83 + fi
84 +}