diff options
author | Justin Lecher <jlec@gentoo.org> | 2010-06-09 11:45:00 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2010-06-09 11:45:00 +0000 |
commit | 6d96fd5ed4be6b2b8afb59429d114267fb89e6e0 (patch) | |
tree | c7f6dd4a98cbc42999d0ef916cb9d02c8e5cf102 /dev-libs/maloc | |
parent | Force mpi USE to be equal with deps (diff) | |
download | gentoo-2-6d96fd5ed4be6b2b8afb59429d114267fb89e6e0.tar.gz gentoo-2-6d96fd5ed4be6b2b8afb59429d114267fb89e6e0.tar.bz2 gentoo-2-6d96fd5ed4be6b2b8afb59429d114267fb89e6e0.zip |
Cleaned up old version
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/maloc')
-rw-r--r-- | dev-libs/maloc/ChangeLog | 6 | ||||
-rw-r--r-- | dev-libs/maloc/maloc-0.1.2.ebuild | 45 | ||||
-rw-r--r-- | dev-libs/maloc/maloc-0.2.1.ebuild | 44 |
3 files changed, 5 insertions, 90 deletions
diff --git a/dev-libs/maloc/ChangeLog b/dev-libs/maloc/ChangeLog index 7d94453855ee..1cce662cd974 100644 --- a/dev-libs/maloc/ChangeLog +++ b/dev-libs/maloc/ChangeLog @@ -1,6 +1,10 @@ # 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.13 2010/05/05 10:48:48 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/maloc/ChangeLog,v 1.14 2010/06/09 11:45:00 jlec Exp $ + + 09 Jun 2010; Justin Lecher <jlec@gentoo.org> -maloc-0.1.2.ebuild, + -maloc-0.2.1.ebuild: + Cleaned up old version 05 May 2010; Justin Lecher <jlec@gentoo.org> +files/0.2.1-asneeded.patch, maloc-0.2.1-r2.ebuild: diff --git a/dev-libs/maloc/maloc-0.1.2.ebuild b/dev-libs/maloc/maloc-0.1.2.ebuild deleted file mode 100644 index 3da0225eb5a8..000000000000 --- a/dev-libs/maloc/maloc-0.1.2.ebuild +++ /dev/null @@ -1,45 +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.2.ebuild,v 1.3 2010/01/12 04:24:06 markusle Exp $ - -inherit eutils - -MY_PV="0.1-2" - -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="" -KEYWORDS="~x86" - -DEPEND="sys-libs/readline" - -S="${WORKDIR}/${PN}" - -src_compile() { - # do not build blas - local myconf="--disable-blas" - - # 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" -} diff --git a/dev-libs/maloc/maloc-0.2.1.ebuild b/dev-libs/maloc/maloc-0.2.1.ebuild deleted file mode 100644 index c6cd639d3ba8..000000000000 --- a/dev-libs/maloc/maloc-0.2.1.ebuild +++ /dev/null @@ -1,44 +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.2.1.ebuild,v 1.1 2010/01/12 04:24:06 markusle Exp $ - -inherit eutils - -MY_PV="0.2-1" - -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() { - # fix install location of libs in Makefile - sed -e "s|libdir = \${prefix}/lib/\${fetk_cpu_vendor_os}|libdir = \${prefix}/$(get_libdir)/|" \ - -i src/aaa_lib/Makefile.in || \ - die "failed to patch lib Makefile" - - # configure - econf $(use_enable mpi) \ - || die "configure failed" - - # build - emake || die "make failed" -} - -src_install() { - - # install libs and headers - emake DESTDIR="${D}" install || die "make install failed" - - # install doc - dohtml doc/index.html || die "failed to install html docs" -} |