blob: e22647e213af7c713ac62a43ce0b5692b4686ae4 (
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
|
# Copyright 1999-2003 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.3.ebuild,v 1.8 2003/06/21 21:19:40 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Reiserfs Utilities"
SRC_URI="http://www.namesys.com/pub/${PN}/${P}.tar.gz"
HOMEPAGE="http://www.namesys.com"
KEYWORDS="x86 amd64 ppc sparc alpha"
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
}
|