summaryrefslogtreecommitdiff
blob: 534db5f18fa5f56a5af16e92f4499297f70966f9 (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-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/httpclient/httpclient-2.1.2.ebuild,v 1.2 2007/12/27 21:53:41 ticho 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="any"

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
}