mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-19 14:52:27 +01:00
97 lines
3.0 KiB
Plaintext
97 lines
3.0 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=elfutils
|
|
pkgver=0.186
|
|
pkgrel=0
|
|
pkgdesc="Utilities and DSOs to handle ELF files and DWARF data"
|
|
url="http://elfutils.org/"
|
|
arch="all"
|
|
license="GPL-3.0-or-later AND (GPL-2.0-or-later OR LGPL-3.0-or-later)"
|
|
makedepends="bison flex-dev zlib-dev bzip2-dev xz-dev argp-standalone
|
|
bsd-compat-headers libtool fts-dev musl-obstack-dev linux-headers"
|
|
subpackages="libelf libelf-static $pkgname-dev $pkgname-doc"
|
|
source="https://sourceware.org/elfutils/ftp/$pkgver/elfutils-$pkgver.tar.bz2
|
|
error.h
|
|
fix-aarch64_fregs.patch
|
|
fix-uninitialized.patch
|
|
musl-macros.patch
|
|
musl-strndupa.patch
|
|
musl-asm-ptrace-h.patch
|
|
"
|
|
|
|
# secfixes:
|
|
# 0.176-r0:
|
|
# - CVE-2019-7146
|
|
# - CVE-2019-7148
|
|
# - CVE-2019-7149
|
|
# - CVE-2019-7150
|
|
# - CVE-2019-7664
|
|
# - CVE-2019-7665
|
|
# 0.175-r0:
|
|
# - CVE-2019-18310
|
|
# - CVE-2019-18520
|
|
# - CVE-2019-18521
|
|
# 0.174-r0:
|
|
# - CVE-2019-16062
|
|
# - CVE-2019-16402
|
|
# - CVE-2019-16403
|
|
# 0.168-r1:
|
|
# - CVE-2017-7607
|
|
# - CVE-2017-7608
|
|
|
|
prepare() {
|
|
default_prepare
|
|
|
|
cp "$srcdir"/error.h "$builddir"/lib
|
|
cp "$srcdir"/error.h "$builddir"/src
|
|
|
|
cat > lib/libintl.h <<-EOF
|
|
#ifndef LIBINTL_H
|
|
#define LIBINTL_H
|
|
#define _(x) (x)
|
|
#endif
|
|
EOF
|
|
}
|
|
|
|
build() {
|
|
CFLAGS="$CFLAGS -Wno-error -Wno-null-dereference" \
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var \
|
|
--disable-werror \
|
|
--program-prefix=eu- \
|
|
--enable-deterministic-archives \
|
|
--disable-nls \
|
|
--disable-libdebuginfod \
|
|
--disable-debuginfod
|
|
# for now we only build libelf
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
libelf() {
|
|
replaces="$pkgname-libelf"
|
|
provides="$pkgname-libelf=$pkgver-r$pkgrel"
|
|
|
|
pkgdesc="$pkgdesc - runtime libraries"
|
|
mkdir -p "$subpkgdir"/usr/lib
|
|
mv "$pkgdir"/usr/lib/*.so.* "$subpkgdir"/usr/lib/
|
|
mv "$pkgdir"/usr/lib/*-*.so "$subpkgdir"/usr/lib/
|
|
}
|
|
|
|
sha512sums="
|
|
c9180b27ec62935f18b9431268d176f6023d1bb938731d2af6e7626ae460af6608a70ba68483aa1ec7e6cb0fa0528b661ca8b68bc4f58ea8e18af527c5950c78 elfutils-0.186.tar.bz2
|
|
8b650bc78cea66f30f0ff66357005890ac8a1b04a8dcc50209cb10a4b4c5ede849505cb68463beca8316ace0fbd53bbc484cfb597805b55616f3b3fc2b864e9a error.h
|
|
c3676b0b8b40d6e437f5d88c0d658dc0829ec97d1955e4bbf96f4cff9ee9001b8f2f06174450ae7aa5858b91c7905bdbd49073b561c346416132338a9c94731b fix-aarch64_fregs.patch
|
|
b9ba55e1b56a8abf694b6d02f022d9a3a0ae6ab53a8c4a71e49552e32411ef410d3a7512fbd1a729696bc2046ac11586829816f0fa3b8226ee77c9dc4b741e58 fix-uninitialized.patch
|
|
952109b1e0a2ccf435f5a7825ca3514d526161dae32e3d734f93d76b5693c469a889a488cb05cf423a006e9df550e7aae68697cc09d2c48fee1acd38163e5750 musl-macros.patch
|
|
1728376b8408e9ae97f048d54bc6faae889bca197cc0500a952e64683835dfca66465aa4bce8e57d1ce7a81dcba0bbeeb4bd1e1026d3c4bd196ef4ffe536a509 musl-strndupa.patch
|
|
7c529f88dc248f657a8d690044560c20a222c5b37d0d7dcb057bf2eea8938c406cccd6129bce19542088511a026b233234c9a83933a525c4691810be9ca712bf musl-asm-ptrace-h.patch
|
|
"
|