summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Robbins <drobbins@gentoo.org>2001-04-27 22:49:48 +0000
committerDaniel Robbins <drobbins@gentoo.org>2001-04-27 22:49:48 +0000
commit45c085a8d05b1000cfb0766d914c4d837dad83e5 (patch)
treeec5aaf4240c05e6c7154f8dd29295cc8938fc140 /dev-util/strace
parentnew strace (diff)
downloadgentoo-2-45c085a8d05b1000cfb0766d914c4d837dad83e5.tar.gz
gentoo-2-45c085a8d05b1000cfb0766d914c4d837dad83e5.tar.bz2
gentoo-2-45c085a8d05b1000cfb0766d914c4d837dad83e5.zip
strace 4.3 works ;)
Diffstat (limited to 'dev-util/strace')
-rw-r--r--dev-util/strace/files/digest-strace-4.31
-rw-r--r--dev-util/strace/strace-4.2-r2.ebuild45
-rw-r--r--dev-util/strace/strace-4.3.ebuild (renamed from dev-util/strace/strace-3.99.ebuild)20
3 files changed, 6 insertions, 60 deletions
diff --git a/dev-util/strace/files/digest-strace-4.3 b/dev-util/strace/files/digest-strace-4.3
new file mode 100644
index 000000000000..8ee54ae46f0c
--- /dev/null
+++ b/dev-util/strace/files/digest-strace-4.3
@@ -0,0 +1 @@
+MD5 fbded443acdbca2daccb3cc5e523836f strace-4.3.tar.bz2
diff --git a/dev-util/strace/strace-4.2-r2.ebuild b/dev-util/strace/strace-4.2-r2.ebuild
deleted file mode 100644
index 5340777bc634..000000000000
--- a/dev-util/strace/strace-4.2-r2.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2000 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Author Achim Gottinger <achim@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/dev-util/strace/strace-4.2-r2.ebuild,v 1.1 2000/11/14 14:57:55 achim Exp $
-
-A=${P}.tar.gz
-S=${WORKDIR}/${P}
-DESCRIPTION="A usefull diagnostic, instructional, adn debugging tool"
-SRC_URI="http://www.wi.leidenuniv.nl/~wichert/strace/${A}"
-HOMEPAGE="http://www.wi.leidenuniv.nl/~wichert/strace/"
-DEPEND=">=sys-libs/glibc-2.1.3"
-
-src_unpack () {
- unpack ${A}
- cd ${S}
- if [ -n "`use glibc22`" ]
- then
- cp ${FILESDIR}/stream.c .
- fi
- cp time.c time.c.orig
- sed -e 's:<linux/timex\.h>:"linux/timex\.h":' time.c.orig > time.c
- cp ${FILESDIR}/timex.h linux
-
-}
-src_compile() {
-
- cd ${S}
- try ./configure --prefix=/usr i486-linux
- try make
-
-}
-
-src_install () {
-
- cd ${S}
- doman strace.1
- dobin strace
- dobin strace-graph
- dodoc ChangeLog COPYRIGHT CREDITS NEWS PORTING README* TODO
-
-}
-
-
-
-
diff --git a/dev-util/strace/strace-3.99.ebuild b/dev-util/strace/strace-4.3.ebuild
index 1d5ad28afe66..2eff9a4a7aa9 100644
--- a/dev-util/strace/strace-3.99.ebuild
+++ b/dev-util/strace/strace-4.3.ebuild
@@ -1,36 +1,26 @@
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Achim Gottinger <achim@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/dev-util/strace/strace-3.99.ebuild,v 1.2 2000/11/27 16:20:46 achim Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/strace/strace-4.3.ebuild,v 1.1 2001/04/27 22:49:46 drobbins Exp $
-A=${P}.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="A usefull diagnostic, instructional, adn debugging tool"
-SRC_URI="http://download.sourceforge.net/strace/${A}"
-HOMEPAGE="http://sourceforge.net/projects/strace/"
+SRC_URI="http://prdownloads.sourceforge.net/strace/${P}.tar.bz2"
+HOMEPAGE="http://www.wi.leidenuniv.nl/~wichert/strace/"
DEPEND=">=sys-libs/glibc-2.1.3"
-src_unpack () {
- unpack ${A}
- cp ${FILESDIR}/ipc.c ${S}
- cp ${FILESDIR}/stream.c ${S}
-
-}
src_compile() {
-
cd ${S}
- try ./configure --prefix=/usr ${CHOST}
+ try ./configure --prefix=/usr
try make
-
}
src_install () {
-
cd ${S}
doman strace.1
dobin strace
+ dobin strace-graph
dodoc ChangeLog COPYRIGHT CREDITS NEWS PORTING README* TODO
-
}