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/libshout: ChangeLog libshout-2.3.1-r1.ebuild
Date: Wed, 31 Jul 2013 17:35:11
Message-Id: 20130731173508.364822171C@flycatcher.gentoo.org
1 aballier 13/07/31 17:35:08
2
3 Modified: ChangeLog
4 Added: libshout-2.3.1-r1.ebuild
5 Log:
6 convert to multilib and stack it for medialibs r7
7
8 (Portage version: 2.2.0_alpha191/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
9
10 Revision Changes Path
11 1.47 media-libs/libshout/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libshout/ChangeLog?rev=1.47&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libshout/ChangeLog?rev=1.47&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libshout/ChangeLog?r1=1.46&r2=1.47
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/libshout/ChangeLog,v
20 retrieving revision 1.46
21 retrieving revision 1.47
22 diff -u -r1.46 -r1.47
23 --- ChangeLog 5 Oct 2012 09:14:45 -0000 1.46
24 +++ ChangeLog 31 Jul 2013 17:35:07 -0000 1.47
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-libs/libshout
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libshout/ChangeLog,v 1.46 2012/10/05 09:14:45 ssuominen Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libshout/ChangeLog,v 1.47 2013/07/31 17:35:07 aballier Exp $
31 +
32 +*libshout-2.3.1-r1 (31 Jul 2013)
33 +
34 + 31 Jul 2013; Alexis Ballier <aballier@g.o> +libshout-2.3.1-r1.ebuild:
35 + convert to multilib and stack it for medialibs r7
36
37 05 Oct 2012; Samuli Suominen <ssuominen@g.o> libshout-2.3.1.ebuild:
38 Fix LICENSE from GPL-2 to LGPL-2 as per COPYING file.
39
40
41
42 1.1 media-libs/libshout/libshout-2.3.1-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libshout/libshout-2.3.1-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libshout/libshout-2.3.1-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libshout-2.3.1-r1.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/libshout/libshout-2.3.1-r1.ebuild,v 1.1 2013/07/31 17:35:07 aballier Exp $
52
53 EAPI=5
54 inherit eutils multilib-minimal
55
56 DESCRIPTION="library for connecting and sending data to icecast servers"
57 HOMEPAGE="http://www.icecast.org/"
58 SRC_URI="http://downloads.xiph.org/releases/${PN}/${P}.tar.gz"
59
60 LICENSE="LGPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
63 IUSE="speex static-libs theora"
64
65 RDEPEND="media-libs/libogg[${MULTILIB_USEDEP}]
66 media-libs/libvorbis[${MULTILIB_USEDEP}]
67 speex? ( media-libs/speex[${MULTILIB_USEDEP}] )
68 theora? ( media-libs/libtheora[${MULTILIB_USEDEP}] )
69 abi_x86_32? ( !<=app-emulation/emul-linux-x86-medialibs-20130224-r6
70 !app-emulation/emul-linux-x86-medialibs[-abi_x86_32(-)] )"
71 DEPEND="${RDEPEND}
72 virtual/pkgconfig"
73
74 multilib_src_configure() {
75 ECONF_SOURCE="${S}" econf \
76 $(use_enable static-libs static) \
77 $(use_enable theora) \
78 $(use_enable speex)
79 }
80
81 multilib_src_install_all() {
82 dodoc README examples/example.c
83 rm -rf "${ED}"/usr/share/doc/${PN}
84 prune_libtool_files
85 }