summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAgostino Sarubbo <ago@gentoo.org>2012-05-10 16:02:37 +0000
committerAgostino Sarubbo <ago@gentoo.org>2012-05-10 16:02:37 +0000
commit2a55485992647631a91776dd344bc9c2ed1d7fe7 (patch)
tree86c8a4e3ff831993513b0f66864844bd3be26ad5 /dev-util/ccmalloc
parentRemove old (diff)
downloadgentoo-2-2a55485992647631a91776dd344bc9c2ed1d7fe7.tar.gz
gentoo-2-2a55485992647631a91776dd344bc9c2ed1d7fe7.tar.bz2
gentoo-2-2a55485992647631a91776dd344bc9c2ed1d7fe7.zip
Remove old
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/ccmalloc')
-rw-r--r--dev-util/ccmalloc/ChangeLog7
-rw-r--r--dev-util/ccmalloc/ccmalloc-0.4.0-r1.ebuild36
2 files changed, 5 insertions, 38 deletions
diff --git a/dev-util/ccmalloc/ChangeLog b/dev-util/ccmalloc/ChangeLog
index fff69deb36de..e7c971491c22 100644
--- a/dev-util/ccmalloc/ChangeLog
+++ b/dev-util/ccmalloc/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/ccmalloc
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ccmalloc/ChangeLog,v 1.6 2009/09/01 17:35:14 jer Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/ccmalloc/ChangeLog,v 1.7 2012/05/10 16:02:36 ago Exp $
+
+ 10 May 2012; Agostino Sarubbo <ago@gentoo.org> -ccmalloc-0.4.0-r1.ebuild:
+ Remove old
*ccmalloc-0.4.0-r2 (01 Sep 2009)
diff --git a/dev-util/ccmalloc/ccmalloc-0.4.0-r1.ebuild b/dev-util/ccmalloc/ccmalloc-0.4.0-r1.ebuild
deleted file mode 100644
index 81998f0d9882..000000000000
--- a/dev-util/ccmalloc/ccmalloc-0.4.0-r1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ccmalloc/ccmalloc-0.4.0-r1.ebuild,v 1.1 2008/10/20 14:20:39 hawking Exp $
-
-DESCRIPTION="A easy-to-use memory debugging library"
-HOMEPAGE="http://www.inf.ethz.ch/personal/biere/projects/ccmalloc/"
-SRC_URI="http://www.inf.ethz.ch/personal/biere/projects/${PN}/${P}.tar.gz"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="debug"
-DEPEND=""
-RDEPEND=""
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # Respect CFLAGS #240274
- sed -i \
- -e "s/CFLAGS=/CFLAGS+=/" \
- Makefile.in || die "sed in Makefile.in failed"
-}
-
-src_compile() {
- local myconf
- use debug && myconf="${myconf} --debug"
- # Not a standard configure script.
- ./configure --prefix=/usr ${myconf} || die "configure failed"
- emake || die "emake failed"
-}
-
-src_install() {
- emake PREFIX="${D}"/usr install || die "emake install failed"
- dodoc BUGS FEATURES NEWS README TODO USAGE VERSION || die "dodoc failed"
-}