blob: aa762c920abb97342d61a4287e9558bbf74f3083 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/tpp/tpp-1.3.1-r1.ebuild,v 1.2 2010/11/08 07:54:12 phajdan.jr Exp $
EAPI=2
USE_RUBY="ruby18"
inherit eutils ruby-ng
DESCRIPTION="An ncurses-based presentation tool."
HOMEPAGE="http://synflood.at/tpp.html"
SRC_URI="http://synflood.at/tpp/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE="figlet"
RDEPEND="${RDEPEND} figlet? ( app-misc/figlet )"
ruby_add_rdepend "dev-ruby/ncurses-ruby"
RUBY_PATCHES=( "${FILESDIR}/${P}-Makefile.patch" )
each_ruby_install() {
make DESTDIR="${D}" install || die "make install failed"
}
|