blob: 52306cd0450a3e01492b29b1f79af5982ffa557b (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-tables/scim-tables-0.5.6.ebuild,v 1.2 2006/07/03 18:59:44 flameeyes Exp $
inherit kde-functions autotools
DESCRIPTION="Smart Common Input Method (SCIM) Generic Table Input Method Server"
HOMEPAGE="http://www.scim-im.org/"
SRC_URI="mirror://sourceforge/scim/${P}.tar.gz
mirror://gentoo/kde-admindir-3.5.3.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
IUSE="kde"
RDEPEND="|| ( x11-libs/libXt virtual/x11 )
|| ( >=app-i18n/scim-1.1 >=app-i18n/scim-cvs-1.1 )
!alpha? ( !sparc? ( kde? ( app-i18n/skim ) ) )"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
RESTRICT="confcache"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-fixconfigure.patch"
epatch "${FILESDIR}/${PN}-qt335.patch"
AT_NO_RECURSIVE=yes eautoreconf
}
src_compile() {
econf \
$(use_enable kde skim-support) \
--without-arts || die "econf failed"
emake || die "make failed"
}
src_install() {
emake DESTDIR="${D}" install || die "install failed"
dodoc README ChangeLog AUTHORS
}
|