diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2022-09-16 13:56:28 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2022-09-16 13:56:28 +0200 |
commit | aeeb8d037c608d062b0f4cf5ce58c7e21f8d6d9f (patch) | |
tree | 21abedef7a97f6023cdbb099bac0052485264c89 /dev-libs/libelf | |
parent | app-misc/klavaro: remove unused patch (diff) | |
download | gentoo-aeeb8d037c608d062b0f4cf5ce58c7e21f8d6d9f.tar.gz gentoo-aeeb8d037c608d062b0f4cf5ce58c7e21f8d6d9f.tar.bz2 gentoo-aeeb8d037c608d062b0f4cf5ce58c7e21f8d6d9f.zip |
dev-libs/libelf: drop 0.8.13-r2
Closes: https://bugs.gentoo.org/867109
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-libs/libelf')
-rw-r--r-- | dev-libs/libelf/libelf-0.8.13-r2.ebuild | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/dev-libs/libelf/libelf-0.8.13-r2.ebuild b/dev-libs/libelf/libelf-0.8.13-r2.ebuild deleted file mode 100644 index e373fd9b7e46..000000000000 --- a/dev-libs/libelf/libelf-0.8.13-r2.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -inherit autotools multilib-minimal - -DESCRIPTION="A ELF object file access library" -HOMEPAGE="http://www.mr511.de/software/" -SRC_URI="http://www.mr511.de/software/${P}.tar.gz" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~mips ppc ppc64 sparc x86 ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="debug nls" - -RDEPEND="!dev-libs/elfutils" -DEPEND="nls? ( sys-devel/gettext )" - -DOCS=( ChangeLog README ) -MULTILIB_WRAPPED_HEADERS=( /usr/include/libelf/sys_elf.h ) - -src_prepare() { - eapply "${FILESDIR}/${P}-build.patch" - eapply_user - eautoreconf -} - -multilib_src_configure() { - # prefix might want to play with this; unfortunately the stupid - # macro used to detect whether we're building ELF is so screwed up - # that trying to fix it is just a waste of time. - export mr_cv_target_elf=yes - - ECONF_SOURCE="${S}" econf \ - $(use_enable nls) \ - --enable-shared \ - $(use_enable debug) -} - -multilib_src_install() { - emake \ - prefix="${ED}usr" \ - libdir="${ED}usr/$(get_libdir)" \ - install \ - install-compat \ - -j1 -} |