blob: fccfc3089256d97e7fe69e48ccb7fd2f3a5376ea (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rflickr/rflickr-20060201.ebuild,v 1.2 2007/03/04 00:13:21 genone Exp $
inherit ruby gems
USE_RUBY="ruby18"
MY_P="${PN}-${PV:0:4}.${PV:4:2}.${PV:6:2}"
DESCRIPTION="A Ruby implementation of the Flickr API."
HOMEPAGE="http://rubyforge.org/projects/rflickr"
SRC_URI="http://gems.rubyforge.org/gems/${MY_P}.gem"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=">=dev-lang/ruby-1.8.4
dev-ruby/mime-types"
RDEPEND="${DEPEND}
dev-ruby/rake"
pkg_postinst() {
elog "In order to use this library, you need to have:"
elog
elog "1. A Yahoo!/Flickr account."
elog "2. A Flickr API key."
elog
elog "Visit http://www.flickr.com/services/api/ for more info."
}
|