55 lines
1.1 KiB
Bash
55 lines
1.1 KiB
Bash
|
# Copyright 1999-2010 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.20091217.ebuild,v 1.3 2010/05/26 10:38:16 pacho Exp $
|
||
|
|
||
|
EAPI="2"
|
||
|
inherit cmake-utils eutils 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="doc"
|
||
|
|
||
|
RDEPEND=">=app-i18n/ibus-1.2
|
||
|
>=sys-apps/dbus-1.2
|
||
|
x11-libs/libX11
|
||
|
>=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
|
||
|
doc? ( app-doc/doxygen )"
|
||
|
|
||
|
S="${WORKDIR}/${MY_P}"
|
||
|
|
||
|
DOCS="AUTHORS README TODO"
|
||
|
|
||
|
mycmakeargs="-DLIBDIR=$(get_libdir) -DDOCDIR=/usr/share/doc/${PF} all"
|
||
|
|
||
|
src_prepare() {
|
||
|
epatch "${FILESDIR}/${P}-doc.patch"
|
||
|
}
|
||
|
|
||
|
src_compile() {
|
||
|
cmake-utils_src_compile
|
||
|
|
||
|
if use doc ; then
|
||
|
cd "${CMAKE_BUILD_DIR}"
|
||
|
emake docs || die
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
src_install() {
|
||
|
if use doc ; then
|
||
|
HTML_DOCS="${CMAKE_BUILD_DIR}/docs/html/*"
|
||
|
fi
|
||
|
|
||
|
cmake-utils_src_install
|
||
|
}
|