diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2011-05-07 01:24:14 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2011-05-07 01:24:14 +0000 |
commit | 5dcd82bbc206d09fdc993bc9cc2354ed50c94b44 (patch) | |
tree | df64aa159f0dc1a5e084326ca466289d0a47c0bc /app-i18n/imsettings/imsettings-1.2.2.ebuild | |
parent | media-gfx/blender: Improve desktop files (diff) | |
download | historical-5dcd82bbc206d09fdc993bc9cc2354ed50c94b44.tar.gz historical-5dcd82bbc206d09fdc993bc9cc2354ed50c94b44.tar.bz2 historical-5dcd82bbc206d09fdc993bc9cc2354ed50c94b44.zip |
Version bumped.
Package-Manager: portage-2.1.9.46/cvs/Linux x86_64
Diffstat (limited to 'app-i18n/imsettings/imsettings-1.2.2.ebuild')
-rw-r--r-- | app-i18n/imsettings/imsettings-1.2.2.ebuild | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/app-i18n/imsettings/imsettings-1.2.2.ebuild b/app-i18n/imsettings/imsettings-1.2.2.ebuild new file mode 100644 index 000000000000..0879d685b81b --- /dev/null +++ b/app-i18n/imsettings/imsettings-1.2.2.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/imsettings/imsettings-1.2.2.ebuild,v 1.1 2011/05/07 01:24:14 matsuu Exp $ + +EAPI=3 + +DESCRIPTION="Delivery framework for general Input Method configuration" +HOMEPAGE="http://code.google.com/p/imsettings/" +SRC_URI="http://imsettings.googlecode.com/files/${P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc qt4 static-libs xfconf" + +# X11 connections are required for test. +RESTRICT="test" + +RDEPEND=">=dev-libs/check-0.9.4 + >=dev-libs/glib-2.26 + sys-apps/dbus + >=x11-libs/gtk+-2.12:2 + >=x11-libs/libgxim-0.3.1 + >=x11-libs/libnotify-0.7 + x11-libs/libX11 + qt4? ( x11-libs/qt-core:4 ) + xfconf? ( xfce-base/xfconf )" +DEPEND="${RDEPEND} + dev-util/pkgconfig + doc? ( dev-util/gtk-doc )" + +MY_XINPUTSH="90-xinput" + +src_prepare() { + # Prevent automagic linking to libxfconf-0. + if ! use xfconf; then + sed -i -e 's:libxfconf-0:dIsAbLe&:' configure || die + fi + if ! use qt4; then + sed -i -e 's:QtCore:dIsAbLe&:' configure || die + fi + + epatch "${FILESDIR}/${P}-gtk.patch" +} + +src_configure() { + econf \ + $(use_enable static-libs static) \ + --with-xinputsh="${MY_XINPUTSH}" +} + +src_install() { + emake DESTDIR="${D}" install || die + + find "${ED}" -name '*.la' -exec rm -f '{}' + + + fperms 0755 /usr/libexec/xinputinfo.sh || die + fperms 0755 "/etc/X11/xinit/xinitrc.d/${MY_XINPUTSH}" || die + + dodoc AUTHORS ChangeLog NEWS README || die +} + +pkg_postinst() { + if [ ! -e "${EPREFIX}/etc/X11/xinit/xinputrc" ] ; then + ln -sf xinput.d/xcompose.conf "${EPREFIX}/etc/X11/xinit/xinputrc" + fi +} |