diff options
author | Andrey Kislyuk <weaver@gentoo.org> | 2011-02-16 18:25:59 +0000 |
---|---|---|
committer | Andrey Kislyuk <weaver@gentoo.org> | 2011-02-16 18:25:59 +0000 |
commit | 26719233b8f2f4385e6db3a9f85d8be2df7e8ef9 (patch) | |
tree | 9192b810ef051a75e45e6dc7f25429e8e53733fb | |
parent | Bump fixing a crash and a security issue, remove old. (diff) | |
download | gentoo-2-26719233b8f2f4385e6db3a9f85d8be2df7e8ef9.tar.gz gentoo-2-26719233b8f2f4385e6db3a9f85d8be2df7e8ef9.tar.bz2 gentoo-2-26719233b8f2f4385e6db3a9f85d8be2df7e8ef9.zip |
Version bump
(Portage version: 2.2_rc86/cvs/Linux x86_64)
-rw-r--r-- | dev-cpp/sparsehash/ChangeLog | 7 | ||||
-rw-r--r-- | dev-cpp/sparsehash/sparsehash-1.10.ebuild | 26 |
2 files changed, 32 insertions, 1 deletions
diff --git a/dev-cpp/sparsehash/ChangeLog b/dev-cpp/sparsehash/ChangeLog index bfe4c831d8e6..58a4246042d8 100644 --- a/dev-cpp/sparsehash/ChangeLog +++ b/dev-cpp/sparsehash/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-cpp/sparsehash # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sparsehash/ChangeLog,v 1.5 2011/02/11 13:04:04 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sparsehash/ChangeLog,v 1.6 2011/02/16 18:25:58 weaver Exp $ + +*sparsehash-1.10 (16 Feb 2011) + + 16 Feb 2011; Andrey Kislyuk <weaver@gentoo.org> +sparsehash-1.10.ebuild: + Version bump 11 Feb 2011; Markos Chandras <hwoarang@gentoo.org> sparsehash-1.5.2.ebuild: Stable on amd64 wrt bug #353570 diff --git a/dev-cpp/sparsehash/sparsehash-1.10.ebuild b/dev-cpp/sparsehash/sparsehash-1.10.ebuild new file mode 100644 index 000000000000..49b176e7ee77 --- /dev/null +++ b/dev-cpp/sparsehash/sparsehash-1.10.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/sparsehash/sparsehash-1.10.ebuild,v 1.1 2011/02/16 18:25:59 weaver Exp $ + +EAPI="3" + +DESCRIPTION="An extremely memory-efficient hash_map implementation." +HOMEPAGE="http://code.google.com/p/google-sparsehash/" +SRC_URI="http://google-sparsehash.googlecode.com/files/${P}.tar.gz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="" + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + + # Installs just every piece + rm -rf "${D}/usr/share/doc" + + dodoc AUTHORS ChangeLog NEWS README TODO + dohtml doc/* +} |