diff options
Diffstat (limited to 'sys-libs/libaal/libaal-0.5.1.ebuild')
-rw-r--r-- | sys-libs/libaal/libaal-0.5.1.ebuild | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/sys-libs/libaal/libaal-0.5.1.ebuild b/sys-libs/libaal/libaal-0.5.1.ebuild new file mode 100644 index 000000000000..276b606f8944 --- /dev/null +++ b/sys-libs/libaal/libaal-0.5.1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libaal/libaal-0.5.1.ebuild,v 1.1 2004/05/17 14:02:57 steel300 Exp $ + +DESCRIPTION="libaal library required by reiser4progs" +HOMEPAGE="http://www.namesys.com/v4/v4.html" +SRC_URI="http://thebsh.namesys.com/snapshots/2004.04.21-internal.testing.fixed/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 ~ppc ~amd64" + +DEPEND="" + +src_compile() { + econf --libdir=/lib || die "configure failed" + emake || die "make failed" +} + +src_install() { + make DESTDIR=${D} install || die + dodir /usr/lib + mv ${D}/lib/libaal.{a,la} ${D}/usr/lib/ + dodoc AUTHORS BUGS CREDITS ChangeLog NEWS README THANKS TODO +} |