blob: f2921016f8c38ca2d5a8434f9611c506af9820c4 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/cellwriter/cellwriter-1.3.4.ebuild,v 1.3 2009/09/27 19:49:30 nixnut Exp $
DESCRIPTION="Grid-entry natural handwriting input panel"
HOMEPAGE="http://risujin.org/cellwriter/"
SRC_URI="http://pub.risujin.org/cellwriter/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="gnome"
RDEPEND="x11-libs/libXtst
>=x11-libs/gtk+-2.10
gnome? ( gnome-base/libgnome )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
x11-proto/inputproto"
src_compile() {
econf $(use_with gnome) || die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog NEWS README
}
|