blob: 379926b103883883f12732e9992021cf697834d6 (
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-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/motor/motor-3.2.4.ebuild,v 1.6 2004/06/25 02:41:16 agriffis Exp $
DESCRIPTION="text mode based programming environment for Linux"
HOMEPAGE="http://konst.org.ua/motor/"
SRC_URI="http://konst.org.ua/download/${P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc"
IUSE="nls"
DEPEND=">=sys-libs/ncurses-5.2
nls? ( sys-devel/gettext )"
src_compile() {
econf `use_enable nls` || die
emake || die
}
src_install() {
einstall || die
dodoc AUTHORS COPYING README TODO FAQ ChangeLog
docinto tutorial
dohtml -r tutorial/*
}
|