summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Helmert III <jchelmert3@posteo.net>2020-12-27 02:51:06 -0600
committerAndreas Sturmlechner <asturm@gentoo.org>2020-12-27 10:29:03 +0100
commitf4b670bf10be44aa2a4108c8e0bb79662aa2421c (patch)
tree8a761f02de0104b4a844f37338a9c5c63edb1d8d /media-libs/libexif/libexif-0.6.22.ebuild
parentmedia-video/webcamoid: Drop 8.1.0-r1 (diff)
downloadgentoo-f4b670bf10be44aa2a4108c8e0bb79662aa2421c.tar.gz
gentoo-f4b670bf10be44aa2a4108c8e0bb79662aa2421c.tar.bz2
gentoo-f4b670bf10be44aa2a4108c8e0bb79662aa2421c.zip
media-libs/libexif: security cleanup (drop <0.6.22_p20201105)
Bug: https://bugs.gentoo.org/754681 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: John Helmert III <jchelmert3@posteo.net> Closes: https://github.com/gentoo/gentoo/pull/18828 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-libs/libexif/libexif-0.6.22.ebuild')
-rw-r--r--media-libs/libexif/libexif-0.6.22.ebuild49
1 files changed, 0 insertions, 49 deletions
diff --git a/media-libs/libexif/libexif-0.6.22.ebuild b/media-libs/libexif/libexif-0.6.22.ebuild
deleted file mode 100644
index a1b021eb878c..000000000000
--- a/media-libs/libexif/libexif-0.6.22.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit libtool multilib-minimal
-
-DESCRIPTION="Library for parsing, editing, and saving EXIF data"
-HOMEPAGE="https://libexif.github.io/ https://github.com/libexif/libexif"
-SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PN}-${PV//./_}-release/${P}.tar.gz"
-
-LICENSE="LGPL-2+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
-IUSE="doc nls static-libs"
-
-RDEPEND="nls? ( virtual/libintl )"
-DEPEND="${RDEPEND}"
-BDEPEND="
- virtual/pkgconfig
- doc? ( app-doc/doxygen )
- nls? ( sys-devel/gettext )"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-0.6.13-pkgconfig.patch
-)
-
-src_prepare() {
- default
- sed -i -e '/FLAGS=/s:-g::' configure || die #390249
- elibtoolize # For *-bsd
-}
-
-multilib_src_configure() {
- ECONF_SOURCE=${S} econf \
- $(use_enable doc docs) \
- $(use_enable nls) \
- $(use_enable static-libs static) \
- --with-doc-dir="${EPREFIX}"/usr/share/doc/${PF}
-}
-
-multilib_src_install() {
- emake DESTDIR="${D}" install
-}
-
-multilib_src_install_all() {
- find "${D}" -name '*.la' -delete || die
- rm -f "${ED}"/usr/share/doc/${PF}/{ABOUT-NLS,COPYING} || die
-}