blob: f10f83257a1a414c87d5b6ac5c0b9823aad0b340 (
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
|
# Copyright 1999-2009 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.ebuild,v 1.4 2009/12/20 11:11:47 graaff Exp $
inherit eutils ruby
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"
USE_RUBY="ruby18"
RDEPEND="
dev-ruby/ncurses-ruby
figlet? ( app-misc/figlet )"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-Makefile.patch"
}
src_compile() {
true
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
}
|