diff options
author | 2003-04-23 15:55:02 +0000 | |
---|---|---|
committer | 2003-04-23 15:55:02 +0000 | |
commit | 73527bf218abed30b89b8d05548230913d7eb01f (patch) | |
tree | d1bbdce03d27c46988d65830983ad2267a07d985 /dev-ruby/soap4r | |
parent | cleanup (diff) | |
download | historical-73527bf218abed30b89b8d05548230913d7eb01f.tar.gz historical-73527bf218abed30b89b8d05548230913d7eb01f.tar.bz2 historical-73527bf218abed30b89b8d05548230913d7eb01f.zip |
Initial commit.
Diffstat (limited to 'dev-ruby/soap4r')
-rw-r--r-- | dev-ruby/soap4r/ChangeLog | 9 | ||||
-rw-r--r-- | dev-ruby/soap4r/soap4r-1.4.8.1.ebuild | 24 |
2 files changed, 33 insertions, 0 deletions
diff --git a/dev-ruby/soap4r/ChangeLog b/dev-ruby/soap4r/ChangeLog new file mode 100644 index 000000000000..e0a50731cfca --- /dev/null +++ b/dev-ruby/soap4r/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for dev-ruby/soap4r +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/soap4r/ChangeLog,v 1.1 2003/04/23 15:55:02 twp Exp $ + +*soap4r-1.4.8.1 (23 Apr 2003) + + 23 Apr 2003; Tom Payne <twp@gentoo.org> soap4r-1.4.8.1.ebuild : + + Initial version. diff --git a/dev-ruby/soap4r/soap4r-1.4.8.1.ebuild b/dev-ruby/soap4r/soap4r-1.4.8.1.ebuild new file mode 100644 index 000000000000..1f20cff276de --- /dev/null +++ b/dev-ruby/soap4r/soap4r-1.4.8.1.ebuild @@ -0,0 +1,24 @@ +# 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.4.8.1.ebuild,v 1.1 2003/04/23 15:55:02 twp Exp $ + +MY_PV=`echo ${PV} | tr . _` +MY_P="${PN}-${MY_PV}" +DESCRIPTION="This is a sample skeleton ebuild file" +HOMEPAGE="http://rrr.jin.gr.jp/rwiki?cmd=view;name=soap4r" +SRC_URI="ftp://ftp.ruby-lang.org/pub/ruby/contrib/${MY_P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +DEPEND=">=dev-lang/ruby-1.8 + >=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_install() { + cp install.rb install.rb.orig + sed -e "s:^DSTPATH = :DSTPATH = \"${D}\" + \"/\" + :" install.rb.orig > install.rb + ruby install.rb +} |