mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +00:00
Add ruby-cache, a Ruby library for caching objects based on the LRU
algorithm.
This commit is contained in:
parent
4a8fa77077
commit
18d4470677
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=70752
@ -712,6 +712,7 @@
|
||||
SUBDIR += ruby-avl
|
||||
SUBDIR += ruby-bsearch
|
||||
SUBDIR += ruby-byaccr
|
||||
SUBDIR += ruby-cache
|
||||
SUBDIR += ruby-calendar
|
||||
SUBDIR += ruby-cvs
|
||||
SUBDIR += ruby-date2
|
||||
|
37
devel/ruby-cache/Makefile
Normal file
37
devel/ruby-cache/Makefile
Normal file
@ -0,0 +1,37 @@
|
||||
# New ports collection makefile for: Ruby/Cache
|
||||
# Date created: 22 November 2002
|
||||
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= cache
|
||||
PORTVERSION= 0.2
|
||||
CATEGORIES= devel ruby
|
||||
MASTER_SITES= http://savannah.nongnu.org/download/pupa/ruby-cache.pkg/${PORTVERSION}/
|
||||
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
||||
DISTNAME= ruby-${PORTNAME}-${PORTVERSION}
|
||||
DIST_SUBDIR= ruby
|
||||
|
||||
MAINTAINER= knu@FreeBSD.org
|
||||
|
||||
USE_RUBY= yes
|
||||
USE_RUBY_SETUP= yes
|
||||
RUBY_SETUP= install.rb
|
||||
|
||||
RUBY_RD_FILES= ${WRKSRC}/MANUAL.rd ${WRKSRC}/README.rd
|
||||
DOCS= ${RUBY_RD_FILES} ${RUBY_RD_HTML_FILES}
|
||||
|
||||
post-install: doc-install
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
||||
doc-install:
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${RUBY_MODDOCDIR}
|
||||
.for f in ${DOCS}
|
||||
${INSTALL_DATA} ${f} ${RUBY_MODDOCDIR}/
|
||||
.endfor
|
||||
${MKDIR} ${RUBY_MODEXAMPLESDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/sample/*.rb ${RUBY_MODEXAMPLESDIR}/
|
||||
.endif
|
1
devel/ruby-cache/distinfo
Normal file
1
devel/ruby-cache/distinfo
Normal file
@ -0,0 +1 @@
|
||||
MD5 (ruby/ruby-cache-0.2.tar.gz) = 879c8f4ba70f84c865655a6243f4004f
|
1
devel/ruby-cache/pkg-comment
Normal file
1
devel/ruby-cache/pkg-comment
Normal file
@ -0,0 +1 @@
|
||||
A Ruby library for caching objects based on the LRU algorithm
|
5
devel/ruby-cache/pkg-descr
Normal file
5
devel/ruby-cache/pkg-descr
Normal file
@ -0,0 +1,5 @@
|
||||
Ruby/Cache is a library for caching objects based on the LRU algorithm
|
||||
for Ruby.
|
||||
|
||||
Author: Yoshinori K. Okuji <okuji@enbug.org>
|
||||
WWW: http://www.nongnu.org/pupa/ruby-cache.html
|
8
devel/ruby-cache/pkg-plist
Normal file
8
devel/ruby-cache/pkg-plist
Normal file
@ -0,0 +1,8 @@
|
||||
%%RUBY_SITELIBDIR%%/cache.rb
|
||||
%%PORTDOCS%%%%RUBY_MODDOCDIR%%/MANUAL.html
|
||||
%%PORTDOCS%%%%RUBY_MODDOCDIR%%/MANUAL.rd
|
||||
%%PORTDOCS%%%%RUBY_MODDOCDIR%%/README.html
|
||||
%%PORTDOCS%%%%RUBY_MODDOCDIR%%/README.rd
|
||||
%%PORTDOCS%%@dirrm %%RUBY_MODDOCDIR%%
|
||||
%%PORTDOCS%%%%RUBY_MODEXAMPLESDIR%%/filecache.rb
|
||||
%%PORTDOCS%%@dirrm %%RUBY_MODEXAMPLESDIR%%
|
Loading…
Reference in New Issue
Block a user