blob: 8f4c058f3f00c748fd592e150384f260f29e2f5c (
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
39
40
41
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/png/png-1.2.0-r1.ebuild,v 1.4 2012/09/10 18:39:44 graaff Exp $
EAPI=4
USE_RUBY="ruby18 ruby19 ree18"
RUBY_FAKEGEM_TASK_DOC="docs"
RUBY_FAKEGEM_DOCDIR="doc"
RUBY_FAKEGEM_EXTRADOC="History.txt README.txt"
inherit ruby-fakegem
DESCRIPTION="An almost pure-Ruby Portable Network Graphics (PNG) library."
HOMEPAGE="http://rubyforge.org/projects/seattlerb/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
ruby_add_bdepend "
doc? ( dev-ruby/hoe )
test? (
dev-ruby/hoe
dev-ruby/minitest
)"
ruby_add_rdepend ">=dev-ruby/RubyInline-3.5.0"
src_test() {
chmod 0755 "${HOME}" || die "Failed to fix permissions on home."
ruby-ng_src_test
}
all_ruby_install() {
all_fakegem_install
insinto /usr/share/doc/${PF}
doins -r example
}
|