blob: 378c36d6f0b2323a31aa1b93df463a26374f3c5b (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/cellwriter/cellwriter-1.3.1.ebuild,v 1.1 2007/11/18 00:54:56 matsuu 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 ~x86"
IUSE="gnome"
RDEPEND="x11-libs/libXtst
>=x11-libs/gtk+-2.10
gnome? ( gnome-base/libgnome )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
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
}
|