Gentoo Archives: gentoo-commits

From: Akinori Hattori <hattya@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/m17n-lib/
Date: Tue, 30 Nov 2021 13:06:48
Message-Id: 1638277340.f807ac0246f0d611d949047d59fe1fa8de0ae90e.hattya@gentoo
1 commit: f807ac0246f0d611d949047d59fe1fa8de0ae90e
2 Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 30 13:02:20 2021 +0000
4 Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 30 13:02:20 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f807ac02
7
8 dev-libs/m17n-lib: drop old
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>
12
13 dev-libs/m17n-lib/Manifest | 1 -
14 dev-libs/m17n-lib/m17n-lib-1.7.0.ebuild | 84 ---------------------------------
15 2 files changed, 85 deletions(-)
16
17 diff --git a/dev-libs/m17n-lib/Manifest b/dev-libs/m17n-lib/Manifest
18 index 4af74c61ae16..3cda17fa644a 100644
19 --- a/dev-libs/m17n-lib/Manifest
20 +++ b/dev-libs/m17n-lib/Manifest
21 @@ -1,2 +1 @@
22 -DIST m17n-lib-1.7.0.tar.gz 1063169 BLAKE2B 61192d26dec8a8bdb55b6a819c5b1aa5503e4320d57864889065c9490ee6720f5b258fbef10d5944f69f5a9ccbe49ea5494c8b0a10d536592c301f46df6826c5 SHA512 26fc1be02a5e487a2fa5f2f63d991f3c745aa1b78e20d931fe4b265125266501cc8d402aa3cb5c1b71a7d4c0f7a0bf5b2c3b17ec5f4f8e0f5ee3052ad4e205b7
23 DIST m17n-lib-1.8.0.tar.gz 1091731 BLAKE2B a4b55fbc3246fe0865dcf1647e91d03de6ead06fb4349ba207613cdea6bb079c0e7623510a6fb046dce4bfefd262f68c41c9174d29a2b4a6f673da298642e1cb SHA512 8aba862888393232172c03cdf52531e29ea969c4327e6f69879ecf7438eafee32782f509ec292b3e1b7cd3202e2764984d7a59e85cdb87a7c8bfcbac5b0ee6fd
24
25 diff --git a/dev-libs/m17n-lib/m17n-lib-1.7.0.ebuild b/dev-libs/m17n-lib/m17n-lib-1.7.0.ebuild
26 deleted file mode 100644
27 index ad3b8bd7aaef..000000000000
28 --- a/dev-libs/m17n-lib/m17n-lib-1.7.0.ebuild
29 +++ /dev/null
30 @@ -1,84 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI="8"
35 -
36 -inherit autotools
37 -
38 -DESCRIPTION="Multilingual Library for Unix/Linux"
39 -HOMEPAGE="https://savannah.nongnu.org/projects/m17n https://git.savannah.nongnu.org/cgit/m17n/m17n-lib.git"
40 -SRC_URI="mirror://nongnu/m17n/${P}.tar.gz"
41 -
42 -LICENSE="LGPL-2.1"
43 -SLOT="0"
44 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86"
45 -IUSE="X anthy athena bidi fontconfig gd libotf libxml2 spell xft"
46 -
47 -RDEPEND="~dev-db/m17n-db-${PV}
48 - X? (
49 - x11-libs/libX11
50 - athena? ( x11-libs/libXaw )
51 - bidi? ( dev-libs/fribidi )
52 - fontconfig? ( media-libs/fontconfig )
53 - gd? ( media-libs/gd[png] )
54 - libotf? ( dev-libs/libotf )
55 - xft? (
56 - media-libs/freetype
57 - x11-libs/libXft
58 - )
59 - )
60 - anthy? ( app-i18n/anthy )
61 - libxml2? ( dev-libs/libxml2 )
62 - spell? ( app-text/aspell )"
63 -DEPEND="${RDEPEND}"
64 -BDEPEND="virtual/pkgconfig"
65 -
66 -PATCHES=(
67 - "${FILESDIR}"/${PN}-configure.patch
68 - "${FILESDIR}"/${PN}-freetype.patch
69 - "${FILESDIR}"/${PN}-ispell.patch
70 - "${FILESDIR}"/${PN}-parallel-make.patch
71 -)
72 -
73 -src_prepare() {
74 - default
75 -
76 - eautoreconf
77 - # workaround for parallel install
78 - sed -i "/^install-module/s/:/: install-libLTLIBRARIES/" src/Makefile.in
79 -}
80 -
81 -src_configure() {
82 - local myconf=(
83 - $(use_with anthy)
84 - $(use_with libxml2)
85 - $(use_with spell ispell)
86 - )
87 - if use X; then
88 - myconf+=(
89 - $(use_with athena)
90 - $(use_with bidi fribidi)
91 - $(use_with fontconfig)
92 - $(use_with xft freetype)
93 - $(use_with gd)
94 - --with-gui
95 - $(use_with libotf)
96 - --with-x
97 - $(use_with xft)
98 - )
99 - else
100 - myconf+=(
101 - --without-athena
102 - --without-fontconfig
103 - --without-freetype
104 - --without-fribidi
105 - --without-gd
106 - --without-gui
107 - --without-libotf
108 - --without-x
109 - --without-xft
110 - )
111 - fi
112 -
113 - econf "${myconf[@]}"
114 -}