diff options
author | Alastair Tse <liquidx@gentoo.org> | 2003-06-21 17:23:31 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2003-06-21 17:23:31 +0000 |
commit | c3297b0a5579f82938caec79b9ad28e54d8b883b (patch) | |
tree | e41460a5dfe2896cb0f725b5fab638e826a4e600 /dev-util/pstack | |
parent | Added initial prelude-nids (diff) | |
download | historical-c3297b0a5579f82938caec79b9ad28e54d8b883b.tar.gz historical-c3297b0a5579f82938caec79b9ad28e54d8b883b.tar.bz2 historical-c3297b0a5579f82938caec79b9ad28e54d8b883b.zip |
new package
Diffstat (limited to 'dev-util/pstack')
-rw-r--r-- | dev-util/pstack/ChangeLog | 9 | ||||
-rw-r--r-- | dev-util/pstack/Manifest | 3 | ||||
-rw-r--r-- | dev-util/pstack/files/digest-pstack-1.1 | 1 | ||||
-rw-r--r-- | dev-util/pstack/pstack-1.1.ebuild | 22 |
4 files changed, 35 insertions, 0 deletions
diff --git a/dev-util/pstack/ChangeLog b/dev-util/pstack/ChangeLog new file mode 100644 index 000000000000..826149a97a55 --- /dev/null +++ b/dev-util/pstack/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for dev-util/pstack +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/pstack/ChangeLog,v 1.1 2003/06/21 17:23:22 liquidx Exp $ + +*pstack-1.1 (21 Jun 2003) + + 21 Jun 2003; Alastair Tse <liquidx@gentoo.org> pstack-1.1.ebuild: + new ebuild. submitted by kevin@desertsol.com (#18590). + diff --git a/dev-util/pstack/Manifest b/dev-util/pstack/Manifest new file mode 100644 index 000000000000..7c175588b6eb --- /dev/null +++ b/dev-util/pstack/Manifest @@ -0,0 +1,3 @@ +MD5 9103957e6ab839eb2c81cf5e9d448106 pstack-1.1.ebuild 571 +MD5 16d7955ae35ccf66783847267aaf54d9 ChangeLog 366 +MD5 c61018bc7b0b84b97e8ac5604fc503bb files/digest-pstack-1.1 54 diff --git a/dev-util/pstack/files/digest-pstack-1.1 b/dev-util/pstack/files/digest-pstack-1.1 new file mode 100644 index 000000000000..cf149e8d63a2 --- /dev/null +++ b/dev-util/pstack/files/digest-pstack-1.1 @@ -0,0 +1 @@ +MD5 70f8886ba5707dc7a934c3217df2e277 pstack.tgz 13265 diff --git a/dev-util/pstack/pstack-1.1.ebuild b/dev-util/pstack/pstack-1.1.ebuild new file mode 100644 index 000000000000..cb0643a993f7 --- /dev/null +++ b/dev-util/pstack/pstack-1.1.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/pstack/pstack-1.1.ebuild,v 1.1 2003/06/21 17:23:22 liquidx Exp $ + +DESCRIPTION="Display stack trace of a running process." +SRC_URI="http://www.whatsis.com/pstack/${PN}.tgz" +HOMEPAGE="http://www.whatsis.com/pstack/" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 -ppc -sparc -alpha" +IUSE="" +DEPEND="virtual/glibc" +S=${WORKDIR}/${PN} + +src_compile() { + make || die +} + +src_install() { + dosbin pstack + doman man1/pstack.1 +} |