blob: 652915be445202a565c310e358229ed8378a791c (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Maintainer: Daniel Robbins <drobbins@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/sys-apps/e2fsprogs/e2fsprogs-1.25-r3.ebuild,v 1.6 2002/07/10 16:17:57 aliz Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Standard EXT2 and EXT3 filesystem utilities"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
HOMEPAGE="http://e2fsprogs.sourceforge.net/"
LICENSE="GPL-2"
#debianutils is for 'readlink'
DEPEND="virtual/glibc nls? ( sys-devel/gettext ) sys-apps/debianutils"
RDEPEND="virtual/glibc"
src_compile() {
local myconf
if [ "`use nls`" ]
then
myconf="--enable-nls"
else
myconf="--disable-nls"
fi
./configure --host=${CHOST} \
--prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--enable-dynamic-e2fsck \
--enable-elf-shlibs \
${myconf} || die
# Parallel make sometimes fails
make || die
}
src_install() {
make DESTDIR=${D} libdir=zapme install || die
#evil e2fsprogs makefile -- I'll get you!
rm -rf ${D}/zapme
make DESTDIR=${D} install-libs || die
if [ "`use nls`" ]
then
( cd po; make DESTDIR=${D} install || die )
fi
dodoc COPYING ChangeLog README RELEASE-NOTES SHLIBS
docinto e2fsck
dodoc e2fsck/ChangeLog e2fsck/CHANGES
dodir /lib /bin /sbin
cd ${D}/usr/lib
mv * ../../lib
cd ${D}/lib
mv *.a ../usr/lib
local mylib
local x
#normalize evil symlinks
cd ${D}/lib
for x in *
do
[ ! -L $x ]&& continue
mylib=`readlink $x`
mylib=`basename $mylib`
ln -sf $mylib $x
done
mv ${D}/usr/bin/* ${D}/bin
mv ${D}/usr/sbin/* ${D}/sbin
cd ${D}/usr/bin
mv lsattr chattr uuidgen ../usr/bin
cd ${D}/sbin
mv mklost+found ../usr/sbin
#time to convert hard links/duplicates to symbolic links
cd ${D}/sbin
rm fsck.*
ln -sf e2fsck fsck.ext2
ln -sf e2fsck fsck.ext3
rm mkfs.*
ln -sf mke2fs mkfs.ext2
rm -rf ${D}/usr/share/et ${D}/usr/share/ss
}
|