summaryrefslogtreecommitdiff
blob: 50e61a23c560a26cfa41e482abab79a1d73fdf77 (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
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit multilib

KEYWORDS="~amd64 ~x86"

DESCRIPTION="Safer memory allocator."
HOMEPAGE="http://fort-knox.org/"
SRC_URI="http://fort-knox.org/files/${P}.tar.gz"
LICENSE="LGPL"
SLOT="0"
IUSE=""

DEPEND=""
RDEPEND=""

src_compile() {
	sed -e "s|/usr/local/lib|${D}/usr/$(get_libdir)|g" -i Makefile
	dodir /usr/$(get_libdir)
	emake || die "emake failed"
}

src_install() {
	emake install || die "emake install failed"
}