summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetr Vaněk <arkamar@gentoo.org>2024-09-13 16:53:59 +0200
committerPetr Vaněk <arkamar@gentoo.org>2024-09-13 17:19:47 +0200
commit486be0f000774bd54af406a88c0a531e3b841f88 (patch)
treee13a0c35be1952c7b82547c1dce32e4aa73b4c3e /media-libs
parentmedia-libs/giblib: drop 1.2.4-r1 (diff)
downloadgentoo-486be0f000774bd54af406a88c0a531e3b841f88.tar.gz
gentoo-486be0f000774bd54af406a88c0a531e3b841f88.tar.bz2
gentoo-486be0f000774bd54af406a88c0a531e3b841f88.zip
media-libs/libiptcdata: drop 1.0.5
Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
Diffstat (limited to 'media-libs')
-rw-r--r--media-libs/libiptcdata/libiptcdata-1.0.5.ebuild52
1 files changed, 0 insertions, 52 deletions
diff --git a/media-libs/libiptcdata/libiptcdata-1.0.5.ebuild b/media-libs/libiptcdata/libiptcdata-1.0.5.ebuild
deleted file mode 100644
index 32b30bcceb03..000000000000
--- a/media-libs/libiptcdata/libiptcdata-1.0.5.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit python-single-r1
-
-DESCRIPTION="Library for International Press Telecommunications Council (IPTC) metadata"
-HOMEPAGE="https://github.com/ianw/libiptcdata http://libiptcdata.sourceforge.net"
-SRC_URI="https://github.com/ianw/${PN}/releases/download/release_1_0_5/${P}.tar.gz"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~loong ppc ppc64 ~riscv sparc x86"
-IUSE="doc examples nls python"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="
- nls? ( virtual/libintl )
- python? ( ${PYTHON_DEPS} )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- doc? ( >=dev-util/gtk-doc-1 )
- nls? ( >=sys-devel/gettext-0.13.1 )
-"
-
-pkg_setup() {
- use python && python-single-r1_pkg_setup
-}
-
-src_configure () {
- local myeconfargs=(
- $(use_enable nls)
- $(use_enable python)
- $(use_enable doc gtk-doc)
- )
- econf "${myeconfargs[@]}"
-}
-
-src_install () {
- default
-
- if use examples; then
- dodoc python/README
- dodoc -r python/examples
- fi
-
- find "${D}" -name '*.la' -delete || die "failed to remove *.la files"
-}