summaryrefslogtreecommitdiff
path: root/dev-libs/libelf
diff options
context:
space:
mode:
authorAndreas K. Hüttel <dilfridge@gentoo.org>2017-04-12 22:38:53 +0200
committerAndreas K. Hüttel <dilfridge@gentoo.org>2017-04-12 22:47:52 +0200
commit23d246b765bf8871354af2ad02b8e867339a3330 (patch)
tree026ba7fded2028108cf198cd8db20a1c56582fc0 /dev-libs/libelf
parent17519e6e45d0244df45ce7494b50fa1477a0f541 (diff)
downloadgentoo-23d246b765bf8871354af2ad02b8e867339a3330.tar.gz
gentoo-23d246b765bf8871354af2ad02b8e867339a3330.tar.xz
dev-libs/libelf: Remove old, bug 605728
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'dev-libs/libelf')
-rw-r--r--dev-libs/libelf/libelf-0.8.13-r1.ebuild50
1 files changed, 0 insertions, 50 deletions
diff --git a/dev-libs/libelf/libelf-0.8.13-r1.ebuild b/dev-libs/libelf/libelf-0.8.13-r1.ebuild
deleted file mode 100644
index 38b8fd44c73..00000000000
--- a/dev-libs/libelf/libelf-0.8.13-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="3"
-
-inherit eutils multilib autotools
-
-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 hppa ~mips ppc ppc64 sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="debug nls elibc_FreeBSD"
-
-RDEPEND="!dev-libs/elfutils"
-DEPEND="nls? ( sys-devel/gettext )"
-
-src_prepare() {
- epatch "${FILESDIR}/${P}-build.patch"
- eautoreconf
-
-}
-
-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 \
- $(use_enable nls) \
- --enable-shared \
- $(use_enable debug)
-}
-
-src_install() {
- emake \
- prefix="${ED}usr" \
- libdir="${ED}usr/$(get_libdir)" \
- install \
- install-compat \
- -j1 || die
-
- dodoc ChangeLog README || die
-
- # Stop libelf from stamping on the system nlist.h
- use elibc_FreeBSD && rm "${ED}"/usr/include/nlist.h
-}