# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-i18n/scim-pinyin/scim-pinyin-0.5.91-r2.ebuild,v 1.1 2008/06/21 04:41:44 matsuu Exp $ WANT_AUTOCONF=latest WANT_AUTOMAKE=latest inherit kde-functions eutils autotools DESCRIPTION="Smart Common Input Method (SCIM) Smart Pinyin Input Method" HOMEPAGE="http://www.scim-im.org/" SRC_URI="mirror://sourceforge/scim/${P}.tar.gz" IUSE="kde nls" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86" RDEPEND="x11-libs/libXt || ( >=app-i18n/scim-1.1 >=app-i18n/scim-cvs-1.1 ) kde? ( app-i18n/skim ) nls? ( virtual/libintl )" DEPEND="${RDEPEND} dev-util/pkgconfig nls? ( sys-devel/gettext )" src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}/${P}-fixconfigure.patch" epatch "${FILESDIR}/${PN}-qt335.patch" epatch "${FILESDIR}/${P}-gcc43.patch" AT_M4DIR=m4 AT_NO_RECURSIVE=yes eautoreconf pushd ${S}/src && \ for i in $(ls *.cpp); do sed -i "/#include /a \ #include " $i done popd } src_compile() { econf \ $(use_enable nls) \ $(use_enable kde skim-support) \ --without-arts \ --disable-static \ --disable-depedency-tracking \ || die "econf failed" emake || die "emake failed" } src_install() { emake DESTDIR="${D}" install || die "make install failed" dodoc AUTHROS NEWS README ChangeLog }