blob: 5c3c5781ab640d8b1beb1e5a7f4a445ac7dfb700 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/minichinput/minichinput-0.1.9.ebuild,v 1.4 2004/06/14 07:20:40 kloeri Exp $
inherit eutils
MY_P=${P/minichinput/miniChinput}
DESCRIPTION="Chinese Input Method. Replaces Chinput as a smaller package without the dependency on unicon."
HOMEPAGE="http://www-scf.usc.edu/~bozhang/miniChinput/ http://sourceforge.net/projects/minichinput/"
SRC_URI="mirror://sourceforge/minichinput/${MY_P}.tar.gz
mirror://sourceforge/minichinput/${MY_P}-rxvt.patch"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
DEPEND="virtual/x11
virtual/xft
media-libs/fontconfig
>=media-libs/imlib-1.9.13
!app-i18n/chinput"
S=${WORKDIR}/${MY_P}
src_unpack() {
unpack ${MY_P}.tar.gz
epatch ${DISTDIR}/${MY_P}-rxvt.patch
}
src_compile() {
econf || die "configure failed"
emake || die "make failed"
emake data || die "make data failed"
}
src_install() {
make prefix=${D}/usr \
packagename=${P} \
mandir=share/man/man1 \
install|| die "install failed"
make prefix=${D}/usr data-install || die "install data failed"
}
|