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/liblo/
Date: Mon, 02 Mar 2020 09:04:25
Message-Id: 1583139857.9aba72a89b3d40e1ce521282a21db1c5dad0b7d0.polynomial-c@gentoo
1 commit: 9aba72a89b3d40e1ce521282a21db1c5dad0b7d0
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 2 09:04:08 2020 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 2 09:04:17 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9aba72a8
7
8 media-libs/liblo: Bump to version 0.31
9
10 Package-Manager: Portage-2.3.91, Repoman-2.3.20
11 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
12
13 media-libs/liblo/Manifest | 1 +
14 media-libs/liblo/liblo-0.31.ebuild | 44 ++++++++++++++++++++++++++++++++++++++
15 2 files changed, 45 insertions(+)
16
17 diff --git a/media-libs/liblo/Manifest b/media-libs/liblo/Manifest
18 index bd9d2de3df3..09c8edf0d72 100644
19 --- a/media-libs/liblo/Manifest
20 +++ b/media-libs/liblo/Manifest
21 @@ -1 +1,2 @@
22 DIST liblo-0.30.tar.gz 641498 BLAKE2B d884cc723d770f45414e838b6f2520c1f3b2a11972a9977d19b20ba68bc653f895eeb21ba0182a09fde1f096c9be084def1572f747463cd71e96bf0022ef7549 SHA512 51132933cc23237b70ed08fa7986a4a9f838529b83807746b358bcc171f8bbce7f37115b7c855520c9219bae93c74e502aebfb90e44dabdc6d0a00b8335336e3
23 +DIST liblo-0.31.tar.gz 643928 BLAKE2B 724a6369856b5f2ccd50edb8eacbf309760548b1f855d8b4f343cbfc3257ab3ceffc5f4e40d594ecb20050fcea11b7a6bc26f8e4a6ea72969628ebef05209fd5 SHA512 97f9561296c2e53f92db0cfee625687208b490f8bc229b6cffe88b43ca2a8da1ed3217aaa2151245ea483e54ad6c5e92b9cf10a20661766fa6d3bedb5a8cdd01
24
25 diff --git a/media-libs/liblo/liblo-0.31.ebuild b/media-libs/liblo/liblo-0.31.ebuild
26 new file mode 100644
27 index 00000000000..2a9f890560a
28 --- /dev/null
29 +++ b/media-libs/liblo/liblo-0.31.ebuild
30 @@ -0,0 +1,44 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +inherit autotools
36 +
37 +DESCRIPTION="Lightweight OSC (Open Sound Control) implementation"
38 +HOMEPAGE="https://sourceforge.net/projects/liblo/"
39 +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
40 +
41 +LICENSE="LGPL-2.1"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~ppc-macos"
44 +IUSE="doc ipv6 static-libs"
45 +
46 +RESTRICT="test"
47 +
48 +BDEPEND="doc? ( app-doc/doxygen )"
49 +
50 +src_prepare() {
51 + default
52 +
53 + # don't build examples by default
54 + sed -i '/^SUBDIRS =/s/examples//' Makefile.am || die
55 +
56 + eautoreconf
57 +}
58 +
59 +src_configure() {
60 + use doc || export ac_cv_prog_HAVE_DOXYGEN=false
61 +
62 + # switching threads on/off breaks ABI, bugs #473282, #473286 and #473356
63 + myeconfargs=(
64 + --enable-threads
65 + $(use_enable ipv6)
66 + $(use_enable static-libs static)
67 + )
68 + econf "${myeconfargs[@]}"
69 +}
70 +
71 +src_install() {
72 + default
73 + find "${ED}" -type f -name "*.la" -delete || die
74 +}