Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-i18n/kinput2/
Date: Wed, 15 Nov 2017 19:26:36
Message-Id: 1510773974.5435abbddfef77233503c26d4e81a711e3a226a6.floppym@gentoo
1 commit: 5435abbddfef77233503c26d4e81a711e3a226a6
2 Author: Arfrever Frehtes Taifersar Arahesis <Arfrever <AT> Apache <DOT> Org>
3 AuthorDate: Wed Nov 15 19:13:22 2017 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 15 19:26:14 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5435abbd
7
8 app-i18n/kinput2: Delete old version (3.1-r1).
9
10 app-i18n/kinput2/kinput2-3.1-r1.ebuild | 70 ----------------------------------
11 1 file changed, 70 deletions(-)
12
13 diff --git a/app-i18n/kinput2/kinput2-3.1-r1.ebuild b/app-i18n/kinput2/kinput2-3.1-r1.ebuild
14 deleted file mode 100644
15 index d18b1cdc75d..00000000000
16 --- a/app-i18n/kinput2/kinput2-3.1-r1.ebuild
17 +++ /dev/null
18 @@ -1,70 +0,0 @@
19 -# Copyright 1999-2017 Gentoo Foundation
20 -# Distributed under the terms of the GNU General Public License v2
21 -
22 -EAPI="6"
23 -
24 -inherit toolchain-funcs
25 -
26 -MY_P="${PN}-v${PV}"
27 -
28 -DESCRIPTION="A Japanese input server which supports the XIM protocol"
29 -HOMEPAGE="http://www.nec.co.jp/canna"
30 -SRC_URI="ftp://ftp.sra.co.jp/pub/x11/${PN}/${MY_P}.tar.gz"
31 -
32 -LICENSE="HPND"
33 -SLOT="0"
34 -KEYWORDS="amd64 ppc ppc64 sparc x86"
35 -IUSE="freewnn"
36 -
37 -RDEPEND="x11-libs/libICE
38 - x11-libs/libSM
39 - x11-libs/libX11
40 - x11-libs/libXaw
41 - x11-libs/libXext
42 - x11-libs/libXmu
43 - x11-libs/libXpm
44 - x11-libs/libXt
45 - !freewnn? ( app-i18n/canna )
46 - freewnn? ( app-i18n/freewnn )"
47 -DEPEND="${RDEPEND}
48 - x11-misc/gccmakedep
49 - x11-misc/imake"
50 -S="${WORKDIR}/${MY_P}"
51 -
52 -PATCHES=(
53 - "${FILESDIR}"/${PN}-gentoo.patch
54 - "${FILESDIR}"/${PN}-headers.patch
55 - "${FILESDIR}"/${PN}-ppc.patch
56 - "${FILESDIR}"/${PN}-segfault.patch
57 - "${FILESDIR}"/${PN}-wnn.patch
58 -)
59 -DOCS=( README NEWS doc/. )
60 -
61 -src_prepare() {
62 - default
63 -
64 - sed -i "s|^/\* \(#define Use$(usex freewnn Wnn Canna)\) \*/|\1|" ${PN^k}.conf
65 -}
66 -
67 -src_configure() {
68 - xmkmf -a || die
69 -}
70 -
71 -src_compile() {
72 - emake \
73 - CC="$(tc-getCC)" \
74 - CDEBUGFLAGS="${CFLAGS}" \
75 - LOCAL_LDFLAGS="${LDFLAGS}" \
76 - XAPPLOADDIR="${EPREFIX}/usr/share/X11/app-defaults"
77 -}
78 -
79 -src_install() {
80 - emake \
81 - XAPPLOADDIR="${EPREFIX}/usr/share/X11/app-defaults" \
82 - DESTDIR="${D}" \
83 - install
84 - einstalldocs
85 - newman cmd/${PN}.man ${PN}.1
86 -
87 - rm -rf "${ED}"/usr/$(get_libdir)/X11
88 -}