forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pdumpfs-1.3-r2.ebuild
48 lines (36 loc) · 899 Bytes
/
pdumpfs-1.3-r2.ebuild
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
42
43
44
45
46
47
48
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils
DESCRIPTION="a daily backup system similar to Plan9's dumpfs"
HOMEPAGE="http://0xcc.net/pdumpfs/"
SRC_URI="http://0xcc.net/pdumpfs/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="linguas_ja"
DEPEND=">=dev-lang/ruby-2.0.0_p598"
src_prepare() {
# Bug #509960
epatch "${FILESDIR}/${PN}-in.patch" \
"${FILESDIR}/${PN}-test.patch"
}
src_compile() {
emake pdumpfs
}
src_test() {
# RUBYOPT=-rauto_gem without rubygems installed will cause ruby to fail, bug #158455 and #163473.
export RUBYOPT="${GENTOO_RUBYOPT}"
emake check
}
src_install() {
dobin pdumpfs
doman man/man8/pdumpfs.8
dohtml -r doc/*
if use linguas_ja; then
insinto /usr/share/man/ja/man8
doins man/ja/man8/pdumpfs.8
fi
dodoc ChangeLog README
}