Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/exempi/
Date: Sat, 06 Oct 2018 20:45:22
Message-Id: 1538858702.5b7205c0084397703a7865bd397d64243347403b.asturm@gentoo
1 commit: 5b7205c0084397703a7865bd397d64243347403b
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 6 19:47:32 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 6 20:45:02 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b7205c0
7
8 media-libs/exempi: Security cleanup
9
10 Bug: https://bugs.gentoo.org/659038
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12 Package-Manager: Portage-2.3.50, Repoman-2.3.11
13
14 media-libs/exempi/exempi-2.4.5.ebuild | 52 -----------------------------------
15 1 file changed, 52 deletions(-)
16
17 diff --git a/media-libs/exempi/exempi-2.4.5.ebuild b/media-libs/exempi/exempi-2.4.5.ebuild
18 deleted file mode 100644
19 index 4a723cd9626..00000000000
20 --- a/media-libs/exempi/exempi-2.4.5.ebuild
21 +++ /dev/null
22 @@ -1,52 +0,0 @@
23 -# Copyright 1999-2018 Gentoo Foundation
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=6
27 -inherit autotools ltprune
28 -
29 -DESCRIPTION="Exempi is a port of the Adobe XMP SDK to work on UNIX"
30 -HOMEPAGE="https://libopenraw.freedesktop.org/wiki/Exempi"
31 -SRC_URI="https://libopenraw.freedesktop.org/download/${P}.tar.gz"
32 -
33 -LICENSE="BSD"
34 -SLOT="2/3"
35 -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd"
36 -IUSE="examples static-libs test"
37 -
38 -RDEPEND="
39 - >=dev-libs/expat-2:=
40 - virtual/libiconv
41 - sys-libs/zlib:=
42 -"
43 -DEPEND="${RDEPEND}
44 - sys-devel/autoconf-archive
45 - sys-devel/gettext
46 - test? ( >=dev-libs/boost-1.48 )
47 -"
48 -
49 -src_prepare() {
50 - default
51 - eapply "${FILESDIR}"/${PN}-2.4.2-iconv.patch
52 - cp /usr/share/gettext/config.rpath . || die
53 - eautoreconf
54 -}
55 -
56 -src_configure() {
57 - # Valgrind detection is "disabled" due to bug #295875
58 - econf \
59 - $(use_enable static-libs static) \
60 - $(use_enable test unittest) \
61 - VALGRIND=""
62 -}
63 -
64 -src_install() {
65 - default
66 - prune_libtool_files --all
67 -
68 - if use examples; then
69 - emake -C samples/source distclean
70 - rm samples/{,source,testfiles}/Makefile* || die
71 - insinto /usr/share/doc/${PF}/examples
72 - doins -r samples/*
73 - fi
74 -}