blob: c7e3c6dfcd45b646c14fd37d30a0cbb9cf8113a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2004 Gentoo Foundation
# 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.4 2004/07/02 05:12:26 eradicator 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/libc"
S=${WORKDIR}/${PN}
src_compile() {
make || die
}
src_install() {
dosbin pstack
doman man1/pstack.1
}
|