blob: 1a695dbbe169b285607e3814419c7ee7ea87db59 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/SOAP-Lite/SOAP-Lite-0.60a-r1.ebuild,v 1.1 2004/10/29 15:29:31 mcummings Exp $
IUSE="jabber ssl"
inherit perl-module eutils
MY_PV=${PV/a//}
MY_P=SOAP-Lite-${MY_PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Provides a simple and lightweight interface to the SOAP protocol (sic) both on client and server side."
SRC_URI="mirror://cpan/authors/id/B/BY/BYRNE/SOAP/${P}.tar.gz"
HOMEPAGE="http://search.cpan.org/~byrne/${P}"
SLOT="0"
LICENSE="|| ( Artistic GPL-2 )"
KEYWORDS="~x86 ~amd64 ~ppc ~sparc ~alpha"
# TESTS ARE DISABLED ON PURPOSE
# This module attempts to access an external website for validation
# of the MIME::Parser - not only is that bad practice in general,
# but in this particular case the external site isn't even valid anymore# -mpc
# 24/10/04
#SRC_TEST="do"
DEPEND="${DEPEND}
dev-perl/XML-Parser
dev-perl/libwww-perl
dev-perl/libnet
dev-perl/MIME-Lite
dev-perl/MIME-Base64
ssl? ( dev-perl/Crypt-SSLeay )
jabber? ( dev-perl/Net-Jabber )
ssl? ( dev-perl/IO-Socket-SSL )
dev-perl/Compress-Zlib
>=dev-perl/MIME-tools-5.413"
src_unpack() {
unpack ${A}
cd ${S}
# The author of this module put a dep for MIME::Parser 6.X - but the6.X
# release of MIME::Parser was a mistake during a change in maintainers on
# cpan. This patch alters the dependancy to the "real" stable version of
# MIME::Parser.
epatch ${FILESDIR}/SOAP-Lite-0.60.a.patch
}
src_compile() {
(echo yes) | perl-module_src_compile || perl-module_src_compile || die "compile failed"
perl-module_src_test || die "test failed"
}
|