mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 00:08:58 -04:00
dev-libs/libdwarf: new version
Signed-off-by: Alessandro Barbieri <lssndrbarbieri@gmail.com>
This commit is contained in:
parent
70fa251b51
commit
1d4aa38d5a
@ -1 +1 @@
|
||||
DIST libdwarf-20210528.tar.gz 2869691 BLAKE2B 43fb0a45c5e3ab96d402a09b129764fc47a2ff0a6ea9ea8930e074cf648beaec8dba72fc6a6be939c80de14190f7fb486b0c617de93713a78296b4e6c854bf2a SHA512 e0f9c88554053ee6c1b1333960891189e7820c4a4ddc302b7e63754a4cdcfc2acb1b4b6083a722d1204a75e994fff3401ecc251b8c3b24090f8cb4046d90f870
|
||||
DIST libdwarf-0.4.0.tar.xz 2380228 BLAKE2B ee9d02284740b3f4961299e2e4530c2934cde4defefebd8a8ca3aab232f0a18fc35d376c2f61ee323f7db7e6460a3f5e662781f8086438c287f716067c2b7594 SHA512 30e5c6c1fc95aa28a014007a45199160e1d9ba870b196d6f98e6dd21a349e9bb31bba1bd6817f8ef9a89303bed0562182a7d46fcbb36aedded76c2f1e0052e1e
|
||||
|
47
dev-libs/libdwarf/libdwarf-0.4.0.ebuild
Normal file
47
dev-libs/libdwarf/libdwarf-0.4.0.ebuild
Normal file
@ -0,0 +1,47 @@
|
||||
# Copyright 1999-2022 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="LGPL-2.1 GPL-2 BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="doc dwarfexample dwarfgen +elf"
|
||||
|
||||
DEPEND="
|
||||
sys-libs/zlib
|
||||
elf? ( virtual/libelf:= )
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND="doc? ( app-doc/doxygen )"
|
||||
|
||||
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 AUTHORS README README.md ChangeLog* NEWS
|
||||
if use doc; then
|
||||
mkdir -p "${ED}/usr/share/doc/${PF}" || die
|
||||
mv "${ED}/usr/share/doc/${PN}/html" "${ED}/usr/share/doc/${PF}/" || die
|
||||
rm -r "${ED}/usr/share/doc/${PN}" || die
|
||||
fi
|
||||
}
|
@ -1,55 +0,0 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DESCRIPTION="The DWARF Debugging Information Format"
|
||||
HOMEPAGE="
|
||||
https://www.prevanders.net/dwarf.html
|
||||
http://www.dwarfstd.org
|
||||
"
|
||||
SRC_URI="https://www.prevanders.net/${P}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-2.1 GPL-2 BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="dwarfexample dwarfgen +elf global-alloc-sums namestable nonstandardprintf oldframecol sanitize"
|
||||
|
||||
DEPEND="
|
||||
sys-libs/zlib
|
||||
elf? ( virtual/libelf:= )
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
DOCS=( AUTHORS README README.md ChangeLog ChangeLog2018 NEWS )
|
||||
|
||||
src_configure() {
|
||||
|
||||
local myconf=(
|
||||
--disable-static
|
||||
--disable-windowspath
|
||||
--enable-shared
|
||||
--includedir="${EPREFIX}/usr/include/${PN}"
|
||||
)
|
||||
|
||||
#this configure is so bad it enables when passing --disable
|
||||
use dwarfexample && myconf+=(--enable-dwarfexample)
|
||||
use dwarfgen && myconf+=(--enable-dwarfgen)
|
||||
use elf && myconf+=(--enable-libelf)
|
||||
use global-alloc-sums && myconf+=(--enable-global-alloc-csums)
|
||||
use namestable && myconf+=(--enable-namestable)
|
||||
use nonstandardprintf && myconf+=(--enable-nonstandardprintf)
|
||||
use oldframecol && myconf+=(--enable-oldframecol)
|
||||
use sanitize && myconf+=(--enable-sanitize)
|
||||
|
||||
econf "${myconf[@]}"
|
||||
}
|
||||
|
||||
src_install(){
|
||||
emake DESTDIR="${D}" install
|
||||
einstalldocs
|
||||
|
||||
#--disable-static get ignored ...
|
||||
find "${ED}" -name '*.a' -delete || die
|
||||
find "${ED}" -name '*.la' -delete || die
|
||||
}
|
@ -6,14 +6,12 @@
|
||||
<email>lssndrbarbieri@gmail.com</email>
|
||||
<name>Alessandro Barbieri</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="github">davea42/libdwarf-code</remote-id>
|
||||
</upstream>
|
||||
<use>
|
||||
<flag name="dwarfexample">enable dwarfexample compilation</flag>
|
||||
<flag name="dwarfgen">enable dwarfgen compilation</flag>
|
||||
<flag name="global-alloc-sums">Enables some allocation counting in dwarf_alloc.c</flag>
|
||||
<flag name="elf">enable use of <pkg>virtual/libelf</pkg></flag>
|
||||
<flag name="namestable">enable name string functions implemented as binary search">default is with C switch)</flag>
|
||||
<flag name="nonstandardprintf">Use a special printf format for 64bit</flag>
|
||||
<flag name="oldframecol">enable old frame columns</flag>
|
||||
<flag name="sanitize">build with sanitizers</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
|
Loading…
x
Reference in New Issue
Block a user