mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Add ruby-svg, a Ruby library for generating SVG files.
This commit is contained in:
parent
27b3373b18
commit
44508718f5
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=62592
6 changed files with 68 additions and 0 deletions
|
@ -309,6 +309,7 @@
|
|||
SUBDIR += ruby-opengl
|
||||
SUBDIR += ruby-pgplot
|
||||
SUBDIR += ruby-qt2gl
|
||||
SUBDIR += ruby-svg
|
||||
SUBDIR += ruby-tgif
|
||||
SUBDIR += s10sh
|
||||
SUBDIR += sane-backends
|
||||
|
|
43
graphics/ruby-svg/Makefile
Normal file
43
graphics/ruby-svg/Makefile
Normal file
|
@ -0,0 +1,43 @@
|
|||
# New ports collection makefile for: Ruby/SVG
|
||||
# Date created: 8 July 2002
|
||||
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= svg
|
||||
PORTVERSION= 1.0.0
|
||||
CATEGORIES= graphics ruby
|
||||
MASTER_SITES= http://downloads.sourceforge.jp/ruby-svg/509/
|
||||
MASTER_SITE_SUBDIR= knu
|
||||
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
||||
DISTNAME= ruby-${PORTNAME}-${PORTVERSION}
|
||||
DIST_SUBDIR= ruby
|
||||
|
||||
MAINTAINER= knu@FreeBSD.org
|
||||
|
||||
RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR}/zlib.so:${PORTSDIR}/archivers/ruby-zlib
|
||||
|
||||
USE_RUBY= yes
|
||||
|
||||
NO_BUILD= yes
|
||||
|
||||
DOCS_EN= doc/README.en.rd
|
||||
DOCS_JA= doc/README.ja.rd
|
||||
|
||||
do-install:
|
||||
${MKDIR} ${RUBY_SITELIBDIR}/svg
|
||||
${INSTALL_DATA} ${WRKSRC}/lib/svg/*.rb ${RUBY_SITELIBDIR}/svg/
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${RUBY_EXAMPLESDIR}/${PORTNAME}
|
||||
${INSTALL_DATA} ${WRKSRC}/sample/*.rb ${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
graphics/ruby-svg/distinfo
Normal file
1
graphics/ruby-svg/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (ruby/ruby-svg-1.0.0.tar.gz) = 432e5fd2b9d5a47d82b221becb055a87
|
1
graphics/ruby-svg/pkg-comment
Normal file
1
graphics/ruby-svg/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
A Ruby library for generating SVG files
|
4
graphics/ruby-svg/pkg-descr
Normal file
4
graphics/ruby-svg/pkg-descr
Normal file
|
@ -0,0 +1,4 @@
|
|||
This is a Ruby library for generating SVG files.
|
||||
|
||||
Author: Yuya <yuya@4th.to>
|
||||
WWW: http://sourceforge.jp/projects/ruby-svg/
|
18
graphics/ruby-svg/pkg-plist
Normal file
18
graphics/ruby-svg/pkg-plist
Normal file
|
@ -0,0 +1,18 @@
|
|||
%%RUBY_SITELIBDIR%%/svg/core.rb
|
||||
%%RUBY_SITELIBDIR%%/svg/element.rb
|
||||
%%RUBY_SITELIBDIR%%/svg/misc.rb
|
||||
%%RUBY_SITELIBDIR%%/svg/style.rb
|
||||
%%RUBY_SITELIBDIR%%/svg/svg.rb
|
||||
@dirrm %%RUBY_SITELIBDIR%%/svg
|
||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/svg/sample1.rb
|
||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/svg/sample2.rb
|
||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/svg/sample3.rb
|
||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/svg/sample4.rb
|
||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/svg/sample5.rb
|
||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/svg/sample6.rb
|
||||
%%PORTDOCS%%%%RUBY_EXAMPLESDIR%%/svg/sample7.rb
|
||||
%%PORTDOCS%%@dirrm %%RUBY_EXAMPLESDIR%%/svg
|
||||
%%PORTDOCS%%%%RUBY_DOCDIR%%/svg/README.en.rd
|
||||
%%PORTDOCS%%%%RUBY_DOCDIR%%/svg/ja/README.ja.rd
|
||||
%%PORTDOCS%%@dirrm %%RUBY_DOCDIR%%/svg/ja
|
||||
%%PORTDOCS%%@dirrm %%RUBY_DOCDIR%%/svg
|
Loading…
Add table
Reference in a new issue