blob: 02708a9bf2063523bd675965e8cf3f1406acb587 (
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
|
# Copyright 1999-2013 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-r2.ebuild,v 1.1 2013/06/21 14:25:06 prometheanfire 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"
"${FILESDIR}/${P}-optional-exec.patch" )
each_ruby_install() {
make DESTDIR="${D}" install || die "make install failed"
}
|