diff options
author | Nguyen Thai Ngoc Duy <pclouds@gentoo.org> | 2005-08-03 14:07:21 +0000 |
---|---|---|
committer | Nguyen Thai Ngoc Duy <pclouds@gentoo.org> | 2005-08-03 14:07:21 +0000 |
commit | 2efb6da602c70cb1fe49110845736688d778f349 (patch) | |
tree | e79fe3ee75e05d016606d9eba1f0fe0293a581c9 /dev-util/svk/svk-1.02.ebuild | |
parent | * sync to g-s and tab's patchsets (diff) | |
download | gentoo-2-2efb6da602c70cb1fe49110845736688d778f349.tar.gz gentoo-2-2efb6da602c70cb1fe49110845736688d778f349.tar.bz2 gentoo-2-2efb6da602c70cb1fe49110845736688d778f349.zip |
Version bump
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'dev-util/svk/svk-1.02.ebuild')
-rw-r--r-- | dev-util/svk/svk-1.02.ebuild | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/dev-util/svk/svk-1.02.ebuild b/dev-util/svk/svk-1.02.ebuild new file mode 100644 index 000000000000..b24ea9c3f369 --- /dev/null +++ b/dev-util/svk/svk-1.02.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/svk/svk-1.02.ebuild,v 1.1 2005/08/03 14:07:21 pclouds Exp $ + +inherit eutils perl-module + +MP=${P/svk/SVK} +DESCRIPTION="A decentralized version control system" +SRC_URI="http://www.cpan.org/authors/id/C/CL/CLKAO/${MP}.tar.gz" +HOMEPAGE="http://svk.elixus.org/" + +SLOT="0" +LICENSE="Artistic" +KEYWORDS="~x86" +SRC_TEST="do" +IUSE="crypt" +S=${WORKDIR}/${MP} + +DEPEND="${DEPEND} + >=dev-lang/perl-5.8.7 + >=dev-perl/SVN-Simple-0.27 + >=dev-perl/SVN-Mirror-0.65 + >=dev-perl/PerlIO-via-dynamic-0.11 + >=dev-perl/PerlIO-via-symlink-0.02 + >=dev-perl/Data-Hierarchy-0.21 + >=perl-core/File-Temp-0.14 + dev-perl/Algorithm-Annotate + dev-perl/Algorithm-Diff + >=dev-perl/yaml-0.38 + dev-perl/Regexp-Shellish + dev-perl/Pod-Escapes + dev-perl/Pod-Simple + dev-perl/Clone + dev-perl/IO-Digest + dev-perl/File-Type + dev-perl/TimeDate + dev-perl/URI + >=dev-perl/PerlIO-eol-0.13 + >=dev-perl/locale-maketext-lexicon-0.42 + >=dev-perl/Locale-Maketext-Simple-0.12 + dev-perl/Compress-Zlib + dev-perl/FreezeThaw + >=dev-perl/Class-Autouse-1.15 + dev-perl/IO-Pager + dev-perl/Compress-Zlib + crypt? ( app-crypt/gnupg )" + +src_unpack () { + + unpack ${A} + + if use crypt + then + ewarn Self-tests may cause the installation to fail with USE=crypt! + einfo 'Try USE="-crypt" emerge -v svk if this happens.' + ebeep 3 + else + epatch ${FILESDIR}/svk-${PV}-nognupgtest.patch + rm ${S}/t/72sign.t + + fi +} |