diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2003-11-17 00:11:35 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2003-11-17 00:11:35 +0000 |
commit | 6b55171c6b1161b4a1d99d79c1f30bd189bf0fa6 (patch) | |
tree | bafe4eb8abe3ff30c907734eb0851fb6e371a304 /dev-ruby | |
parent | version bump (diff) | |
download | historical-6b55171c6b1161b4a1d99d79c1f30bd189bf0fa6.tar.gz historical-6b55171c6b1161b4a1d99d79c1f30bd189bf0fa6.tar.bz2 historical-6b55171c6b1161b4a1d99d79c1f30bd189bf0fa6.zip |
version bump
Diffstat (limited to 'dev-ruby')
-rw-r--r-- | dev-ruby/soap4r/Manifest | 4 | ||||
-rw-r--r-- | dev-ruby/soap4r/files/digest-soap4r-1.5.1.2 | 1 | ||||
-rw-r--r-- | dev-ruby/soap4r/soap4r-1.5.1.2.ebuild | 34 |
3 files changed, 37 insertions, 2 deletions
diff --git a/dev-ruby/soap4r/Manifest b/dev-ruby/soap4r/Manifest index 63b99b519998..7a96d564a254 100644 --- a/dev-ruby/soap4r/Manifest +++ b/dev-ruby/soap4r/Manifest @@ -1,6 +1,6 @@ -MD5 446a9b22f4f71831e9ac486b1f379e87 ChangeLog 571 +MD5 d6eb60b1ba5320b8d49311b4f84a82d7 ChangeLog 574 MD5 3eec9f3fe48b51f49dbc1f171a3b026f metadata.xml 157 MD5 7d66ca77332568f20f0b709b4c1024fd soap4r-1.4.8.1.ebuild 800 -MD5 01a41e8cdeec761a02aedfde537848a9 soap4r-1.5.1.2.ebuild 741 +MD5 673ae59db6b7fb8cc266a92ef9905eab soap4r-1.5.1.2.ebuild 841 MD5 1db6d81a0567c7a93cc124b6e450dee6 files/digest-soap4r-1.4.8.1 130 MD5 f0bb4c2f3c6f71859937e5d1a19ec562 files/digest-soap4r-1.5.1.2 66 diff --git a/dev-ruby/soap4r/files/digest-soap4r-1.5.1.2 b/dev-ruby/soap4r/files/digest-soap4r-1.5.1.2 new file mode 100644 index 000000000000..33d55b979ab9 --- /dev/null +++ b/dev-ruby/soap4r/files/digest-soap4r-1.5.1.2 @@ -0,0 +1 @@ +MD5 ed49f9af509e74e0935c5b275101e7a9 soap4r-1_5_1_2.tar.gz 169813 diff --git a/dev-ruby/soap4r/soap4r-1.5.1.2.ebuild b/dev-ruby/soap4r/soap4r-1.5.1.2.ebuild new file mode 100644 index 000000000000..dc4235f66a50 --- /dev/null +++ b/dev-ruby/soap4r/soap4r-1.5.1.2.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/soap4r/soap4r-1.5.1.2.ebuild,v 1.1 2003/11/17 00:11:31 matsuu Exp $ + +inherit ruby + +USE_RUBY="any" + +MY_P=${P//./_} +DESCRIPTION="an implementation of SOAP 1.1" +HOMEPAGE="http://rrr.jin.gr.jp/rwiki?cmd=view;name=soap4r" +SRC_URI="http://rrr.jin.gr.jp/download/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +DEPEND="<dev-lang/ruby-1.8.1 + >=dev-ruby/devel-logger-1.0.1 + >=dev-ruby/http-access2-0j + >=dev-ruby/rexml-2.5.3 + >=dev-ruby/uconv-0.4.10" + +S=${WORKDIR}/${MY_P} + +src_unpack() { + unpack ${A} + + cd ${S} + cp install.rb ${T} + sed -e "s:^RUBYLIBDIR = :RUBYLIBDIR = \"${D}\" + :" \ + -e "s:^SITELIBDIR = :SITELIBDIR = \"${D}\" + :" \ + ${T}/install.rb > install.rb || die +} |