mirror of
https://git.freebsd.org/ports.git
synced 2025-06-04 20:36:30 -04:00
Add ruby-soap (SOAP4R), a Ruby library which implements SOAP 1.1.
Currently SOAP4R offers only SOAP-RPC specific features.
This commit is contained in:
parent
00604910a1
commit
11fd81b51a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=40656
6 changed files with 94 additions and 0 deletions
|
@ -277,6 +277,7 @@
|
|||
SUBDIR += ruby-ldap
|
||||
SUBDIR += ruby-pcap
|
||||
SUBDIR += ruby-snmp
|
||||
SUBDIR += ruby-soap
|
||||
SUBDIR += ruby-uri
|
||||
SUBDIR += ruby-xmlrpc
|
||||
SUBDIR += rwhois
|
||||
|
|
49
net/ruby-soap/Makefile
Normal file
49
net/ruby-soap/Makefile
Normal file
|
@ -0,0 +1,49 @@
|
|||
# New ports collection makefile for: SOAP4R
|
||||
# Date created: 31 March 2001
|
||||
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= soap
|
||||
PORTVERSION= 1.2.0
|
||||
CATEGORIES= net ruby
|
||||
MASTER_SITES= http://www.jin.gr.jp/~nahi/Ruby/SOAP4R/
|
||||
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
||||
DISTNAME= ${PORTNAME}4r-${PORTVERSION:S/./_/g}
|
||||
DIST_SUBDIR= ruby
|
||||
|
||||
MAINTAINER= knu@FreeBSD.org
|
||||
|
||||
RUN_DEPENDS= ${RUBY_SITELIBDIR}/uri.rb:${PORTSDIR}/net/ruby-uri \
|
||||
${RUBY_SITELIBDIR}/http-access.rb:${PORTSDIR}/www/ruby-http-access \
|
||||
${RUBY_SITELIBDIR}/date3.rb:${PORTSDIR}/devel/ruby-date2
|
||||
|
||||
USE_RUBY= yes
|
||||
|
||||
NO_BUILD= yes
|
||||
|
||||
DOCS_EN= RELEASE_en.html rubyStyle.css
|
||||
DOCS_JA= RELEASE_ja.html
|
||||
|
||||
post-extract:
|
||||
${CP} ${WRKSRC}/redist/application.rb ${WRKSRC}/lib/
|
||||
|
||||
post-patch:
|
||||
${RUBY} -i -pe 'gsub /\brubyStyle.css\b/, "../\\1"' ${WRKSRC}/RELEASE_ja.html
|
||||
|
||||
do-install:
|
||||
${CP} -R ${WRKSRC}/lib/* ${RUBY_SITELIBDIR}/
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${RUBY_EXAMPLESDIR}/${PORTNAME}
|
||||
${CP} -R ${WRKSRC}/sample/* ${RUBY_EXAMPLESDIR}/${PORTNAME}/
|
||||
${MKDIR} ${RUBY_DOCDIR}/${PORTNAME}/ja
|
||||
.for f in ${DOCS_EN}
|
||||
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/${PORTNAME}/
|
||||
.endfor
|
||||
.for f in ${DOCS_JA}
|
||||
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_DOCDIR}/${PORTNAME}/ja/
|
||||
.endfor
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
1
net/ruby-soap/distinfo
Normal file
1
net/ruby-soap/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (ruby/soap4r-1_2_0.tar.gz) = a663d05eec662c0aa1290cee197d129f
|
1
net/ruby-soap/pkg-comment
Normal file
1
net/ruby-soap/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
Ruby library which implements SOAP 1.1
|
5
net/ruby-soap/pkg-descr
Normal file
5
net/ruby-soap/pkg-descr
Normal file
|
@ -0,0 +1,5 @@
|
|||
This is SOAP4R, a Ruby library which implements SOAP 1.1. Currently
|
||||
SOAP4R offers only SOAP-RPC specific features.
|
||||
|
||||
Author: NaHi (NAKAMURA, Hiroshi) <nahi@keynauts.com>
|
||||
WWW: http://www.jin.gr.jp/~nahi/RWiki/?cmd=view&name=SOAP4R
|
37
net/ruby-soap/pkg-plist
Normal file
37
net/ruby-soap/pkg-plist
Normal file
|
@ -0,0 +1,37 @@
|
|||
%%RUBY_SITELIBDIR%%/SOAP.rb
|
||||
%%RUBY_SITELIBDIR%%/SOAPData.rb
|
||||
%%RUBY_SITELIBDIR%%/SOAPElement.rb
|
||||
%%RUBY_SITELIBDIR%%/SOAPProcessor.rb
|
||||
%%RUBY_SITELIBDIR%%/SOAPProxy.rb
|
||||
%%RUBY_SITELIBDIR%%/SOAPStreamHandler.rb
|
||||
%%RUBY_SITELIBDIR%%/SOAPStreamHandler_without_http-access.rb
|
||||
%%RUBY_SITELIBDIR%%/XMLSchemaDatatypes.rb
|
||||
%%RUBY_SITELIBDIR%%/application.rb
|
||||
%%RUBY_SITELIBDIR%%/soap/XMLSchemaDatatypes.rb
|
||||
%%RUBY_SITELIBDIR%%/soap/baseData.rb
|
||||
%%RUBY_SITELIBDIR%%/soap/cgistub.rb
|
||||
%%RUBY_SITELIBDIR%%/soap/driver.rb
|
||||
%%RUBY_SITELIBDIR%%/soap/element.rb
|
||||
%%RUBY_SITELIBDIR%%/soap/processor.rb
|
||||
%%RUBY_SITELIBDIR%%/soap/proxy.rb
|
||||
%%RUBY_SITELIBDIR%%/soap/rpcRouter.rb
|
||||
%%RUBY_SITELIBDIR%%/soap/rpcUtils.rb
|
||||
%%RUBY_SITELIBDIR%%/soap/soap.rb
|
||||
%%RUBY_SITELIBDIR%%/soap/streamHandler.rb
|
||||
%%RUBY_SITELIBDIR%%/soap/streamHandler_wo_http-access.rb
|
||||
@dirrm %%RUBY_SITELIBDIR%%/soap
|
||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/soap/apacheClient.rb
|
||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/soap/apacheServer.cgi
|
||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/soap/hippoClient.rb
|
||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/soap/RAA/SOAP::Lite.pl
|
||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/soap/RAA/pocketSOAP.js
|
||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/soap/RAA/soap4r.rb
|
||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/soap/RAA/soap4rApp.rb
|
||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/soap/RAA/xmlrpc4r.rb
|
||||
%%PORTDOCS%%@dirrm %%RUBY_EXAMPLESDIR%%/soap/RAA
|
||||
%%PORTDOCS%%@dirrm %%RUBY_EXAMPLESDIR%%/soap
|
||||
%%PORTDOCS%%%%RUBY_DOCDIR%%/soap/RELEASE_en.html
|
||||
%%PORTDOCS%%%%RUBY_DOCDIR%%/soap/rubyStyle.css
|
||||
%%PORTDOCS%%%%RUBY_DOCDIR%%/soap/ja/RELEASE_ja.html
|
||||
%%PORTDOCS%%@dirrm %%RUBY_DOCDIR%%/soap/ja
|
||||
%%PORTDOCS%%@dirrm %%RUBY_DOCDIR%%/soap
|
Loading…
Add table
Reference in a new issue