blob: cbe45a56a41d47e4bfe21b2ab43b9b6fab024b3c (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/aldo/aldo-0.6.7.ebuild,v 1.3 2006/09/29 20:51:35 wormo Exp $
DESCRIPTION="a morse tutor"
HOMEPAGE="http://savannah.nongnu.org/projects/aldo"
SRC_URI="http://savannah.nongnu.org/download/aldo/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc ~x86"
IUSE=""
DEPEND="virtual/libc
sys-libs/ncurses"
src_compile() {
# Fix Makefile to use ncurses instead of termcap (bug #103105)
sed -i -e 's~termcap~ncurses~' Makefile
make libs || die
make aldo || die
}
src_install() {
dobin aldo || die
dodoc README* TODO VERSION AUTHORS ChangeLog
}
|