Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/liblo: liblo-0.28.ebuild ChangeLog
Date: Wed, 29 Apr 2015 15:00:03
Message-Id: 20150429145952.83E8798D@oystercatcher.gentoo.org
1 aballier 15/04/29 14:59:51
2
3 Modified: ChangeLog
4 Added: liblo-0.28.ebuild
5 Log:
6 version bump
7
8 Signed-off-by: Alexis Ballier <aballier@g.o>
9 (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
10
11 Revision Changes Path
12 1.28 media-libs/liblo/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/liblo/ChangeLog?rev=1.28&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/liblo/ChangeLog?rev=1.28&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/liblo/ChangeLog?r1=1.27&r2=1.28
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/media-libs/liblo/ChangeLog,v
21 retrieving revision 1.27
22 retrieving revision 1.28
23 diff -u -r1.27 -r1.28
24 --- ChangeLog 15 Jun 2013 16:04:10 -0000 1.27
25 +++ ChangeLog 29 Apr 2015 14:59:51 -0000 1.28
26 @@ -1,6 +1,11 @@
27 # ChangeLog for media-libs/liblo
28 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/media-libs/liblo/ChangeLog,v 1.27 2013/06/15 16:04:10 aballier Exp $
30 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
31 +# $Header: /var/cvsroot/gentoo-x86/media-libs/liblo/ChangeLog,v 1.28 2015/04/29 14:59:51 aballier Exp $
32 +
33 +*liblo-0.28 (29 Apr 2015)
34 +
35 + 29 Apr 2015; Alexis Ballier <aballier@g.o> +liblo-0.28.ebuild:
36 + version bump
37
38 15 Jun 2013; Alexis Ballier <aballier@g.o> liblo-0.27.ebuild:
39 Remove threads useflag as switching it on or off breaks the ABI, bugs
40
41
42
43 1.1 media-libs/liblo/liblo-0.28.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/liblo/liblo-0.28.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/liblo/liblo-0.28.ebuild?rev=1.1&content-type=text/plain
47
48 Index: liblo-0.28.ebuild
49 ===================================================================
50 # Copyright 1999-2015 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-libs/liblo/liblo-0.28.ebuild,v 1.1 2015/04/29 14:59:51 aballier Exp $
53
54 EAPI=5
55 inherit eutils autotools
56
57 DESCRIPTION="Lightweight OSC (Open Sound Control) implementation"
58 HOMEPAGE="http://plugin.org.uk/liblo"
59 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
60
61 LICENSE="LGPL-2.1"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~ppc-macos"
64 IUSE="doc ipv6 static-libs"
65
66 RESTRICT="test"
67
68 DEPEND="doc? ( app-doc/doxygen )"
69
70 src_prepare() {
71 # don't build examples by default
72 sed -i '/^SUBDIRS =/s/examples//' Makefile.am || die
73
74 eautoreconf
75 }
76
77 src_configure() {
78 use doc || export ac_cv_prog_HAVE_DOXYGEN=false
79
80 # switching threads on/off breaks ABI, bugs #473282, #473286 and #473356
81 econf \
82 $(use_enable static-libs static) \
83 $(use_enable ipv6) \
84 --enable-threads
85 }
86
87 src_install() {
88 default
89 prune_libtool_files
90 }