1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00

Add ruby-cache, a Ruby library for caching objects based on the LRU

algorithm.
This commit is contained in:
Akinori MUSHA 2002-11-22 17:48:11 +00:00
parent 4a8fa77077
commit 18d4470677
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=70752
6 changed files with 53 additions and 0 deletions

View File

@ -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
View 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

View File

@ -0,0 +1 @@
MD5 (ruby/ruby-cache-0.2.tar.gz) = 879c8f4ba70f84c865655a6243f4004f

View File

@ -0,0 +1 @@
A Ruby library for caching objects based on the LRU algorithm

View 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

View 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%%