Update to 0.3.2.
This commit is contained in:
parent
4b31a03978
commit
be54add2e8
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=46437
3 changed files with 24 additions and 4 deletions
|
@ -6,7 +6,7 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
PORTNAME= ssl
|
PORTNAME= ssl
|
||||||
PORTVERSION= 0.3.1c
|
PORTVERSION= 0.3.2
|
||||||
CATEGORIES= security ruby
|
CATEGORIES= security ruby
|
||||||
MASTER_SITES= http://www.notwork.org/~gotoyuzo/ruby/src/
|
MASTER_SITES= http://www.notwork.org/~gotoyuzo/ruby/src/
|
||||||
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
||||||
|
@ -22,12 +22,27 @@ CONFIGURE_ARGS= --with-openssl-include="${OPENSSLBASE}/include/openssl" \
|
||||||
--with-openssl-lib="${OPENSSLBASE}/lib"
|
--with-openssl-lib="${OPENSSLBASE}/lib"
|
||||||
INSTALL_TARGET= site-install
|
INSTALL_TARGET= site-install
|
||||||
|
|
||||||
|
DOCS_EN= ChangeLog doc/ssl.html doc/ssl.rd
|
||||||
|
DOCS_JA= doc/ssl.ja.html doc/ssl.ja.rd
|
||||||
|
|
||||||
|
post-build:
|
||||||
|
.if !defined(NOPORTDOCS)
|
||||||
|
cd ${WRKSRC}; \
|
||||||
|
${RUBY_RD} doc/ssl.rd > doc/ssl.html; \
|
||||||
|
${RUBY_RD} doc/ssl.ja.rd > doc/ssl.ja.html
|
||||||
|
.endif
|
||||||
|
|
||||||
post-install:
|
post-install:
|
||||||
.if !defined(NOPORTDOCS)
|
.if !defined(NOPORTDOCS)
|
||||||
${MKDIR} ${RUBY_EXAMPLESDIR}/${PORTNAME}
|
${MKDIR} ${RUBY_EXAMPLESDIR}/${PORTNAME}
|
||||||
${INSTALL_DATA} ${WRKSRC}/sample/* ${RUBY_EXAMPLESDIR}/${PORTNAME}/
|
${INSTALL_DATA} ${WRKSRC}/sample/* ${RUBY_EXAMPLESDIR}/${PORTNAME}/
|
||||||
${MKDIR} ${RUBY_DOCDIR}/${PORTNAME}
|
${MKDIR} ${RUBY_DOCDIR}/${PORTNAME}/ja
|
||||||
${INSTALL_DATA} ${WRKSRC}/ChangeLog ${RUBY_DOCDIR}/${PORTNAME}/
|
.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
|
.endif
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
.include <bsd.port.mk>
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
MD5 (ruby/ssl-0.3.1c.tar.gz) = be81df1ab45b8260064a11b3c2ff11f5
|
MD5 (ruby/ssl-0.3.2.tar.gz) = a9743e897c54e28b64b725485f2f6d1a
|
||||||
|
|
|
@ -16,4 +16,9 @@
|
||||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/ssl/x509.rb
|
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/ssl/x509.rb
|
||||||
%%PORTDOCS%%@dirrm %%RUBY_EXAMPLESDIR%%/ssl
|
%%PORTDOCS%%@dirrm %%RUBY_EXAMPLESDIR%%/ssl
|
||||||
%%PORTDOCS%%%%RUBY_DOCDIR%%/ssl/ChangeLog
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/ssl/ChangeLog
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/ssl/ssl.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/ssl/ssl.rd
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/ssl/ja/ssl.ja.html
|
||||||
|
%%PORTDOCS%%%%RUBY_DOCDIR%%/ssl/ja/ssl.ja.rd
|
||||||
|
%%PORTDOCS%%@dirrm %%RUBY_DOCDIR%%/ssl/ja
|
||||||
%%PORTDOCS%%@dirrm %%RUBY_DOCDIR%%/ssl
|
%%PORTDOCS%%@dirrm %%RUBY_DOCDIR%%/ssl
|
||||||
|
|
Loading…
Reference in a new issue