blob: fd4fa6935af6ba859b2d3d9b2024cf97e8de024a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/xmpp4r/xmpp4r-0.3.ebuild,v 1.2 2007/01/21 08:25:10 pclouds Exp $
RUBY_BUG_145222=yes
inherit ruby
DESCRIPTION="An XMPP library for Ruby"
HOMEPAGE="http://home.gna.org/xmpp4r/"
SRC_URI="http://download.gna.org/xmpp4r/${P}.tgz"
LICENSE="Ruby"
SLOT="0"
KEYWORDS="~x86"
IUSE="examples"
DEPEND=">=dev-lang/ruby-1.8"
src_unpack() {
ruby_src_unpack
use examples || rm -r ${S}/data/doc/xmpp4r/examples
mv ${S}/data/doc/xmpp4r ${S}/data/doc/${PF}
}
|