blob: 72741e15e39c167a003b8241c8ac31fa831268fb (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/dump/dump-0.4.44.ebuild,v 1.2 2011/06/16 09:54:35 pva Exp $
EAPI="4"
inherit eutils autotools
MY_P=${P/4./4b}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Dump/restore ext2fs backup utilities"
HOMEPAGE="http://dump.sourceforge.net/"
SRC_URI="mirror://sourceforge/dump/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="debug ermt readline selinux static"
RDEPEND=">=sys-fs/e2fsprogs-1.27
>=app-arch/bzip2-1.0.2
>=sys-libs/zlib-1.1.4
ermt? ( dev-libs/openssl )
readline? ( sys-libs/readline
sys-libs/ncurses
static? ( sys-libs/ncurses[static-libs] ) )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
virtual/os-headers"
src_prepare() {
epatch "${FILESDIR}/${P}-underlinking.patch"
eautoreconf
}
src_configure() {
econf \
--with-dumpdatespath=/etc/dumpdates \
--with-{bin,man}owner=root \
--with-{bin,man}grp=root \
--enable-largefile \
$(use_enable selinux transselinux) \
$(use_enable ermt) \
$(use_enable static) \
$(use_enable readline) \
$(use_enable debug)
}
src_install() {
# built on old autotools, no DESTDIR support
einstall MANDIR="${D}"/usr/share/man/man8
mv "${ED}"/usr/sbin/{,dump-}rmt || die
mv "${ED}"/usr/share/man/man8/{,dump-}rmt.8 || die
use ermt && newsbin rmt/ermt dump-ermt
dodoc CHANGES KNOWNBUGS MAINTAINERS README REPORTING-BUGS THANKS TODO
dodoc -r examples/*
}
pkg_postinst() {
ewarn "app-arch/dump installs 'rmt' as 'dump-rmt'."
ewarn "This is to avoid conflicts with app-arch/tar 'rmt'."
}
|