blob: a76a1fb32df71f4d23d7630cb47a9e8772c2191c (
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
37
38
39
40
41
42
43
44
45
46
47
48
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/valgrind-2.0.0.ebuild,v 1.7 2004/07/02 05:14:19 eradicator Exp $
inherit flag-o-matic eutils
RESTRICT="nostrip"
IUSE="X"
MY_P=${P/2.0_pre/}
S=${WORKDIR}/${MY_P}
DESCRIPTION="An open-source memory debugger for x86-GNU/Linux"
HOMEPAGE="http://valgrind.kde.org"
SRC_URI="http://developer.kde.org/~sewardj/${MY_P}.tar.bz2"
DEPEND="virtual/libc
sys-devel/autoconf
X? ( virtual/x11 )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 -sparc -ppc -alpha"
#src_unpack() {
# unpack ${A}
# cd ${S}
# if [ `uname -r | awk -F . '{print $2}'` == 6 ]; then
# epatch ${FILESDIR}/${PN}-configure.in-2.6.diff
# autoconf || die "error while running autoconf"
# fi
#}
src_compile() {
local myconf
filter-flags -fPIC
use X && myconf="--with-x" || myconf="--with-x=no"
# note: it does not appear safe to play with CFLAGS
econf ${myconf} || die
emake || die
}
src_install() {
einstall docdir="${D}/usr/share/doc/${PF}" || die
dodoc ACKNOWLEDGEMENTS AUTHORS INSTALL NEWS \
PATCHES_APPLIED README* TODO ChangeLog FAQ.txt
}
|