Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libzen/
Date: Thu, 07 May 2020 03:51:48
Message-Id: 1588823363.b2ef8a05714c9a5dc06c758ec41106ed31737014.radhermit@gentoo
1 commit: b2ef8a05714c9a5dc06c758ec41106ed31737014
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 7 03:47:41 2020 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Thu May 7 03:49:23 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2ef8a05
7
8 media-libs/libzen: remove old
9
10 Signed-off-by: Tim Harder <radhermit <AT> gentoo.org>
11
12 media-libs/libzen/Manifest | 1 -
13 media-libs/libzen/libzen-0.4.37.ebuild | 66 ----------------------------------
14 2 files changed, 67 deletions(-)
15
16 diff --git a/media-libs/libzen/Manifest b/media-libs/libzen/Manifest
17 index 571589cba78..44474f91c74 100644
18 --- a/media-libs/libzen/Manifest
19 +++ b/media-libs/libzen/Manifest
20 @@ -1,2 +1 @@
21 -DIST libzen_0.4.37.tar.bz2 121707 BLAKE2B a9ffb4c06b5cb6dbb4c41f7d0b5293878b58ee842a5983a684f251bddb4c31184b1edc9604edd6e1961920c2341581001da2fd6ed204e6bed7620066ad73f1cc SHA512 3b5bec79470bec054cfa759e753e3925fbd9f27e508c692c0b100fcf1599696bff462d92c08799646e6ffc74c176e7cc7509ae0754c4710d527494f59d95d12b
22 DIST libzen_0.4.38.tar.bz2 129706 BLAKE2B 3e40e31663f655885f47b7674936a765cce032da25fcc3f57604b116414bf4348db363a4745bf98126879de9d2de5d4443af1fe3a1f64a7bafd3525eb1ca38da SHA512 d946cd2349848925e13a3fb6aab5ad4f5aca28bc89b3263faca3096d7bbcae3a4ff9ed2552bf005b4ca1f4c8c8f59856f4c4aafa7c734ecebd078e6fc40a9a0b
23
24 diff --git a/media-libs/libzen/libzen-0.4.37.ebuild b/media-libs/libzen/libzen-0.4.37.ebuild
25 deleted file mode 100644
26 index 61fd579e454..00000000000
27 --- a/media-libs/libzen/libzen-0.4.37.ebuild
28 +++ /dev/null
29 @@ -1,66 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit autotools multilib ltprune
36 -
37 -MY_PN="ZenLib"
38 -DESCRIPTION="Shared library for libmediainfo and mediainfo"
39 -HOMEPAGE="https://github.com/MediaArea/ZenLib"
40 -SRC_URI="https://mediaarea.net/download/source/${PN}/${PV}/${P/-/_}.tar.bz2"
41 -
42 -LICENSE="ZLIB"
43 -SLOT="0"
44 -KEYWORDS="amd64 x86"
45 -IUSE="doc static-libs"
46 -
47 -DEPEND="virtual/pkgconfig
48 - doc? ( app-doc/doxygen )"
49 -
50 -S=${WORKDIR}/${MY_PN}/Project/GNU/Library
51 -
52 -src_prepare() {
53 - default
54 - sed -i 's:-O2::' configure.ac || die
55 - eautoreconf
56 -}
57 -
58 -src_configure() {
59 - econf \
60 - --enable-unicode \
61 - --enable-shared \
62 - $(use_enable static-libs static)
63 -}
64 -
65 -src_compile() {
66 - default
67 -
68 - if use doc ; then
69 - cd "${WORKDIR}"/${MY_PN}/Source/Doc
70 - doxygen Doxyfile || die
71 - fi
72 -}
73 -
74 -src_install() {
75 - default
76 -
77 - # remove since the pkgconfig file should be used instead
78 - rm "${D}"/usr/bin/libzen-config
79 -
80 - insinto /usr/$(get_libdir)/pkgconfig
81 - doins ${PN}.pc
82 -
83 - for x in ./ Format/Html Format/Http HTTP_Client ; do
84 - insinto /usr/include/${MY_PN}/${x}
85 - doins "${WORKDIR}"/${MY_PN}/Source/${MY_PN}/${x}/*.h
86 - done
87 -
88 - dodoc "${WORKDIR}"/${MY_PN}/History.txt
89 - if use doc ; then
90 - docinto html
91 - dodoc "${WORKDIR}"/${MY_PN}/Doc/*
92 - fi
93 -
94 - prune_libtool_files
95 -}