diff options
author | 2003-11-18 16:33:42 +0000 | |
---|---|---|
committer | 2003-11-18 16:33:42 +0000 | |
commit | f793decf1ae0602584cf9b9dd735823d2abe3859 (patch) | |
tree | 5ad7ad53943a3db5a199b610b2fe8ac85bcbb8d8 /dev-util | |
parent | Version bumped. (diff) | |
download | historical-f793decf1ae0602584cf9b9dd735823d2abe3859.tar.gz historical-f793decf1ae0602584cf9b9dd735823d2abe3859.tar.bz2 historical-f793decf1ae0602584cf9b9dd735823d2abe3859.zip |
Version bumped.
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/strace/Manifest | 4 | ||||
-rw-r--r-- | dev-util/strace/files/digest-strace-4.5.1 | 1 | ||||
-rw-r--r-- | dev-util/strace/strace-4.5.1.ebuild | 41 |
3 files changed, 44 insertions, 2 deletions
diff --git a/dev-util/strace/Manifest b/dev-util/strace/Manifest index 68153a57b3f6..bc25e67f5031 100644 --- a/dev-util/strace/Manifest +++ b/dev-util/strace/Manifest @@ -1,5 +1,5 @@ -MD5 b4e11440a505b997cc81ab683e2ebcfe ChangeLog 3182 -MD5 46e9df40a3d2240a4fd4105b639a55b8 strace-4.5.1.ebuild 1267 +MD5 a4ddbd9dd04016f764260b31cc9b8be6 ChangeLog 3300 +MD5 36cf60efa6f36e8fd8fdf6e405e54a78 strace-4.5.1.ebuild 1269 MD5 bd208b817319d41c096653079bfaa66c strace-4.4.94.ebuild 1222 MD5 b0159189f01975ab01b9101117f95736 strace-4.5.ebuild 1247 MD5 90cea240a8a56990c39a829dc2a902d2 strace-4.4.98.ebuild 1217 diff --git a/dev-util/strace/files/digest-strace-4.5.1 b/dev-util/strace/files/digest-strace-4.5.1 new file mode 100644 index 000000000000..44c4d5c8f4b7 --- /dev/null +++ b/dev-util/strace/files/digest-strace-4.5.1 @@ -0,0 +1 @@ +MD5 11657c64e4289d8cfc48302e890f1a5b strace-4.5.1.tar.bz2 381545 diff --git a/dev-util/strace/strace-4.5.1.ebuild b/dev-util/strace/strace-4.5.1.ebuild new file mode 100644 index 000000000000..0d0b41936c74 --- /dev/null +++ b/dev-util/strace/strace-4.5.1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/strace/strace-4.5.1.ebuild,v 1.1 2003/11/18 16:33:35 mholzer Exp $ + +DESCRIPTION="A useful diagnostic, instructional, and debugging tool" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" +RESTRICT="nomirror" +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/glibc + >=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 +} |