summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-util/strace/strace-4.5.15.ebuild')
-rw-r--r--dev-util/strace/strace-4.5.15.ebuild46
1 files changed, 0 insertions, 46 deletions
diff --git a/dev-util/strace/strace-4.5.15.ebuild b/dev-util/strace/strace-4.5.15.ebuild
deleted file mode 100644
index 45c5942fa06b..000000000000
--- a/dev-util/strace/strace-4.5.15.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/strace/strace-4.5.15.ebuild,v 1.11 2007/12/15 16:26:06 vapier Exp $
-
-inherit flag-o-matic autotools
-
-DESCRIPTION="A useful diagnostic, instructional, and debugging tool"
-HOMEPAGE="http://sourceforge.net/projects/strace/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 ~s390 sh ~sparc x86"
-IUSE="static aio"
-
-DEPEND="aio? ( dev-libs/libaio )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- #epatch "${FILESDIR}"/${PN}-4.5.11-fbsd.patch
-
- epatch "${FILESDIR}"/strace-dont-use-REG_SYSCALL-for-sh.patch
- epatch "${FILESDIR}"/${PN}-4.5.12-superh-update.patch
- epatch "${FILESDIR}"/${PN}-4.5.15-sh-SYS_ipc_subcall.patch
- epatch "${FILESDIR}"/strace-fix-arm-bad-syscall.patch
- epatch "${FILESDIR}"/${PN}-4.5.15-mips-sprintsigmask.patch
- epatch "${FILESDIR}"/${PN}-4.5.12-libaio.patch #103427
-
- eautoreconf
-}
-
-src_compile() {
- filter-lfs-flags
-
- use static && append-ldflags -static
-
- econf $(use_enable aio libaio) || die
- emake || die
-}
-
-src_install() {
- emake install DESTDIR="${D}" || die
- dodoc ChangeLog CREDITS NEWS PORTING README* TODO
-}