Add ruby-memcache, a memcached client library for Ruby.

This commit is contained in:
Akinori MUSHA 2004-12-25 20:05:07 +00:00
parent 80ed5116f9
commit 264446ca3e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=125158
5 changed files with 50 additions and 0 deletions

View File

@ -313,6 +313,7 @@
SUBDIR += ruby-gdbm
SUBDIR += ruby-interbase
SUBDIR += ruby-libgda
SUBDIR += ruby-memcache
SUBDIR += ruby-msql
SUBDIR += ruby-mysql
SUBDIR += ruby-o_dbm

View File

@ -0,0 +1,34 @@
# New ports collection makefile for: Ruby/memcache
# Date created: 26 December 2004
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
#
# $FreeBSD$
#
PORTNAME= memcache
PORTVERSION= 0.0.2
CATEGORIES= databases ruby
MASTER_SITES= http://www.deveiate.org/code/
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
DISTNAME= Ruby-MemCache-${PORTVERSION}
DIST_SUBDIR= ruby
MAINTAINER= knu@FreeBSD.org
COMMENT= A memcached client library for Ruby
USE_RUBY= yes
NO_BUILD= yes
DOCS= README
do-install:
cd ${WRKSRC}; ${RUBY} install.rb
.if !defined(NOPORTDOCS)
${MKDIR} ${RUBY_MODDOCDIR}
.for f in ${DOCS}
${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/
.endfor
.endif
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
MD5 (ruby/Ruby-MemCache-0.0.2.tar.gz) = 8f527df0e47fe69822b71c580bbc5506
SIZE (ruby/Ruby-MemCache-0.0.2.tar.gz) = 31505

View File

@ -0,0 +1,10 @@
This is a client library for memcached (www.danga.com/memcached/), a
high-performance distributed memory cache.
MemCache is used to alleviate database load by caching oft-used values
in network-accessable memory space, and is used behind several
high-traffic dynamic web sites like LiveJournal, Slashdot, WikiPedia,
and others.
Author: Michael Granger <ged-raa@FaerieMUD.org>
WWW: http://www.deveiate.org/code/Ruby-MemCache.html

View File

@ -0,0 +1,3 @@
%%RUBY_SITELIBDIR%%/memcache.rb
%%PORTDOCS%%%%RUBY_MODDOCDIR%%/README
%%PORTDOCS%%@dirrm %%RUBY_MODDOCDIR%%