blob: 55b55d0c90cc3edb8cb458a7014587d0d619d6b7 (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
DESCRIPTION="Relax-and-Recover is a setup-and-forget bare metal disaster recovery solution"
HOMEPAGE="http://relax-and-recover.org/"
SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="libressl udev samba"
RDEPEND="
net-dialup/mingetty
net-fs/nfs-utils
sys-apps/gawk
sys-apps/iproute2
sys-apps/lsb-release
sys-apps/sed
sys-apps/util-linux
sys-block/parted
sys-boot/syslinux
virtual/cdrtools
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:0= )
samba? ( net-fs/cifs-utils )
udev? ( virtual/udev )
"
src_compile() { :; }
src_install() {
emake DESTDIR="${D}" install
keepdir /var/lib/rear
keepdir /var/log/rear
}
|