blob: 17f74964c1d55d44269dce5f14ea66fb83da0bb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/Ruby-MemCache/Ruby-MemCache-0.0.4.ebuild,v 1.1 2006/06/24 19:38:28 flameeyes Exp $
inherit ruby
DESCRIPTION="memcache bindings for Ruby"
HOMEPAGE="http://www.deveiate.org/projects/RMemCache/"
SRC_URI="http://www.deveiate.org/code/${P}.tar.bz2"
LICENSE="Ruby"
SLOT="0"
KEYWORDS="~amd64 ~x86-fbsd"
IUSE=""
RDEPEND="dev-ruby/IO-Reactor"
src_compile() {
return 0 # Nothing to do
}
src_install() {
insinto "$(${RUBY} -r rbconfig -e 'print Config::CONFIG["sitelibdir"]')"
doins lib/memcache.rb
erubydoc
}
|