blob: 22888392ca3f47264f295fcbb240451a20dc3ada (
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
36
37
38
39
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/wyrd/wyrd-1.4.2.ebuild,v 1.1 2007/05/26 10:58:39 tove Exp $
inherit eutils
DESCRIPTION="Text-based front-end to Remind"
HOMEPAGE="http://www.eecs.umich.edu/~pelzlpj/wyrd/"
SRC_URI="http://www.eecs.umich.edu/~pelzlpj/wyrd/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="unicode"
DEPEND=">=dev-lang/ocaml-3.08
sys-libs/ncurses
>=x11-misc/remind-03.00.24"
pkg_setup() {
use unicode || return 0
if ! built_with_use sys-libs/ncurses unicode ; then
eerror "To use unicode in wyrd you must build sys-libs/ncurses"
eerror "with unicode support."
die "Please rebuilt sys-libs/ncurses with unicode in USE!"
fi
}
src_compile() {
econf $(use_enable unicode utf8 ) || die "configure failed"
emake || die "make failed"
}
src_install() {
make DESTDIR="${D}" install || die "install died"
dodoc ChangeLog || die "dodoc failed"
dohtml doc/manual.html || die "dohtml failed"
}
|