blob: 3758fadd2d09aba7f6fc91730373cffc6225cdac (
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
33
34
35
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/libaal/libaal-1.0.1.ebuild,v 1.1 2004/08/24 22:26:34 vapier Exp $
DESCRIPTION="library required by reiser4progs"
HOMEPAGE="http://www.namesys.com/v4/v4.html"
SRC_URI="http://thebsh.namesys.com/snapshots/2004.08.24/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~amd64"
IUSE=""
DEPEND=""
src_compile() {
econf \
--enable-stand-alone \
--enable-memory-manager \
--libdir=/lib || die "configure failed"
emake || die "make failed"
}
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS BUGS CREDITS ChangeLog NEWS README THANKS TODO
# move silly .a libs out of /
dodir /usr/lib
local l=""
for l in libaal libaal-alone ; do
mv ${D}/lib/${l}.{a,la} ${D}/usr/lib/
dosym ../usr/lib/${l}.a /lib/${l}.a
done
}
|