blob: 8036d0bc41c1c26b48440e7017debefa231377ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/ltrace/ltrace-0.3.36.ebuild,v 1.5 2005/09/11 02:09:48 agriffis Exp $
inherit eutils
MY_P="${P/-/_}"
DEB_P="${MY_P}-2"
DESCRIPTION="ltrace shows runtime library call information for dynamically linked executables"
HOMEPAGE="http://packages.debian.org/unstable/utils/ltrace.html"
SRC_URI="mirror://debian/pool/main/l/ltrace/${MY_P}.orig.tar.gz
mirror://debian/pool/main/l/ltrace/${DEB_P}.diff.gz"
RESTRICT="nomirror"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha ~amd64 ~hppa ~ia64 ~mips ppc -sparc x86"
IUSE=""
DEPEND="virtual/libc
dev-libs/elfutils"
src_unpack() {
unpack ${A}
epatch ${WORKDIR}/${DEB_P}.diff
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
# documentation
rm -rvf ${D}usr/doc/
dodoc BUGS COPYING debian/changelog README TODO
}
|