blob: 9463cee1eb16cd2a38b0257a62b0fd0bcce3e1d8 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/reiser4progs/reiser4progs-0.5.4.ebuild,v 1.1 2004/05/17 14:07:02 steel300 Exp $
DESCRIPTION="reiser4progs: mkfs, fsck, etc..."
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=">=sys-libs/libaal-0.5.0"
src_compile() {
econf --sbindir=/sbin --libdir=/lib || die "configure failed"
emake || die "make failed"
}
src_install() {
make DESTDIR=${D} install || die
dodir /usr/lib
mv ${D}/lib/lib{reiser4,repair}.{a,la} ${D}/usr/lib/
dodoc AUTHORS BUGS CREDITS ChangeLog NEWS README THANKS TODO
}
|