blob: 61ef06fb99bca6e8fedc758e0b767830cf12b77c (
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
34
35
36
37
38
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/flickr/flickr-1.0.2-r3.ebuild,v 1.1 2009/12/15 15:31:07 flameeyes Exp $
EAPI=2
USE_RUBY="ruby18 ruby19 jruby"
inherit ruby-fakegem
DESCRIPTION="An insanely easy interface to the Flickr photo-sharing service."
HOMEPAGE="http://rubyforge.org/projects/flickr/"
SRC_URI="mirror://gentoo/${P}-gentoo.tar.bz2"
S="${WORKDIR}/${P}-gentoo"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
# Tests fail for now, they don't seem to be designed to work just yet
RESTRICT="test"
ruby_add_rdepend dev-ruby/xml-simple
all_ruby_prepare() {
cd "${S}"/lib
epatch "${FILESDIR}/${P}-fix.patch"
epatch "${FILESDIR}/${P}-typo.patch"
}
all_ruby_install() {
if use doc; then
dohtml -r "${S}"/doc/* || die "dohtml failed"
fi
dohtml "${S}"/index.html || die "dohtml failed"
}
|