blob: 8bf9914e21154be2ecc767a8e0a49d6a94a156c2 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/svk/svk-1.06-r1.ebuild,v 1.2 2006/02/22 22:49:11 agriffis Exp $
inherit eutils perl-module bash-completion
MY_P=${P/svk/SVK}
S=${WORKDIR}/${MY_P}
DESCRIPTION="A decentralized version control system"
SRC_URI="mirror://cpan/authors/id/C/CL/CLKAO/${MY_P}.tar.gz"
HOMEPAGE="http://svk.elixus.org/"
SLOT="0"
LICENSE="|| ( Artistic GPL-2 )"
KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86"
IUSE="crypt nls pager svn-mirror patch"
DEPEND="
>=dev-lang/perl-5.8.7
>=dev-util/subversion-1.0.7
dev-perl/Algorithm-Annotate
dev-perl/Algorithm-Diff
>=dev-perl/yaml-0.38
dev-perl/Regexp-Shellish
>=dev-perl/Data-Hierarchy-0.21
>=virtual/perl-File-Temp-0.14
dev-perl/Clone
dev-perl/Pod-Escapes
dev-perl/Pod-Simple
>=dev-perl/PerlIO-via-dynamic-0.11
>=dev-perl/PerlIO-via-symlink-0.02
dev-perl/IO-Digest
>=dev-perl/SVN-Simple-0.27
dev-perl/TimeDate
dev-perl/TermReadKey
dev-perl/File-Type
dev-perl/URI
>=dev-perl/PerlIO-eol-0.13
>=dev-perl/Class-Autouse-1.15
>=virtual/perl-Getopt-Long-2.34
nls? (
>=dev-perl/locale-maketext-lexicon-0.42
>=dev-perl/Locale-Maketext-Simple-0.12
)
pager? ( dev-perl/IO-Pager )
svn-mirror? ( >=dev-perl/SVN-Mirror-0.66 )
patch? (
dev-perl/Compress-Zlib
dev-perl/FreezeThaw
)
crypt? ( app-crypt/gnupg )"
pkg_setup() {
if ! perl -MSVN::Core < /dev/null 2> /dev/null; then
eerror "SVN::Core missing or outdated. Please emerge \
dev-util/subversion ith the perl USE flag."
die "Need Subversion compiled with Perl bindings"
fi
}
src_compile() {
export PERL_EXTUTILS_AUTOINSTALL="--skipdeps"
perl-module_src_compile
}
src_install() {
perl-module_src_install
if use bash-completion; then
dobin contrib/svk-completion.pl
echo "complete -C ${DESTTREE}/bin/svk-completion.pl -o default svk" \
> svk-completion
dobashcompletion svk-completion
fi
}
|