aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Roman <davidroman96@gmail.com>2024-02-22 14:57:20 +0100
committerDavid Roman <davidroman96@gmail.com>2024-02-22 14:57:20 +0100
commitbe9e05a1e09959e50fe0de69a5adde0ff690e89d (patch)
tree665be1d55b588c52cd606c14ac6dca3d87f967ff /dev-libs/libdwarf/libdwarf-0.6.0.ebuild
parentdev-libs/libdwarf: add 0.9.1 (diff)
downloadguru-be9e05a1e09959e50fe0de69a5adde0ff690e89d.tar.gz
guru-be9e05a1e09959e50fe0de69a5adde0ff690e89d.tar.bz2
guru-be9e05a1e09959e50fe0de69a5adde0ff690e89d.zip
dev-libs/libdwarf: drop 0.4.0, 0.4.1, 0.5.0, 0.6.0
Signed-off-by: David Roman <davidroman96@gmail.com>
Diffstat (limited to 'dev-libs/libdwarf/libdwarf-0.6.0.ebuild')
-rw-r--r--dev-libs/libdwarf/libdwarf-0.6.0.ebuild49
1 files changed, 0 insertions, 49 deletions
diff --git a/dev-libs/libdwarf/libdwarf-0.6.0.ebuild b/dev-libs/libdwarf/libdwarf-0.6.0.ebuild
deleted file mode 100644
index d89ccb2af9..0000000000
--- a/dev-libs/libdwarf/libdwarf-0.6.0.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson
-
-DESCRIPTION="The DWARF Debugging Information Format"
-HOMEPAGE="
- https://www.prevanders.net/dwarf.html
- https://www.dwarfstd.org
- https://github.com/davea42/libdwarf-code
-"
-SRC_URI="https://www.prevanders.net/${P}.tar.xz"
-
-LICENSE="BSD GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc dwarfexample dwarfgen +elf"
-
-DEPEND="
- app-arch/zstd:=
- sys-libs/zlib:=
- elf? ( virtual/libelf:= )
-"
-RDEPEND="${DEPEND}"
-BDEPEND="doc? ( app-text/doxygen )"
-
-DOCS=( AUTHORS NEWS README.md )
-
-src_configure() {
- local emesonargs=(
- $(meson_use dwarfgen)
- $(meson_use dwarfexample)
- $(meson_use doc)
- $(meson_use elf libelf)
- )
- meson_src_configure
-}
-
-src_install(){
- meson_src_install
-
- dodoc ChangeLog* doc/*.pdf
- if use doc; then
- mv "${ED}"/usr/share/doc/${PN}/* "${ED}"/usr/share/doc/${PF}/ || die
- rmdir "${ED}"/usr/share/doc/${PN} || die
- fi
-}