# 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-0.5.3.ebuild,v 1.1 2004/07/14 23:56:19 vapier Exp $ DESCRIPTION="libaal library required by reiser4progs" HOMEPAGE="http://www.namesys.com/v4/v4.html" SRC_URI="http://thebsh.namesys.com/snapshots/2004.07.13-internal.testing/${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 dodir /usr/lib mv ${D}/lib/{libaal,libaal-alone}.{a,la} ${D}/usr/lib/ dodoc AUTHORS BUGS CREDITS ChangeLog NEWS README THANKS TODO }