Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libexif/
Date: Thu, 28 Mar 2019 15:01:24
Message-Id: 1553785267.cfa99b2a6cf01ecc9451f4d05a0716cff66376f0.bman@gentoo
1 commit: cfa99b2a6cf01ecc9451f4d05a0716cff66376f0
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 28 15:01:07 2019 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 28 15:01:07 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfa99b2a
7
8 media-libs/libexif: drop vulnerable wrt bug #679418
9
10 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
11
12 media-libs/libexif/libexif-0.6.21-r2.ebuild | 50 -----------------------------
13 1 file changed, 50 deletions(-)
14
15 diff --git a/media-libs/libexif/libexif-0.6.21-r2.ebuild b/media-libs/libexif/libexif-0.6.21-r2.ebuild
16 deleted file mode 100644
17 index 6295d63c4a0..00000000000
18 --- a/media-libs/libexif/libexif-0.6.21-r2.ebuild
19 +++ /dev/null
20 @@ -1,50 +0,0 @@
21 -# Copyright 1999-2019 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -inherit libtool multilib-minimal
27 -
28 -DESCRIPTION="Library for parsing, editing, and saving EXIF data"
29 -HOMEPAGE="https://libexif.github.io/"
30 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
31 -
32 -LICENSE="LGPL-2.1"
33 -SLOT="0"
34 -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
35 -IUSE="doc nls static-libs"
36 -
37 -RDEPEND="nls? ( virtual/libintl )"
38 -DEPEND="${RDEPEND}"
39 -BDEPEND="
40 - virtual/pkgconfig
41 - doc? ( app-doc/doxygen )
42 - nls? ( sys-devel/gettext )"
43 -
44 -PATCHES=(
45 - "${FILESDIR}"/${PN}-0.6.13-pkgconfig.patch
46 - "${FILESDIR}"/${P}-CVE-2017-7544.patch
47 -)
48 -
49 -src_prepare() {
50 - default
51 - sed -i -e '/FLAGS=/s:-g::' configure || die #390249
52 - elibtoolize # For *-bsd
53 -}
54 -
55 -multilib_src_configure() {
56 - ECONF_SOURCE=${S} econf \
57 - $(use_enable doc docs) \
58 - $(use_enable nls) \
59 - $(use_enable static-libs static) \
60 - --with-doc-dir="${EPREFIX}"/usr/share/doc/${PF}
61 -}
62 -
63 -multilib_src_install() {
64 - emake DESTDIR="${D}" install
65 -}
66 -
67 -multilib_src_install_all() {
68 - find "${D}" -name '*.la' -delete || die
69 - rm -f "${ED}"/usr/share/doc/${PF}/{ABOUT-NLS,COPYING} || die
70 -}