blob: fa16cfcb8b4ce1eb41c40410b76084a76cdc485b (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=1
DESCRIPTION="LVM Snapshot Toolkit"
HOMEPAGE="http://www.bashinator.org/projects/lvm-snaptool"
SRC_URI="http://www.bashinator.org/projects/lvm-snaptool/releases/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND=""
RDEPEND="app-shells/bashinator:0
sys-fs/lvm2
sys-fs/e2fsprogs
sys-devel/bc"
src_compile() { :; }
src_install() {
insinto /etc/${PN}
doins ${PN}.cfg.sh
doins bashinator.cfg.sh
dosbin ${PN}.sh
insinto /usr/lib
doins ${PN}.lib.sh
}
|