blob: 1062ca6f1c71c5d658ee9c82282c4ab7f0e27895 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ncurses-ruby/ncurses-ruby-1.2.3-r2.ebuild,v 1.2 2010/05/22 15:29:03 flameeyes Exp $
inherit ruby
DESCRIPTION="Ruby wrappers of ncurses and PDCurses libs"
HOMEPAGE="http://ncurses-ruby.berlios.de/"
SRC_URI="mirror://berlios/${PN}/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
USE_RUBY="ruby18"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="examples"
DEPEND=">=sys-libs/ncurses-5.3"
RDEPEND="${DEPEND}"
dofakegemspec() {
cat - > "${T}"/ncurses-${PV}.gemspec <<EOF
Gem::Specification.new do |s|
s.name = "ncurses"
s.version = "${PV}"
s.summary = "${DESCRIPTION}"
s.homepage = "${HOMEPAGE}"
end
EOF
insinto $(${RUBY} -r rbconfig -e 'print Config::CONFIG["sitelibdir"]' | sed -e 's:site_ruby:gems:')/specifications
doins "${T}"/ncurses-${PV}.gemspec || die "Unable to install fake gemspec"
}
src_install() {
ruby_src_install
dofakegemspec
}
|