diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2011-01-08 06:15:28 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2011-01-08 06:15:28 +0000 |
commit | 62ed256f7384ffdb74a55d7debbb92147f112e3d (patch) | |
tree | bb4aa28e1bdbdf7864bdf2366e42d783b4f04c0d /app-i18n/imsettings/imsettings-1.0.0.ebuild | |
parent | Fix ldflags wrt bug #351017 (diff) | |
download | gentoo-2-62ed256f7384ffdb74a55d7debbb92147f112e3d.tar.gz gentoo-2-62ed256f7384ffdb74a55d7debbb92147f112e3d.tar.bz2 gentoo-2-62ed256f7384ffdb74a55d7debbb92147f112e3d.zip |
Initial import.
(Portage version: 2.1.9.28/cvs/Linux x86_64)
Diffstat (limited to 'app-i18n/imsettings/imsettings-1.0.0.ebuild')
-rw-r--r-- | app-i18n/imsettings/imsettings-1.0.0.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/app-i18n/imsettings/imsettings-1.0.0.ebuild b/app-i18n/imsettings/imsettings-1.0.0.ebuild new file mode 100644 index 000000000000..f66a7395ab37 --- /dev/null +++ b/app-i18n/imsettings/imsettings-1.0.0.ebuild @@ -0,0 +1,52 @@ +# 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.0.0.ebuild,v 1.1 2011/01/08 06:15:28 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="qt4 static-libs xfce" + +# 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 + x11-libs/libX11 + qt4? ( x11-libs/qt-core:4 ) + xfce? ( xfce-base/xfconf )" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +MY_XINPUTSH="90-xinput" + +src_configure() { + econf \ + $(use_enable static-libs static) \ + --with-xinputsh="${MY_XINPUTSH}" || die +} + +src_install() { + emake DESTDIR="${D}" install || die + + 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 +} |