diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2011-09-17 12:24:28 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2011-09-17 12:24:28 +0000 |
commit | c75b669936af174be2b62f3b5f2b15f5ab5ba0dc (patch) | |
tree | 50261ad1b532d30c8b901de918c282edabdf8cd6 /dev-libs/jemalloc | |
parent | Automated version bump (diff) | |
download | gentoo-2-c75b669936af174be2b62f3b5f2b15f5ab5ba0dc.tar.gz gentoo-2-c75b669936af174be2b62f3b5f2b15f5ab5ba0dc.tar.bz2 gentoo-2-c75b669936af174be2b62f3b5f2b15f5ab5ba0dc.zip |
Version bump to latest. Update to EAPI=4. Drop older.
(Portage version: 2.2.0_alpha58/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/jemalloc')
-rw-r--r-- | dev-libs/jemalloc/ChangeLog | 8 | ||||
-rw-r--r-- | dev-libs/jemalloc/jemalloc-2.2.3.ebuild (renamed from dev-libs/jemalloc/jemalloc-2.2.1-r1.ebuild) | 18 |
2 files changed, 14 insertions, 12 deletions
diff --git a/dev-libs/jemalloc/ChangeLog b/dev-libs/jemalloc/ChangeLog index 53b57af63762..ed277b7fed62 100644 --- a/dev-libs/jemalloc/ChangeLog +++ b/dev-libs/jemalloc/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-libs/jemalloc # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/jemalloc/ChangeLog,v 1.5 2011/04/11 15:50:23 anarchy Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/jemalloc/ChangeLog,v 1.6 2011/09/17 12:24:28 scarabeus Exp $ + +*jemalloc-2.2.3 (17 Sep 2011) + + 17 Sep 2011; Tomáš Chvátal <scarabeus@gentoo.org> + -jemalloc-2.2.1-r1.ebuild, +jemalloc-2.2.3.ebuild: + Version bump to latest. Update to EAPI=4. Drop older. *jemalloc-2.2.1-r1 (11 Apr 2011) diff --git a/dev-libs/jemalloc/jemalloc-2.2.1-r1.ebuild b/dev-libs/jemalloc/jemalloc-2.2.3.ebuild index 14d6e419ddb9..fd77050e0a46 100644 --- a/dev-libs/jemalloc/jemalloc-2.2.1-r1.ebuild +++ b/dev-libs/jemalloc/jemalloc-2.2.3.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/jemalloc/jemalloc-2.2.1-r1.ebuild,v 1.2 2011/04/12 18:18:10 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/jemalloc/jemalloc-2.2.3.ebuild,v 1.1 2011/09/17 12:24:28 scarabeus Exp $ -EAPI="2" +EAPI=4 -inherit autotools eutils flag-o-matic +inherit autotools DESCRIPTION="Jemalloc is a general-purpose scalable concurrent allocator" HOMEPAGE="http://www.canonware.com/jemalloc/" @@ -20,8 +20,9 @@ DEPEND="" RDEPEND="" src_prepare() { - epatch "${FILESDIR}/${PN}-strip-optimization.patch" - epatch "${FILESDIR}/${PN}-2.2.1-no-pprof.patch" + epatch \ + "${FILESDIR}/${PN}-strip-optimization.patch" \ + "${FILESDIR}/${PN}-2.2.1-no-pprof.patch" eautoreconf } @@ -30,10 +31,5 @@ src_configure() { econf \ --with-jemalloc-prefix=j \ $(use_enable debug) \ - $(use_enable stats) \ - || die "configure failed" -} - -src_install() { - make DESTDIR="${D}" install + $(use_enable stats) } |