summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-05-24 00:29:01 +0000
committerMike Frysinger <vapier@gentoo.org>2005-05-24 00:29:01 +0000
commit5c5e2895322beea0a46bec034f7a82c544be5a9e (patch)
treeeb4554af5a95d935e5c9a0773b5b8f6214ac2a99 /dev-util
parentMarking 2.0.11 stable (x86). Removing old ebuild. (diff)
downloadhistorical-5c5e2895322beea0a46bec034f7a82c544be5a9e.tar.gz
historical-5c5e2895322beea0a46bec034f7a82c544be5a9e.tar.bz2
historical-5c5e2895322beea0a46bec034f7a82c544be5a9e.zip
old
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/strace/files/digest-strace-4.5.81
-rw-r--r--dev-util/strace/strace-4.5.8.ebuild48
2 files changed, 0 insertions, 49 deletions
diff --git a/dev-util/strace/files/digest-strace-4.5.8 b/dev-util/strace/files/digest-strace-4.5.8
deleted file mode 100644
index 27ffad1d338e..000000000000
--- a/dev-util/strace/files/digest-strace-4.5.8
+++ /dev/null
@@ -1 +0,0 @@
-MD5 9320ac849890b8e2cc623193bd5733ba strace-4.5.8.tar.bz2 419996
diff --git a/dev-util/strace/strace-4.5.8.ebuild b/dev-util/strace/strace-4.5.8.ebuild
deleted file mode 100644
index 4c873a9e02da..000000000000
--- a/dev-util/strace/strace-4.5.8.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/strace/strace-4.5.8.ebuild,v 1.5 2005/02/08 19:45:02 agriffis Exp $
-
-inherit flag-o-matic
-
-DESCRIPTION="A useful diagnostic, instructional, and debugging tool"
-HOMEPAGE="http://sourceforge.net/projects/strace/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="as-is"
-SLOT="0"
-#-sparc: 4.5.8 - eradicator - compilation errors on sparc
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 -sparc ~x86"
-IUSE="static"
-
-DEPEND="virtual/libc"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
-
- # Remove some obsolete ia64-related hacks from the strace source
- # (08 Feb 2005 agriffis)
- epatch ${FILESDIR}/strace-4.5.8-ia64.patch
-
- # This is ugly but linux26-headers-2.6.8.1-r2 (and other versions) has some
- # issues with definition of s64 and friends. This seems to solve
- # compilation in this case (08 Feb 2005 agriffis)
- use ia64 && append-flags -D_ASM_IA64_PAL_H
-
- # Compile fails with -O3 on sparc but works on x86
- use sparc && replace-flags -O[3-9] -O2
- filter-lfs-flags
-
- use static && append-ldflags -static
-}
-
-src_install() {
- # Can't use make install because it is stupid and
- # doesn't make leading directories before trying to
- # install. Thus, one would have to make /usr/bin
- # and /usr/man/man1 (at least).
- # So, we do it by hand.
- doman strace.1
- dobin strace strace-graph || die
- dodoc ChangeLog CREDITS NEWS PORTING README* TODO
-}