summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce A. Locke <blocke@gentoo.org>2002-10-23 22:12:02 +0000
committerBruce A. Locke <blocke@gentoo.org>2002-10-23 22:12:02 +0000
commitc1af6ca58e2c7b28f4cb45e09374f887fcb8510b (patch)
tree6b68e3513909e82ab750d6320a978354e7f7cabe
parentFixed a manpage symlink problem as reported on bug #9270. Thanks (diff)
downloadgentoo-2-c1af6ca58e2c7b28f4cb45e09374f887fcb8510b.tar.gz
gentoo-2-c1af6ca58e2c7b28f4cb45e09374f887fcb8510b.tar.bz2
gentoo-2-c1af6ca58e2c7b28f4cb45e09374f887fcb8510b.zip
forgot to remove old version
-rw-r--r--dev-util/valgrind/files/digest-valgrind-1.0.01
-rw-r--r--dev-util/valgrind/valgrind-1.0.0.ebuild33
2 files changed, 0 insertions, 34 deletions
diff --git a/dev-util/valgrind/files/digest-valgrind-1.0.0 b/dev-util/valgrind/files/digest-valgrind-1.0.0
deleted file mode 100644
index cb49f9c99370..000000000000
--- a/dev-util/valgrind/files/digest-valgrind-1.0.0
+++ /dev/null
@@ -1 +0,0 @@
-MD5 76c59f7f9c57ca78d733bd956b4d94ae valgrind-1.0.0.tar.bz2 468754
diff --git a/dev-util/valgrind/valgrind-1.0.0.ebuild b/dev-util/valgrind/valgrind-1.0.0.ebuild
deleted file mode 100644
index b4909fa638e8..000000000000
--- a/dev-util/valgrind/valgrind-1.0.0.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2002 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/valgrind-1.0.0.ebuild,v 1.3 2002/10/05 05:39:12 drobbins Exp $
-
-IUSE="X"
-
-S=${WORKDIR}/${P}
-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 -sparc64"
-
-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
-}
-