blob: b499920baa3bfcec0c8fed4f472ae382d2be6605 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/ext2resize/ext2resize-1.1.17-r2.ebuild,v 1.5 2005/06/20 23:06:57 vapier Exp $
inherit flag-o-matic eutils
DESCRIPTION="EXT2 and EXT3 filesystem resizing utilities"
HOMEPAGE="http://ext2resize.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm ppc sparc x86"
IUSE="static"
DEPEND=""
src_unpack() {
unpack ${A}
cd "${S}"
# stupid packaged source isn't clean
make distclean || die "distclean failed"
sed -i 's:CFLAGS =:CFLAGS +=:' src/Makefile.in
# Fix broken source for non-''old'' GCCs
sed -e 's/printf(__FUNCTION__ \"\\n\");/printf(\"%s\\n\", __FUNCTION__);/g' -i src/*.c
epatch "${FILESDIR}"/${P}-gcc3.3.patch
epatch "${FILESDIR}"/${P}-linux26.patch
}
src_compile() {
use static && append-ldflags -static
econf --exec-prefix="/" || die "Configure failed"
emake LDFLAGS="${LDFLAGS}" || die "Make failed"
}
src_install() {
make install DESTDIR="${D}" || die "Install failed"
dodir /usr/sbin
dosym ../../sbin/ext2online /usr/sbin/ext2online
dosym ../../sbin/ext2prepare /usr/sbin/ext2prepare
dosym ../../sbin/ext2resize /usr/sbin/ext2resize
}
|