summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-libs/dmalloc/dmalloc-5.4.2.ebuild')
-rw-r--r--dev-libs/dmalloc/dmalloc-5.4.2.ebuild43
1 files changed, 0 insertions, 43 deletions
diff --git a/dev-libs/dmalloc/dmalloc-5.4.2.ebuild b/dev-libs/dmalloc/dmalloc-5.4.2.ebuild
deleted file mode 100644
index 3ddaa3311469..000000000000
--- a/dev-libs/dmalloc/dmalloc-5.4.2.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/dmalloc/dmalloc-5.4.2.ebuild,v 1.12 2007/12/27 15:03:12 drac Exp $
-
-inherit eutils
-
-DESCRIPTION="A Debug Malloc Library"
-HOMEPAGE="http://dmalloc.com/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
-
-LICENSE="as-is"
-SLOT="0"
-KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86"
-IUSE=""
-
-DEPEND="virtual/libc"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/${PN}-5.3.0-fpic.patch
- epatch ${FILESDIR}/${P}-respect-DESTDIR.diff
- epatch ${FILESDIR}/${P}-sandbox.patch
-}
-
-src_compile() {
- econf --enable-threads --enable-shlib || die "configure failed"
- emake -j1 || die "emake failed"
-}
-
-src_test() {
- einfo "Running tests"
- make heavy || die "make check tests failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die "make install failed"
-
- newdoc ChangeLog.1 ChangeLog
- dodoc INSTALL NEWS README docs/NOTES docs/TODO
- dohtml RELEASE.html docs/dmalloc.html
- doinfo docs/dmalloc.info
-}