diff options
author | Justin Lecher <jlec@gentoo.org> | 2010-06-22 06:31:37 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2010-06-22 06:31:37 +0000 |
commit | 6511ad5065aa3f5deb8b4b9796e3e7a5bb94a24d (patch) | |
tree | b0a2d4c4b4ceaac12deb93d9bb004d90a0f7fe22 /dev-libs/maloc | |
parent | Version bump (diff) | |
download | gentoo-2-6511ad5065aa3f5deb8b4b9796e3e7a5bb94a24d.tar.gz gentoo-2-6511ad5065aa3f5deb8b4b9796e3e7a5bb94a24d.tar.bz2 gentoo-2-6511ad5065aa3f5deb8b4b9796e3e7a5bb94a24d.zip |
Dropping old version having issues on 64bit, bug 324321
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/maloc')
-rw-r--r-- | dev-libs/maloc/ChangeLog | 5 | ||||
-rw-r--r-- | dev-libs/maloc/maloc-0.1.3.ebuild | 50 |
2 files changed, 4 insertions, 51 deletions
diff --git a/dev-libs/maloc/ChangeLog b/dev-libs/maloc/ChangeLog index ed823bdb66e0..3b4b764ee15f 100644 --- a/dev-libs/maloc/ChangeLog +++ b/dev-libs/maloc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/maloc # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/maloc/ChangeLog,v 1.16 2010/06/21 20:27:44 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/maloc/ChangeLog,v 1.17 2010/06/22 06:31:37 jlec Exp $ + + 22 Jun 2010; Justin Lecher <jlec@gentoo.org> -maloc-0.1.3.ebuild: + Dropping old version having issues on 64bit, 324321 21 Jun 2010; Markus Meier <maekke@gentoo.org> maloc-0.2.1-r3.ebuild: amd64/x86 stable, bug #324321 diff --git a/dev-libs/maloc/maloc-0.1.3.ebuild b/dev-libs/maloc/maloc-0.1.3.ebuild deleted file mode 100644 index 0c02a6886bc3..000000000000 --- a/dev-libs/maloc/maloc-0.1.3.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/maloc/maloc-0.1.3.ebuild,v 1.6 2010/01/06 17:56:46 darkside Exp $ - -inherit eutils - -MY_PV="0.1-3" - -DESCRIPTION="MALOC is a small, portable, abstract C environment library for object-oriented C programming" -LICENSE="GPL-2" -HOMEPAGE="http://scicomp.ucsd.edu/~mholst/codes/maloc/index.html#overview" -SRC_URI=" http://cam.ucsd.edu/~mholst/codes/${PN}/${PN}-${MY_PV}.tar.gz" - -SLOT="0" -IUSE="mpi" -KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux" - -DEPEND="sys-libs/readline - mpi? ( virtual/mpi )" - -S="${WORKDIR}/${PN}" - -src_compile() { - # do not build blas - local myconf="--disable-blas" - - if use mpi; then - myconf="${myconf} --enable-mpi" - fi - - # configure - econf ${myconf} || die "configure failed" - - # fix install location of libs in Makefile - sed -e "s|libdir = \${prefix}/lib/\${fetk_cpu_vendor_os}|libdir = \${prefix}/lib/|" \ - -i src/aaa_lib/Makefile || \ - die "failed to patch lib Makefile" - - # build - make || die "make failed" -} - -src_install() { - - # install libs and headers - make DESTDIR="${D}" install || die "make install failed" - - # install doc - dohtml doc/index.html || die "failed to install html docs" -} |