Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libcdr/
Date: Sun, 28 Apr 2019 21:41:27
Message-Id: 1556487653.8245aaf2e3382df025a9a2d53b53155e043f519d.asturm@gentoo
1 commit: 8245aaf2e3382df025a9a2d53b53155e043f519d
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 28 16:08:20 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 28 21:40:53 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8245aaf2
7
8 media-libs/libcdr: Drop 0.1.4
9
10 Package-Manager: Portage-2.3.65, Repoman-2.3.12
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 media-libs/libcdr/Manifest | 1 -
14 media-libs/libcdr/libcdr-0.1.4.ebuild | 55 -----------------------------------
15 2 files changed, 56 deletions(-)
16
17 diff --git a/media-libs/libcdr/Manifest b/media-libs/libcdr/Manifest
18 index 5229407d9c8..4fda0e51ac0 100644
19 --- a/media-libs/libcdr/Manifest
20 +++ b/media-libs/libcdr/Manifest
21 @@ -1,2 +1 @@
22 -DIST libcdr-0.1.4.tar.xz 609592 BLAKE2B 201ed19cfe9aa93137279dfa6b9c3908691b2bddd1e8b7fb25505ab475cb8ae533d1b27857c99e36f618938aa7ee88075c3c7f5780872abe68994f380dc893c8 SHA512 769b0319b5a904ce9f727b7076f82cd915ecd8c9e5e2456416e3e6739c6403bbd4108787ab124d36efb1b47d5c9e37c48b0e12d096eb440ae8f9979ec06048a6
23 DIST libcdr-0.1.5.tar.xz 612252 BLAKE2B d23c7ae0d0f5cbdb535bfba4dff4ad40e8b0633115cbc8c5b3a40343d941eaeafbffafe99ba2107640eafdd8181ab6eed7917095d05644a43f2b11cfcc66f8f1 SHA512 e985389b0cbad65dbfa9f59d7f9dba55f1684f63e852f9acca9abb863cdaab17072e761b48dca690673360d643686b5e9bc9878530f0a3a8b5b98d917f892cf0
24
25 diff --git a/media-libs/libcdr/libcdr-0.1.4.ebuild b/media-libs/libcdr/libcdr-0.1.4.ebuild
26 deleted file mode 100644
27 index 44206df9176..00000000000
28 --- a/media-libs/libcdr/libcdr-0.1.4.ebuild
29 +++ /dev/null
30 @@ -1,55 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit flag-o-matic
37 -
38 -EGIT_REPO_URI="https://anongit.freedesktop.org/git/libreoffice/libcdr.git"
39 -[[ ${PV} == 9999 ]] && inherit autotools git-r3
40 -
41 -DESCRIPTION="Library parsing the Corel cdr documents"
42 -HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libcdr"
43 -[[ ${PV} == 9999 ]] || SRC_URI="https://dev-www.libreoffice.org/src/libcdr/${P}.tar.xz"
44 -
45 -LICENSE="MPL-2.0"
46 -SLOT="0"
47 -[[ ${PV} == 9999 ]] || \
48 -KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ppc64 ~sparc x86"
49 -IUSE="doc static-libs test"
50 -
51 -RDEPEND="
52 - dev-libs/icu:=
53 - dev-libs/librevenge
54 - media-libs/lcms:2
55 - sys-libs/zlib
56 -"
57 -DEPEND="${RDEPEND}
58 - dev-libs/boost
59 - sys-devel/libtool
60 - virtual/pkgconfig
61 - doc? ( app-doc/doxygen )
62 - test? ( dev-util/cppunit )
63 -"
64 -
65 -src_prepare() {
66 - default
67 - [[ -d m4 ]] || mkdir "m4"
68 - [[ ${PV} == 9999 ]] && eautoreconf
69 -}
70 -
71 -src_configure() {
72 - # bug 619448
73 - append-cxxflags -std=c++14
74 -
75 - econf \
76 - --disable-werror \
77 - $(use_with doc docs) \
78 - $(use_enable static-libs static) \
79 - $(use_enable test tests)
80 -}
81 -
82 -src_install() {
83 - default
84 - find "${D}" -name '*.la' -delete || die
85 -}