blob: 938d1c99588a001b1e6930c00e7f0b14055fffb5 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/kanjipad/kanjipad-2.0.0.ebuild,v 1.1 2003/07/28 15:20:43 yakina Exp $
KEYWORDS="~x86"
DESCRIPTION="Japanese handwriting recognition tool"
HOMEPAGE="http://fishsoup.net/software/kanjipad/"
SRC_URI="http://fishsoup.net/software/kanjipad/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
DEPEND=">=x11-libs/gtk+-2
>=dev-libs/glib-2"
S=${WORKDIR}/${P}
src_compile() {
mv Makefile Makefile.orig
sed -e "s/PREFIX=\/usr\/local/PREFIX=\/usr/" Makefile.orig > Makefile
emake || die
}
src_install () {
dobin kanjipad kpengine || die
dodir /usr/share/kanjipad || die
insinto /usr/share/kanjipad
doins jdata.dat || die
dodoc COPYING ChangeLog README TODO jstroke/README-kanjipad
}
|