blob: bfbc1f7c68c7c017c11980676005dff52d766bd7 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim/scim-0.4.1.ebuild,v 1.5 2003/08/05 15:39:31 vapier Exp $
inherit gnome2
DESCRIPTION="Smart Common Input Method (SCIM) is a Input Method (IM) development platform"
HOMEPAGE="http://www.turbolinux.com.cn/~suzhe/scim/"
SRC_URI="http://www.turbolinux.com.cn/~suzhe/scim/sources/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE="gnome"
RDEPEND="virtual/x11
gnome? ( >=gnome-base/gconf-1.2
>=dev-libs/libxml2-2.5
>=gnome-base/ORBit2-2 )
>=x11-libs/gtk+-2
>=dev-libs/atk-1
>=x11-libs/pango-1
>=dev-libs/glib-2"
DEPEND="${RDEPEND}
dev-lang/perl"
PDEPEND=">=app-i18n/scim-tables-0.2.1"
src_compile() {
local myconf
use gnome || myconf="--disable-config-gconf"
econf ${myconf} || die
emake || "make failed"
}
src_install() {
einstall || "install failed"
dodoc README AUTHORS ChangeLog docs/developers docs/scim.cfg
dohtml -r docs/html/*
}
SCROLLKEEPER_UPDATE="0"
|