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, 31 May 2020 21:09:26
Message-Id: 1590959320.1880b359a6fef150a2bbe0ce1c2cadd44dfd535d.asturm@gentoo
1 commit: 1880b359a6fef150a2bbe0ce1c2cadd44dfd535d
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 31 21:06:39 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun May 31 21:08:40 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1880b359
7
8 media-libs/libcdr: Drop 0.1.5
9
10 Package-Manager: Portage-2.3.100, Repoman-2.3.22
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 media-libs/libcdr/Manifest | 1 -
14 media-libs/libcdr/libcdr-0.1.5.ebuild | 61 -----------------------------------
15 2 files changed, 62 deletions(-)
16
17 diff --git a/media-libs/libcdr/Manifest b/media-libs/libcdr/Manifest
18 index 17eeb6bc00f..55ed4a4dd28 100644
19 --- a/media-libs/libcdr/Manifest
20 +++ b/media-libs/libcdr/Manifest
21 @@ -1,2 +1 @@
22 -DIST libcdr-0.1.5.tar.xz 612252 BLAKE2B d23c7ae0d0f5cbdb535bfba4dff4ad40e8b0633115cbc8c5b3a40343d941eaeafbffafe99ba2107640eafdd8181ab6eed7917095d05644a43f2b11cfcc66f8f1 SHA512 e985389b0cbad65dbfa9f59d7f9dba55f1684f63e852f9acca9abb863cdaab17072e761b48dca690673360d643686b5e9bc9878530f0a3a8b5b98d917f892cf0
23 DIST libcdr-0.1.6.tar.xz 612068 BLAKE2B ec5226a28f101472ea3044e9e5b87dba57b584fc813dfda29e00281182d067126bf8a5740c32bc5cb545f230f6f96163aac2fdf08879ec64379b7845839bc88a SHA512 629d55da71c7333f41f60a32e2880deffcf80088096af1bbc8c572b80ef21d851102fdebce56f77245ed60822ca98e02c0867b192abef496a2313fde54a97bb6
24
25 diff --git a/media-libs/libcdr/libcdr-0.1.5.ebuild b/media-libs/libcdr/libcdr-0.1.5.ebuild
26 deleted file mode 100644
27 index 88fd7662e04..00000000000
28 --- a/media-libs/libcdr/libcdr-0.1.5.ebuild
29 +++ /dev/null
30 @@ -1,61 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit flag-o-matic
37 -
38 -if [[ ${PV} = 9999 ]]; then
39 - EGIT_REPO_URI="https://anongit.freedesktop.org/git/libreoffice/libcdr.git"
40 - inherit autotools git-r3
41 -else
42 - SRC_URI="https://dev-www.libreoffice.org/src/libcdr/${P}.tar.xz"
43 - KEYWORDS="amd64 ~arm arm64 ~hppa ppc ppc64 ~sparc x86"
44 -fi
45 -
46 -DESCRIPTION="Library parsing the Corel cdr documents"
47 -HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libcdr"
48 -
49 -LICENSE="MPL-2.0"
50 -SLOT="0"
51 -IUSE="doc static-libs test"
52 -RESTRICT="!test? ( test )"
53 -
54 -RDEPEND="
55 - dev-libs/icu:=
56 - dev-libs/librevenge
57 - media-libs/lcms:2
58 - sys-libs/zlib
59 -"
60 -DEPEND="${RDEPEND}
61 - dev-libs/boost
62 -"
63 -BDEPEND="
64 - sys-devel/libtool
65 - virtual/pkgconfig
66 - doc? ( app-doc/doxygen )
67 - test? ( dev-util/cppunit )
68 -"
69 -
70 -src_prepare() {
71 - default
72 - [[ -d m4 ]] || mkdir "m4"
73 - [[ ${PV} == 9999 ]] && eautoreconf
74 -}
75 -
76 -src_configure() {
77 - # bug 619448
78 - append-cxxflags -std=c++14
79 -
80 - local myeconfargs=(
81 - $(use_with doc docs)
82 - $(use_enable static-libs static)
83 - $(use_enable test tests)
84 - )
85 - econf "${myeconfargs[@]}"
86 -}
87 -
88 -src_install() {
89 - default
90 - find "${D}" -name '*.la' -delete || die
91 -}