Gentoo Archives: gentoo-commits

From: "Naohiro Aota (naota)" <naota@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-i18n/imsettings: imsettings-1.6.8.ebuild ChangeLog
Date: Sat, 07 Feb 2015 13:39:13
Message-Id: 20150207133909.1590011408@oystercatcher.gentoo.org
1 naota 15/02/07 13:39:09
2
3 Modified: ChangeLog
4 Added: imsettings-1.6.8.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key F8551514)
9
10 Revision Changes Path
11 1.17 app-i18n/imsettings/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/imsettings/ChangeLog?rev=1.17&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/imsettings/ChangeLog?rev=1.17&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/imsettings/ChangeLog?r1=1.16&r2=1.17
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-i18n/imsettings/ChangeLog,v
20 retrieving revision 1.16
21 retrieving revision 1.17
22 diff -u -r1.16 -r1.17
23 --- ChangeLog 10 Jan 2014 10:13:52 -0000 1.16
24 +++ ChangeLog 7 Feb 2015 13:39:09 -0000 1.17
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-i18n/imsettings
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/imsettings/ChangeLog,v 1.16 2014/01/10 10:13:52 naota Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/imsettings/ChangeLog,v 1.17 2015/02/07 13:39:09 naota Exp $
31 +
32 +*imsettings-1.6.8 (07 Feb 2015)
33 +
34 + 07 Feb 2015; Naohiro Aota <naota@g.o> +imsettings-1.6.8.ebuild:
35 + version bump
36
37 10 Jan 2014; Naohiro Aota <naota@g.o>
38 +files/imsettings-1.5.0-gir-scanner.patch, imsettings-1.5.0.ebuild:
39
40
41
42 1.1 app-i18n/imsettings/imsettings-1.6.8.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/imsettings/imsettings-1.6.8.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-i18n/imsettings/imsettings-1.6.8.ebuild?rev=1.1&content-type=text/plain
46
47 Index: imsettings-1.6.8.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-i18n/imsettings/imsettings-1.6.8.ebuild,v 1.1 2015/02/07 13:39:09 naota Exp $
52
53 EAPI=5
54
55 inherit eutils autotools
56
57 DESCRIPTION="Delivery framework for general Input Method configuration"
58 HOMEPAGE="http://tagoh.bitbucket.org/imsettings/"
59 SRC_URI="https://bitbucket.org/tagoh/imsettings/downloads/${P}.tar.bz2"
60
61 LICENSE="LGPL-2.1"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="doc gconf gtk3 qt4 static-libs xfconf"
65
66 # X11 connections are required for test.
67 RESTRICT="test"
68
69 RDEPEND=">=dev-libs/check-0.9.4
70 >=dev-libs/glib-2.32
71 sys-apps/dbus
72 >=x11-libs/gtk+-2.12:2
73 >=x11-libs/libgxim-0.5.0
74 >=x11-libs/libnotify-0.7
75 x11-libs/libX11
76 gconf? ( gnome-base/gconf )
77 gtk3? ( x11-libs/gtk+:3 )
78 qt4? ( dev-qt/qtcore:4 )
79 xfconf? ( xfce-base/xfconf )"
80 DEPEND="${RDEPEND}
81 virtual/pkgconfig
82 dev-util/intltool
83 doc? ( dev-util/gtk-doc )"
84
85 MY_XINPUTSH="90-xinput"
86
87 DOCS=( AUTHORS ChangeLog NEWS README )
88
89 src_prepare() {
90 # Prevent automagic linking to libxfconf-0.
91 if ! use gconf; then
92 sed -i -e 's:gconf-2.0:dIsAbLe&:' configure || die
93 fi
94 if ! use gtk3; then
95 sed -i -e 's:gtk+-3.0:dIsAbLe&:' configure || die
96 fi
97 if ! use qt4; then
98 sed -i -e 's:use_qt="yes":use_qt="no":' configure || die
99 fi
100 if ! use xfconf; then
101 sed -i -e 's:libxfconf-0:dIsAbLe&:' configure || die
102 fi
103 }
104
105 src_configure() {
106 econf \
107 $(use_enable static-libs static) \
108 --with-xinputsh="${MY_XINPUTSH}"
109 }
110
111 src_install() {
112 default
113
114 find "${ED}" -name '*.la' -exec rm -f '{}' +
115
116 fperms 0755 /usr/libexec/xinputinfo.sh
117 fperms 0755 "/etc/X11/xinit/xinitrc.d/${MY_XINPUTSH}"
118 }
119
120 pkg_postinst() {
121 if [ ! -e "${EPREFIX}/etc/X11/xinit/xinputrc" ] ; then
122 ln -sf xinput.d/xcompose.conf "${EPREFIX}/etc/X11/xinit/xinputrc"
123 fi
124 }