blob: 05c1d9bbda19decdf8c1caeef0b4c7fb09c27049 (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/SVN-Mirror/SVN-Mirror-0.68-r1.ebuild,v 1.4 2006/04/09 12:17:34 mcummings Exp $
inherit perl-module
DESCRIPTION="SVN::Mirror - Mirror remote repositories to local subversion repository"
SRC_URI="mirror://cpan/authors/id/C/CL/CLKAO/${P}.tar.gz"
HOMEPAGE="http://www.cpan.org/authors/id/C/CL/CLKAO/${P}.readme"
SLOT="0"
LICENSE="Artistic"
KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86"
IUSE=""
DEPEND="${DEPEND}
>=dev-util/subversion-1.1.3
>=dev-perl/URI-1.34
>=dev-perl/TermReadKey-2.21
>=dev-perl/SVN-Simple-0.26
dev-perl/Data-UUID
dev-perl/Class-Accessor
dev-perl/TimeDate
dev-perl/File-chdir"
pkg_setup() {
if ! perl -MSVN::Core < /dev/null 2> /dev/null
then
eerror "You need subversion-1.0.4+ compiled with Perl bindings."
eerror "USE=\"perl\" emerge subversion"
die "Need Subversion compiled with Perl bindings."
fi
}
|