blob: d5820182dfe128bdbdbb8061fac530c832c7a615 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/pdumpfs/pdumpfs-1.1.ebuild,v 1.2 2004/08/25 03:32:12 matsuu Exp $
DESCRIPTION="a daily backup system similar to Plan9's dumpfs"
HOMEPAGE="http://www.namazu.org/~satoru/pdumpfs/"
SRC_URI="http://www.namazu.org/~satoru/pdumpfs/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 amd64 ppc sparc"
IUSE="cjk"
DEPEND="virtual/ruby"
src_compile() {
make pdumpfs || die "make pdumpfs failed"
make check || die "make check failed"
}
src_install() {
dobin pdumpfs || die
doman man/man8/pdumpfs.8
dohtml -r doc/*
if use cjk; then
insinto /usr/share/man/ja/man8
doins man/ja/man8/pdumpfs.8
dohtml pdumpfs-ja.html
fi
dodoc ChangeLog README
}
|