summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-11-22 02:23:36 +0000
committerMike Frysinger <vapier@gentoo.org>2004-11-22 02:23:36 +0000
commit391a980711b0c59839923d68fc4d89bdc12f9b34 (patch)
treef869c0adced42200a604f091b27664e14ad851f1 /dev-util/strace
parentver bump and clean up (Manifest recommit) (diff)
downloadgentoo-2-391a980711b0c59839923d68fc4d89bdc12f9b34.tar.gz
gentoo-2-391a980711b0c59839923d68fc4d89bdc12f9b34.tar.bz2
gentoo-2-391a980711b0c59839923d68fc4d89bdc12f9b34.zip
old
Diffstat (limited to 'dev-util/strace')
-rw-r--r--dev-util/strace/files/digest-strace-4.51
-rw-r--r--dev-util/strace/files/digest-strace-4.5.61
-rw-r--r--dev-util/strace/strace-4.5.6.ebuild41
-rw-r--r--dev-util/strace/strace-4.5.ebuild40
4 files changed, 0 insertions, 83 deletions
diff --git a/dev-util/strace/files/digest-strace-4.5 b/dev-util/strace/files/digest-strace-4.5
deleted file mode 100644
index 2c831669e7be..000000000000
--- a/dev-util/strace/files/digest-strace-4.5
+++ /dev/null
@@ -1 +0,0 @@
-MD5 9c9dfe9b92a56bf448959557c1a81ed5 strace-4.5.tar.bz2 379567
diff --git a/dev-util/strace/files/digest-strace-4.5.6 b/dev-util/strace/files/digest-strace-4.5.6
deleted file mode 100644
index 66d5dd68a63a..000000000000
--- a/dev-util/strace/files/digest-strace-4.5.6
+++ /dev/null
@@ -1 +0,0 @@
-MD5 2dd9d23430957a7ee0221efb28c66d1e strace-4.5.6.tar.bz2 407633
diff --git a/dev-util/strace/strace-4.5.6.ebuild b/dev-util/strace/strace-4.5.6.ebuild
deleted file mode 100644
index c4fbbad18274..000000000000
--- a/dev-util/strace/strace-4.5.6.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/strace/strace-4.5.6.ebuild,v 1.4 2004/10/12 01:24:25 vapier Exp $
-
-inherit flag-o-matic gnuconfig
-
-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"
-KEYWORDS="~x86 ~ppc ~sparc ~mips ~alpha ~arm ~hppa ~amd64 ~ia64 ~ppc64 ~s390"
-IUSE="static"
-
-DEPEND="virtual/libc"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- gnuconfig_update
-
- # Compile fails with -O3 on sparc but works on x86
- if [ "${ARCH}" == "sparc" -o "${ARCH}" == "" ]; then
- replace-flags -O[3-9] -O2
- fi
- 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
-}
diff --git a/dev-util/strace/strace-4.5.ebuild b/dev-util/strace/strace-4.5.ebuild
deleted file mode 100644
index 7487346ef4e0..000000000000
--- a/dev-util/strace/strace-4.5.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/strace/strace-4.5.ebuild,v 1.5 2004/07/02 05:13:52 eradicator Exp $
-
-DESCRIPTION="A useful diagnostic, instructional, and debugging tool"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-HOMEPAGE="http://www.wi.leidenuniv.nl/~wichert/strace/"
-
-IUSE=""
-SLOT="0"
-LICENSE="as-is"
-KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa mips ~amd64 ~ia64"
-inherit flag-o-matic
-
-DEPEND="virtual/libc
- >=sys-devel/autoconf-2.54"
-
-src_compile() {
- # Compile fails with -O3 on sparc but works on x86
- if [ "${ARCH}" == "sparc" -o "${ARCH}" == "" ]; then
- replace-flags -O[3-9] -O2
- fi
- # configure is broken by default for sparc and possibly others, regen
- # from configure.in
- autoconf
- ./configure --prefix=/usr || die "configure died"
- emake || die "make failed"
-}
-
-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
- dobin strace-graph
- dodoc ChangeLog COPYRIGHT CREDITS NEWS PORTING README* TODO
-}