blob: b68c44150e7d53c889d073f5bf1e4bc9fd84980c (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/rcairo/rcairo-1.0.0.ebuild,v 1.3 2006/03/30 15:47:36 fmccor Exp $
inherit ruby
IUSE="examples"
DESCRIPTION="Ruby bindings for cairo"
HOMEPAGE="http://cairographics.org"
SRC_URI="http://cairographics.org/releases/${P}.tar.gz"
SLOT="0"
USE_RUBY="ruby18"
LICENSE="Ruby"
KEYWORDS="~ia64 ~sparc ~x86"
DEPEND=">=x11-libs/cairo-1.0.0"
src_install() {
ruby_src_install --prefix=${D}
if `use examples`; then
insinto /usr/share/doc/${PF}/samples
doins samples/*
fi
}
|