Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/liblo: liblo-0.27.ebuild ChangeLog
Date: Sat, 01 Jun 2013 08:15:50
Message-Id: 20130601081544.7AB982171D@flycatcher.gentoo.org
1 radhermit 13/06/01 08:15:44
2
3 Modified: ChangeLog
4 Added: liblo-0.27.ebuild
5 Log:
6 Version bump and add threads use flag.
7
8 (Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
9
10 Revision Changes Path
11 1.25 media-libs/liblo/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/liblo/ChangeLog?rev=1.25&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/liblo/ChangeLog?rev=1.25&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/liblo/ChangeLog?r1=1.24&r2=1.25
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/liblo/ChangeLog,v
20 retrieving revision 1.24
21 retrieving revision 1.25
22 diff -u -r1.24 -r1.25
23 --- ChangeLog 4 Jul 2012 20:37:56 -0000 1.24
24 +++ ChangeLog 1 Jun 2013 08:15:44 -0000 1.25
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-libs/liblo
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/liblo/ChangeLog,v 1.24 2012/07/04 20:37:56 ssuominen Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-libs/liblo/ChangeLog,v 1.25 2013/06/01 08:15:44 radhermit Exp $
31 +
32 +*liblo-0.27 (01 Jun 2013)
33 +
34 + 01 Jun 2013; Tim Harder <radhermit@g.o> +liblo-0.27.ebuild:
35 + Version bump and add threads use flag.
36
37 04 Jul 2012; Samuli Suominen <ssuominen@g.o> -liblo-0.24.ebuild:
38 old
39
40
41
42 1.1 media-libs/liblo/liblo-0.27.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/liblo/liblo-0.27.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/liblo/liblo-0.27.ebuild?rev=1.1&content-type=text/plain
46
47 Index: liblo-0.27.ebuild
48 ===================================================================
49 # Copyright 1999-2013 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-libs/liblo/liblo-0.27.ebuild,v 1.1 2013/06/01 08:15:44 radhermit Exp $
52
53 EAPI=5
54 inherit eutils
55
56 DESCRIPTION="Lightweight OSC (Open Sound Control) implementation"
57 HOMEPAGE="http://plugin.org.uk/liblo"
58 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
59
60 LICENSE="LGPL-2.1"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~ppc-macos"
63 IUSE="doc ipv6 static-libs threads"
64
65 RESTRICT="test"
66
67 DEPEND="doc? ( app-doc/doxygen )"
68
69 src_configure() {
70 use doc || export ac_cv_prog_HAVE_DOXYGEN=false
71
72 econf \
73 $(use_enable static-libs static) \
74 $(use_enable ipv6) \
75 $(use_enable threads)
76 }
77
78 src_install() {
79 default
80 prune_libtool_files
81 }