Gentoo Archives: gentoo-commits

From: "Matsuu Takuto (matsuu)" <matsuu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-i18n/xvnkb: ChangeLog xvnkb-0.2.9a-r1.ebuild xvnkb-0.2.9.ebuild
Date: Thu, 30 Oct 2008 15:27:57
Message-Id: E1KvZRA-0001Z5-68@stork.gentoo.org
1 matsuu 08/10/30 15:27:52
2
3 Modified: ChangeLog
4 Added: xvnkb-0.2.9a-r1.ebuild
5 Removed: xvnkb-0.2.9.ebuild
6 Log:
7 Added CC variable, bug #243600. Removed old version.
8 (Portage version: 2.2_rc12/cvs/Linux 2.6.27-gentoo x86_64)
9
10 Revision Changes Path
11 1.19 app-i18n/xvnkb/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/xvnkb/ChangeLog?rev=1.19&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/xvnkb/ChangeLog?rev=1.19&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/xvnkb/ChangeLog?r1=1.18&r2=1.19
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-i18n/xvnkb/ChangeLog,v
20 retrieving revision 1.18
21 retrieving revision 1.19
22 diff -u -r1.18 -r1.19
23 --- ChangeLog 16 Aug 2008 17:06:05 -0000 1.18
24 +++ ChangeLog 30 Oct 2008 15:27:52 -0000 1.19
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-i18n/xvnkb
27 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/xvnkb/ChangeLog,v 1.18 2008/08/16 17:06:05 tove Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-i18n/xvnkb/ChangeLog,v 1.19 2008/10/30 15:27:52 matsuu Exp $
30 +
31 +*xvnkb-0.2.9a-r1 (30 Oct 2008)
32 +
33 + 30 Oct 2008; MATSUU Takuto <matsuu@g.o> -xvnkb-0.2.9.ebuild,
34 + +xvnkb-0.2.9a-r1.ebuild:
35 + Added CC variable, bug #243600. Removed old version.
36
37 16 Aug 2008; Torsten Veller <tove@g.o> metadata.xml:
38 Remove pclouds from metadata.xml (#49680)
39
40
41
42 1.1 app-i18n/xvnkb/xvnkb-0.2.9a-r1.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/xvnkb/xvnkb-0.2.9a-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-i18n/xvnkb/xvnkb-0.2.9a-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xvnkb-0.2.9a-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2008 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-i18n/xvnkb/xvnkb-0.2.9a-r1.ebuild,v 1.1 2008/10/30 15:27:52 matsuu Exp $
52
53 inherit eutils multilib toolchain-funcs
54
55 IUSE="truetype spell"
56
57 DESCRIPTION="Vietnamese input keyboard for X"
58 SRC_URI="http://xvnkb.sourceforge.net/${P}.tar.bz2"
59 HOMEPAGE="http://xvnkb.sourceforge.net/"
60
61 LICENSE="GPL-2"
62
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~x86"
65 RDEPEND="x11-libs/libX11
66 truetype? ( virtual/xft )"
67 DEPEND="${RDEPEND}
68 x11-proto/xproto"
69
70 src_compile() {
71 local myconf
72
73 tc-export CC
74
75 use spell || myconf="${myconf} --no-spellcheck"
76 use truetype || myconf="${myconf} --no-xft"
77
78 # *not* autotools
79 ./configure \
80 --use-extstroke ${myconf} \
81 || die "./configure failed"
82
83 emake || die "emake failed"
84 }
85
86 src_install() {
87 dobin xvnkb
88 dobin tools/xvnkb_ctrl
89
90 dolib xvnkb.so.${PV}
91 dosym xvnkb.so.${PV} /usr/$(get_libdir)/xvnkb.so
92
93 dodoc ChangeLog AUTHORS THANKS TODO README* doc/*
94 docinto scripts; dodoc scripts/*
95 docinto contrib; dodoc contrib/*
96 }
97
98 pkg_postinst() {
99 elog "Remember to"
100 elog "$ export LANG=en_US.UTF-8"
101 elog "(or any other UTF-8 locale) and"
102 elog "$ export LD_PRELOAD=${DESTTREE}/lib/xvnkb.so"
103 elog "before starting X Window"
104 elog "More documents are in /usr/share/doc/${PF}"
105 ewarn "Programs with suid/sgid will have LD_PRELOAD cleared"
106 ewarn "You have to unset suid/sgid to use with xvnkb"
107 }