summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2020-09-19 12:32:19 +0200
committerMichał Górny <mgorny@gentoo.org>2020-09-19 13:27:57 +0200
commit0d2cf6cf788f3d14f09eec2db9814c7253a6122f (patch)
tree1084367827b837624a18aa6b27673049d67a7892
parentmedia-sound/lash: removed obsolete 0.5.4-r3 (diff)
downloadgentoo-0d2cf6cf788f3d14f09eec2db9814c7253a6122f.tar.gz
gentoo-0d2cf6cf788f3d14f09eec2db9814c7253a6122f.tar.bz2
gentoo-0d2cf6cf788f3d14f09eec2db9814c7253a6122f.zip
media-libs/libiptcdata: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r--media-libs/libiptcdata/Manifest1
-rw-r--r--media-libs/libiptcdata/libiptcdata-1.0.4-r1.ebuild50
2 files changed, 0 insertions, 51 deletions
diff --git a/media-libs/libiptcdata/Manifest b/media-libs/libiptcdata/Manifest
index 82ef7d2f6822..e2b4104b23a2 100644
--- a/media-libs/libiptcdata/Manifest
+++ b/media-libs/libiptcdata/Manifest
@@ -1,2 +1 @@
-DIST libiptcdata-1.0.4.tar.gz 569132 BLAKE2B acfac5b4f5945f38da47a5280b92939089f2efa8e4ceae9ad00d9d21c7f062445f63c74d61493e711102789edb8c98ffe49083635f67e836a87c32e1127371e5 SHA512 8656b2febaec133d1a8783252047672bebd58ae9ceab5477c4acfa35bcc381dfda08b655a957b962878af28c69deff77d920e780c84b4debdff2f980b3de94e8
DIST libiptcdata-1.0.5.tar.gz 593779 BLAKE2B 7e5226a289fed5c2f4b662efaa693a8b38e95ac34bc1365af05d1af649be876d3e5b58fecea4818255879bd7518aa482cb623540601fb3c8065acd428439a29c SHA512 64ef44b1e639890004f31d5d42844ba25ed558f0a118f1dad9bc3f4dcad2457e51b825a13df849659b0e15afc78f528f330b03be94cdf156bd95b62dc419494a
diff --git a/media-libs/libiptcdata/libiptcdata-1.0.4-r1.ebuild b/media-libs/libiptcdata/libiptcdata-1.0.4-r1.ebuild
deleted file mode 100644
index d536baf102db..000000000000
--- a/media-libs/libiptcdata/libiptcdata-1.0.4-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit eutils python-single-r1
-
-DESCRIPTION="library for manipulating the International Press Telecommunications
-Council (IPTC) metadata"
-HOMEPAGE="http://libiptcdata.sourceforge.net"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ppc ppc64 sparc x86"
-IUSE="doc examples nls python"
-
-RDEPEND="python? ( ${PYTHON_DEPS} )
- nls? ( virtual/libintl )"
-DEPEND="${RDEPEND}
- nls? ( >=sys-devel/gettext-0.13.1 )
- doc? ( >=dev-util/gtk-doc-1 )"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-pkg_setup() {
- use python && python-single-r1_pkg_setup
-}
-
-src_configure() {
- econf \
- $(use_enable nls) \
- $(use_enable python) \
- $(use_enable doc gtk-doc)
-}
-
-src_install() {
- emake DESTDIR="${D}" install
- dodoc AUTHORS ChangeLog NEWS README TODO
-
- if use examples; then
- insinto /usr/share/doc/${PF}/python
- doins python/README
- doins -r python/examples
- fi
-
- find "${D}" -name '*.la' -delete || die "failed to remove *.la files"
-}