diff options
Diffstat (limited to 'dev-util/valgrind/valgrind-1.9.6.ebuild')
-rw-r--r-- | dev-util/valgrind/valgrind-1.9.6.ebuild | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/dev-util/valgrind/valgrind-1.9.6.ebuild b/dev-util/valgrind/valgrind-1.9.6.ebuild deleted file mode 100644 index 1d46ffdf800e..000000000000 --- a/dev-util/valgrind/valgrind-1.9.6.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/valgrind-1.9.6.ebuild,v 1.2 2003/06/13 20:09:40 msterret Exp $ - -DESCRIPTION="An open-source memory debugger for x86-GNU/Linux" -HOMEPAGE="http://developer.kde.org/~sewardj" -SRC_URI="http://developer.kde.org/~sewardj/${P}.tar.bz2" -DEPEND="virtual/glibc - X? ( virtual/x11 )" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 -sparc -ppc -alpha" -IUSE="X" - -src_compile() { - local myconf - 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 README* COPYING ChangeLog TODO ACKNOWLEDGEMENTS AUTHORS NEWS FAQ.txt -} |