Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libshout/
Date: Mon, 06 May 2019 11:45:59
Message-Id: 1557143150.b6253e6d71127b55d52839383f2068f03fd2fa55.polynomial-c@gentoo
1 commit: b6253e6d71127b55d52839383f2068f03fd2fa55
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 6 11:45:33 2019 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Mon May 6 11:45:50 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6253e6d
7
8 media-libs/libshout: Removed old.
9
10 Package-Manager: Portage-2.3.66, Repoman-2.3.12
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 media-libs/libshout/libshout-2.4.1-r1.ebuild | 54 ----------------------------
14 1 file changed, 54 deletions(-)
15
16 diff --git a/media-libs/libshout/libshout-2.4.1-r1.ebuild b/media-libs/libshout/libshout-2.4.1-r1.ebuild
17 deleted file mode 100644
18 index fcfeae82d3a..00000000000
19 --- a/media-libs/libshout/libshout-2.4.1-r1.ebuild
20 +++ /dev/null
21 @@ -1,54 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -inherit autotools multilib-minimal
28 -
29 -DESCRIPTION="library for connecting and sending data to icecast servers"
30 -HOMEPAGE="http://www.icecast.org/"
31 -SRC_URI="http://downloads.xiph.org/releases/${PN}/${P}.tar.gz"
32 -
33 -LICENSE="LGPL-2"
34 -SLOT="0"
35 -KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd"
36 -IUSE="libressl speex static-libs theora"
37 -
38 -RDEPEND="
39 - >=media-libs/libogg-1.3.0[${MULTILIB_USEDEP}]
40 - >=media-libs/libvorbis-1.3.3-r1[${MULTILIB_USEDEP}]
41 - !libressl? ( dev-libs/openssl:0= )
42 - libressl? ( dev-libs/libressl )
43 - speex? ( >=media-libs/speex-1.2_rc1-r1[${MULTILIB_USEDEP}] )
44 - theora? ( >=media-libs/libtheora-1.1.1[${MULTILIB_USEDEP}] )
45 -"
46 -DEPEND="${RDEPEND}
47 - virtual/pkgconfig
48 -"
49 -
50 -MULTILIB_WRAPPED_HEADERS=(
51 - /usr/include/shout/shout.h
52 -)
53 -
54 -DOCS=( README examples/example.c )
55 -
56 -PATCHES=( "${FILESDIR}"/${PN}-2.4.1-underlinking.patch )
57 -
58 -src_prepare() {
59 - default
60 - eautoreconf
61 - multilib_copy_sources
62 -}
63 -
64 -multilib_src_configure() {
65 - ECONF_SOURCE="${S}" econf \
66 - $(use_enable static-libs static) \
67 - $(use_enable theora) \
68 - $(use_enable speex)
69 -}
70 -
71 -multilib_src_install_all() {
72 - einstalldocs
73 - rm -rf "${ED}"/usr/share/doc/${PN} || die
74 - find "${D}" -name '*.la' -delete || die
75 -}