blob: e96734ad3ca74aae827aa151a859f7663cd8bc53 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/tob/tob-0.26.ebuild,v 1.4 2004/06/24 21:37:02 agriffis Exp $
inherit eutils
DESCRIPTION="A general driver for making and maintaining backups."
HOMEPAGE="http://tinyplanet.ca/projects/tob/"
SRC_URI="http://tinyplanet.ca/projects/tob/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
RDEPEND="app-arch/afio"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-no-maketemp-warn.diff
}
src_compile() {
# no compilation required, only a perl-script
einfo "No compilation necessary..."
}
src_install() {
# simply install all the parts into the correct places
dosbin tob || die
dodir /etc/tob/volumes
cp tob.rc ${D}/etc/tob/tob.rc
cp example.* ${D}/etc/tob/volumes
doman tob.8
dodoc README
docinto doc
dodoc doc/*
docinto sample-rc
dodoc sample-rc/*
}
|