summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2023-09-09 09:29:47 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2023-09-09 09:32:32 +0200
commit71bc0bcda2366db7287f4c0e556394d7b471f420 (patch)
treedfb991dac51998b33b644351306469ab7b321b76 /media-libs/libopenraw/libopenraw-0.1.3.ebuild
parentnet-misc/smb4k: drop 3.2.1 (diff)
downloadgentoo-71bc0bcda2366db7287f4c0e556394d7b471f420.tar.gz
gentoo-71bc0bcda2366db7287f4c0e556394d7b471f420.tar.bz2
gentoo-71bc0bcda2366db7287f4c0e556394d7b471f420.zip
media-libs/libopenraw: drop 0.1.3, 0.3.5
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-libs/libopenraw/libopenraw-0.1.3.ebuild')
-rw-r--r--media-libs/libopenraw/libopenraw-0.1.3.ebuild56
1 files changed, 0 insertions, 56 deletions
diff --git a/media-libs/libopenraw/libopenraw-0.1.3.ebuild b/media-libs/libopenraw/libopenraw-0.1.3.ebuild
deleted file mode 100644
index a853e4038806..000000000000
--- a/media-libs/libopenraw/libopenraw-0.1.3.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit gnome2-utils
-
-DESCRIPTION="RAW image formats decoding library"
-HOMEPAGE="https://libopenraw.freedesktop.org/"
-SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
-
-LICENSE="GPL-3 LGPL-3"
-SLOT="0/7"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
-IUSE="gtk test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-libs/libxml2
- virtual/jpeg:0
- gtk? (
- dev-libs/glib:2
- >=x11-libs/gdk-pixbuf-2.24.0:2
- )
-"
-DEPEND="${RDEPEND}
- dev-libs/boost
-"
-BDEPEND="
- virtual/pkgconfig
- test? ( net-misc/curl )
-"
-
-src_configure() {
- econf \
- --with-boost="${EPREFIX}"/usr \
- --disable-static \
- $(use_enable gtk gnome)
-}
-
-src_install() {
- default
- find "${D}" -name '*.la' -delete || die
-}
-
-pkg_preinst() {
- use gtk && gnome2_gdk_pixbuf_savelist
-}
-
-pkg_postinst() {
- use gtk && gnome2_gdk_pixbuf_update
-}
-
-pkg_postrm() {
- use gtk && gnome2_gdk_pixbuf_update
-}