blob: 15e95cb6191abcb786994a7227d6c6ec43b81d92 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/ltrace/ltrace-0.3.26-r1.ebuild,v 1.8 2003/05/21 18:28:51 kumba Exp $
S=${WORKDIR}/${P}
DESCRIPTION="ltrace shows runtime library call information for dynamically linked executables"
SRC_URI="http://ftp.debian.org/debian/pool/main/l/ltrace/${PN}_${PV}.tar.gz"
HOMEPAGE="http://packages.debian.org/unstable/utils/ltrace.html"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 -sparc -mips ~ppc"
DEPEND="virtual/glibc"
src_compile() {
econf || die
# modify CFLAGS (hopefully in a more time friendly way)
mv Makefile Makefile.orig
sed "s/ -O2 / ${CFLAGS} /" \
Makefile.orig > Makefile || die "sed failed...new version of Makefile?"
emake all || die
}
src_install() {
einstall || die
# documentation
rm -rvf ${D}usr/doc/
dodoc BUGS COPYING debian/changelog README TODO
}
|