blob: 76c352540902d3cea69603e5a001bba0c70394d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-backup/furball/furball-0.5.ebuild,v 1.3 2012/10/15 09:04:12 ago Exp $
EAPI=4
DESCRIPTION="A handy backup script utilizing tar"
SRC_URI="http://www.claws-and-paws.com/software/${PN}/${P}.tgz"
HOMEPAGE="http://www.claws-and-paws.com/software/furball/index.shtml"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ppc sparc x86"
IUSE=""
RDEPEND="dev-lang/perl
app-arch/tar"
src_install() {
dobin ${PN}
doman ${PN}.1
dodoc README NEWS THANKS
}
|