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/soxr: soxr-0.1.1.ebuild ChangeLog
Date: Wed, 06 Mar 2013 12:03:04
Message-Id: 20130306120301.0F3CF2171D@flycatcher.gentoo.org
1 aballier 13/03/06 12:03:00
2
3 Modified: ChangeLog
4 Added: soxr-0.1.1.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
9
10 Revision Changes Path
11 1.5 media-libs/soxr/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/soxr/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/soxr/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/soxr/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/soxr/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 6 Mar 2013 11:57:57 -0000 1.4
24 +++ ChangeLog 6 Mar 2013 12:03:00 -0000 1.5
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-libs/soxr
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/soxr/ChangeLog,v 1.4 2013/03/06 11:57:57 aballier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/soxr/ChangeLog,v 1.5 2013/03/06 12:03:00 aballier Exp $
30 +
31 +*soxr-0.1.1 (06 Mar 2013)
32 +
33 + 06 Mar 2013; Alexis Ballier <aballier@g.o> +soxr-0.1.1.ebuild:
34 + version bump
35
36 06 Mar 2013; Alexis Ballier <aballier@g.o> soxr-0.1.0.ebuild:
37 do not compress examples, they are pointless compressed
38
39
40
41 1.1 media-libs/soxr/soxr-0.1.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/soxr/soxr-0.1.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/soxr/soxr-0.1.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: soxr-0.1.1.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/soxr/soxr-0.1.1.ebuild,v 1.1 2013/03/06 12:03:00 aballier Exp $
51
52 EAPI=5
53
54 inherit cmake-multilib
55
56 MY_P=${P}-Source
57 DESCRIPTION="The SoX Resampler library"
58 HOMEPAGE="https://sourceforge.net/p/soxr/wiki/Home/"
59 SRC_URI="mirror://sourceforge/soxr/${MY_P}.tar.xz"
60
61 LICENSE="LGPL-2.1"
62 SLOT="0"
63 KEYWORDS="~amd64 ~mips"
64 IUSE="examples"
65
66 DEPEND=""
67 RDEPEND="${DEPEND}"
68
69 S="${WORKDIR}/${MY_P}"
70 DOCS=( "README" "TODO" "NEWS" "AUTHORS" )
71 PATCHES=(
72 "${FILESDIR}/nodoc.patch"
73 "${FILESDIR}/noexamples.patch"
74 )
75
76 src_install() {
77 cmake-multilib_src_install
78 if use examples ; then
79 dodoc -r examples
80 docompress -x /usr/share/doc/${PF}/examples
81 fi
82 }