blob: c55dfb4902c5fa1dd6d783269b4df404c43d895e (
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
40
41
42
43
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/calcurse/calcurse-2.5.ebuild,v 1.1 2009/01/25 11:42:36 cedk Exp $
inherit eutils
DESCRIPTION="a text-based personal organizer"
HOMEPAGE="http://culot.org/calcurse/index.html"
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="linguas_en linguas_fr linguas_de linguas_es linguas_nl"
DEPEND="sys-libs/ncurses"
RDEPEND=${DEPEND}
src_unpack() {
unpack ${A}
cd "${S}"
rm po/LINGUAS
}
src_compile() {
local ALL_LINGUAS=""
use linguas_en && ALL_LINGUAS="${ALL_LINGUAS} en"
use linguas_fr && ALL_LINGUAS="${ALL_LINGUAS} fr"
use linguas_de && ALL_LINGUAS="${ALL_LINGUAS} de"
use linguas_es && ALL_LINGUAS="${ALL_LINGUAS} es"
use linguas_nl && ALL_LINGUAS="${ALL_LINGUAS} nl"
ALL_LINGUAS="${ALL_LINGUAS}" econf || die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog NEWS README TODO
dohtml doc/*.{html,css}
}
|