blob: 561779510f877dcb452695615afa9bb239d8106c (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/dvorakng/dvorakng-0.6.0.ebuild,v 1.3 2004/03/14 10:59:03 mr_bones_ Exp $
DESCRIPTION="Dvorak typing tutor"
HOMEPAGE="http://freshmeat.net/projects/dvorakng/?topic_id=71%2C861"
SRC_URI="http://www.free.of.pl/n/nopik/${P}rc1.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc"
IUSE=""
DEPEND="sys-libs/ncurses"
S=${WORKDIR}/dvorakng
src_unpack() {
unpack ${A}
cd ${S}
}
src_compile() {
emake || die "Make failed"
}
src_install() {
dobin dvorakng
dodoc README TODO
}
|