blob: 83a3c7b8363b52d1fef02e32bde30601e09b2800 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-i18n/ibus-qt/ibus-qt-1.2.0.20091014.ebuild,v 1.1 2009/10/17 17:15:10 matsuu Exp $
EAPI="1"
inherit cmake-utils multilib
MY_P="${P}-Source"
DESCRIPTION="Qt IBus library and Qt input method plugin"
HOMEPAGE="http://code.google.com/p/ibus/"
SRC_URI="http://ibus.googlecode.com/files/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=app-i18n/ibus-1.2
>=sys-apps/dbus-1.2
>=x11-libs/qt-core-4.5:4
>=x11-libs/qt-core-4.5:4
>=x11-libs/qt-dbus-4.5:4"
DEPEND="${RDEPEND}
>=dev-libs/icu-4
dev-util/cmake
dev-util/pkgconfig"
S="${WORKDIR}/${MY_P}"
DOCS="AUTHORS README TODO"
mycmakeargs="-DLIBDIR=$(get_libdir)"
|