blob: 2bc0d04326b6f35f75bc0a610363345541744654 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/dump/dump-0.4.34.ebuild,v 1.1 2003/09/08 19:35:00 mholzer Exp $
MY_P=${P/4./4b}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Dump/restore ext2fs backup utilities"
SRC_URI="mirror://sourceforge/dump/${MY_P}.tar.gz"
HOMEPAGE="http://dump.sourceforge.net"
SLOT="0"
LICENSE="BSD"
KEYWORDS="~x86 ~ppc ~sparc ~alpha"
IUSE="readline static"
DEPEND=">=sys-apps/e2fsprogs-1.27
>=sys-apps/bzip2-1.0.2
>=sys-libs/zlib-1.1.4
sys-kernel/linux-headers
readline? ( sys-libs/readline )"
RDEPEND="sys-apps/star"
src_unpack() {
unpack ${A}
cd ${S}
if [ `use readline` ] ; then
for i in configure configure.in
do
cp ${i} ${i}.orig
sed "s:-ltermcap:-lncurses:g" \
${i}.orig > ${i}
done
fi
}
src_compile() {
local myconf=""
use static \
&& myconf="${myconf} --enable-static" \
|| myconf="${myconf} --enable-shared"
econf \
--with-dumpdatespath=/etc/dumpdates \
--with-binowner=root \
--with-bingroup=root \
--enable-largefile \
`use_enable readline` \
${myconf} || die
emake || die
}
src_install() {
einstall MANDIR=${D}/usr/share/man/man8 || die
dodoc CHANGES COPYRIGHT KNOWNBUGS MAINTAINERS README \
REPORTING-BUGS THANKS TODO
dodoc -r examples/dump_on_cd
}
|