blob: 43600cd2d29eea0298f6ffb5e4051fc524a26d2c (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/reiserfsprogs/reiserfsprogs-3.6.2.ebuild,v 1.5 2002/08/14 03:26:36 murphy Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Reiserfs Utilities"
SRC_URI="ftp://ftp.namesys.com/pub/reiserfsprogs/${P}.tar.gz"
HOMEPAGE="http://www.namesys.com"
KEYWORDS="x86 ppc sparc sparc64"
SLOT="0"
LICENSE="GPL-2"
DEPEND="virtual/glibc"
src_compile() {
cd ${S}
./configure --prefix=/ || die
emake || die
}
src_install () {
make DESTDIR=${D} install || die
dodir /usr/share
cd ${D}
mv man usr/share
dosym /sbin/reiserfsck /sbin/fsck.reiserfs
if [ "`use bootcd`" ]
then
rm -rf ${D}/usr
fi
}
|