diff options
Diffstat (limited to 'dev-util/elfkickers/elfkickers-3.1.ebuild')
-rw-r--r-- | dev-util/elfkickers/elfkickers-3.1.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/dev-util/elfkickers/elfkickers-3.1.ebuild b/dev-util/elfkickers/elfkickers-3.1.ebuild new file mode 100644 index 000000000000..dbeb2f2abb9a --- /dev/null +++ b/dev-util/elfkickers/elfkickers-3.1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="6" + +inherit eutils toolchain-funcs + +MY_PN=${PN/elf/ELF}-${PV} +S=${WORKDIR}/${MY_PN} + +DESCRIPTION="collection of programs to manipulate ELF files: sstrip, rebind, elfls, elftoc" +HOMEPAGE="http://www.muppetlabs.com/~breadbox/software/elfkickers.html" +SRC_URI="http://www.muppetlabs.com/~breadbox/pub/software/${MY_PN}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~hppa ~mips ~sparc ~x86 ~x86-fbsd" +IUSE="doc" + +DEPEND="app-misc/pax-utils" +RDEPEND="" + +src_prepare() { + epatch "${FILESDIR}"/${P}-respect-CFLAGS-LDFLAGS.patch + epatch "${FILESDIR}"/${P}-create-destdir-path.patch + epatch "${FILESDIR}"/add-freebsd-elf-defs.patch + sed -i -e "s:^prefix = /usr/local:prefix = ${D}:" Makefile \ + || die "sed failed" + eapply_user +} + +src_compile() { + emake CC=$(tc-getCC) all +} |