Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/libmspub/
Date: Sun, 15 Jul 2018 11:25:02
Message-Id: 1531652003.7152b122b92eeac6736cb687d45087c5e025fa80.asturm@gentoo
1 commit: 7152b122b92eeac6736cb687d45087c5e025fa80
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 15 10:53:23 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 15 10:53:23 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7152b122
7
8 app-text/libmspub: Drop old
9
10 Package-Manager: Portage-2.3.41, Repoman-2.3.9
11
12 app-text/libmspub/Manifest | 1 -
13 app-text/libmspub/libmspub-0.1.2.ebuild | 55 ---------------------------------
14 2 files changed, 56 deletions(-)
15
16 diff --git a/app-text/libmspub/Manifest b/app-text/libmspub/Manifest
17 index a648a31133a..a7a60bc8a86 100644
18 --- a/app-text/libmspub/Manifest
19 +++ b/app-text/libmspub/Manifest
20 @@ -1,2 +1 @@
21 -DIST libmspub-0.1.2.tar.xz 345556 BLAKE2B a3b47fb188fc859abf54e3375514d31a1fafa21fb57fe0ac4a20013741a223a7011adf8ce7784b61346b49e9f4c0b6c353138dc12a5035f7bcc24576a508aa50 SHA512 c19025a2b887c33f5966b0972204ab2a8ae841b82df38eaf53c0cdc8f99d93cccab5e1c78143a79d5aef9c7a7387bd6f2cf34833a00861058e0e4687f48be714
22 DIST libmspub-0.1.4.tar.xz 377472 BLAKE2B 89bd994a5aa2b3a22681dfe78fcea19561ea6057210e61630fa904ded12cca4694d715dd8f2fe8f687a91951bfa2f7aec1ff11d0b978a517476545bb07f654dd SHA512 7275f890645961b3fd56df4584788962e8c064fe3f99f5834c6ba6177ce76d00d544fbe9a25b7ab2f4180d2f3a90c609fe0bb68d61ea24e95b086190390fff31
23
24 diff --git a/app-text/libmspub/libmspub-0.1.2.ebuild b/app-text/libmspub/libmspub-0.1.2.ebuild
25 deleted file mode 100644
26 index 16c01c8e002..00000000000
27 --- a/app-text/libmspub/libmspub-0.1.2.ebuild
28 +++ /dev/null
29 @@ -1,55 +0,0 @@
30 -# Copyright 1999-2018 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit flag-o-matic
36 -
37 -EGIT_REPO_URI="https://anongit.freedesktop.org/git/libreoffice/libmspub.git"
38 -[[ ${PV} == 9999 ]] && inherit autotools git-r3
39 -
40 -DESCRIPTION="Library parsing Microsoft Publisher documents"
41 -HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libmspub"
42 -[[ ${PV} == 9999 ]] || SRC_URI="https://dev-www.libreoffice.org/src/libmspub/${P}.tar.xz"
43 -
44 -LICENSE="LGPL-2.1"
45 -SLOT="0"
46 -
47 -# Don't move KEYWORDS on the previous line or ekeyword won't work # 399061
48 -[[ ${PV} == 9999 ]] || \
49 -KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ppc64 x86"
50 -
51 -IUSE="doc static-libs"
52 -
53 -RDEPEND="
54 - dev-libs/icu:=
55 - dev-libs/librevenge
56 - sys-libs/zlib
57 -"
58 -DEPEND="${RDEPEND}
59 - dev-libs/boost
60 - sys-devel/libtool
61 - virtual/pkgconfig
62 - doc? ( app-doc/doxygen )
63 -"
64 -
65 -src_prepare() {
66 - default
67 - [[ -d m4 ]] || mkdir "m4"
68 - [[ ${PV} == 9999 ]] && eautoreconf
69 -}
70 -
71 -src_configure() {
72 - # bug 619044
73 - append-cxxflags -std=c++14
74 -
75 - econf \
76 - --disable-werror \
77 - $(use_with doc docs) \
78 - $(use_enable static-libs static)
79 -}
80 -
81 -src_install() {
82 - default
83 - find "${D}" -name '*.la' -delete || die
84 -}