blob: 11a65669ca3c6a35db4e04fbbd48181de7232ded (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/valgrind-2.1.0.ebuild,v 1.9 2005/02/13 15:55:25 griffon26 Exp $
inherit flag-o-matic
DESCRIPTION="An open-source memory debugger for x86-GNU/Linux"
HOMEPAGE="http://valgrind.kde.org"
SRC_URI="x86? ( http://developer.kde.org/~sewardj/${P}.tar.bz2 )
ppc? ( http://ozlabs.org/~paulus/${P}-ppc.tar.bz2 )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc -sparc -alpha"
IUSE="X"
DEPEND="virtual/libc
sys-devel/autoconf
X? ( virtual/x11 )"
case ${ARCH} in
ppc)
S="${WORKDIR}/${P}-ppc"
;;
esac
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
}
|