blob: d4cf57718ef0beb0b0d500e70608c5e7b33d7c0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libhoard/libhoard-2.1.2d.ebuild,v 1.5 2004/06/24 23:18:02 agriffis Exp $
inherit libtool
DESCRIPTION="A fast, scalable and memory-efficient allocator for multiprocessors"
HOMEPAGE="http://www.hoard.org/"
SRC_URI="http://www.cs.umass.edu/%7Eemery/software/libhoard-2.1.2d.tar.gz"
SLOT="0"
LICENSE="LGPL-2.1"
KEYWORDS="~x86 ~sparc"
IUSE=""
DEPEND="virtual/glibc"
src_compile() {
# update libtool
elibtoolize
# enable the GNU extensions
export CPPFLAGS=-D_GNU_SOURCE
econf || die "./configure failed"
emake || die "compilation failed"
}
src_install () {
make DESTDIR=${D} install || die
dodoc NEWS README docs/*
}
|