blob: 9f6867a82e51dc98cb452a42fd4361b4c0362cf6 (
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
28
29
30
31
32
33
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/httpclient/httpclient-2.1.5.2.ebuild,v 1.1 2009/08/23 07:47:49 graaff Exp $
inherit ruby
DESCRIPTION="'httpclient' gives something like the functionality of libwww-perl (LWP) in Ruby"
HOMEPAGE="http://dev.ctor.org/http-access2/"
SRC_URI="http://dev.ctor.org/download/${P}.tar.gz"
LICENSE="Ruby"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
IUSE=""
USE_RUBY="1.8"
S="${WORKDIR}/${P}"
RDEPEND="!dev-ruby/http-access2"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i -e "s%^SITELIBDIR = %SITELIBDIR = \"${D}\" + %" install.rb
}
src_compile() { :; }
src_install() {
my_sitedir=$(ruby -rrbconfig -e 'print Config::CONFIG["sitedir"]')
mkdir -p "${D}/${my_sitedir}/1.8"
ruby install.rb
erubydoc
}
|