blob: c3684d80a71b32d0d07fe0163b1087723c48085e (
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
44
45
46
47
48
49
50
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/katoob/katoob-0.5.4.ebuild,v 1.2 2006/11/20 23:32:24 leonardop Exp $
inherit eutils
DESCRIPTION="A light-weight multilingual BiDi aware text editor"
HOMEPAGE="http://foolab.org/projects/katoob"
SRC_URI="ftp://foolab.org/pub/software/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc ~x86"
IUSE="bidi bzip2 cups dbus debug spell"
RDEPEND=">=dev-cpp/gtkmm-2.6
>=dev-libs/glib-2
spell? ( app-text/aspell )
bidi? ( dev-libs/fribidi )
cups? (
>=net-print/cups-1.1.23
>=x11-libs/pango-1 )
bzip2? ( app-arch/bzip2 )
dbus? ( || (
dev-libs/dbus-glib
~sys-apps/dbus-0.62 ) )"
DEPEND="${RDEPEND}
>=dev-util/intltool-0.28
>=dev-util/pkgconfig-0.9"
src_compile() {
local myconf="$(use_enable spell aspell) \
$(use_enable bidi fribidi) \
$(use_enable cups print) \
$(use_enable bzip2) \
$(use_enable dbus) \
$(use_enable !debug release)"
econf ${myconf} || die "econf failed"
emake || die "Compilation failed"
}
src_install() {
make DESTDIR="${D}" install || die "Installation failed"
dodoc AUTHORS ChangeLog NEWS README THANKS TODO
}
|