Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libsndfile: ChangeLog libsndfile-1.0.21-r1.ebuild
Date: Sun, 05 Sep 2010 09:26:53
Message-Id: 20100905092649.671AF20051@flycatcher.gentoo.org
1 ssuominen 10/09/05 09:26:49
2
3 Modified: ChangeLog
4 Added: libsndfile-1.0.21-r1.ebuild
5 Log:
6 Remove append-lfs-flags (#313259) again wrt #335728.
7
8 (Portage version: 2.2_rc69/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.114 media-libs/libsndfile/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.114&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?rev=1.114&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/ChangeLog?r1=1.113&r2=1.114
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v
20 retrieving revision 1.113
21 retrieving revision 1.114
22 diff -u -r1.113 -r1.114
23 --- ChangeLog 25 Jun 2010 12:07:14 -0000 1.113
24 +++ ChangeLog 5 Sep 2010 09:26:49 -0000 1.114
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-libs/libsndfile
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.113 2010/06/25 12:07:14 aballier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.114 2010/09/05 09:26:49 ssuominen Exp $
30 +
31 +*libsndfile-1.0.21-r1 (05 Sep 2010)
32 +
33 + 05 Sep 2010; Samuli Suominen <ssuominen@g.o>
34 + +libsndfile-1.0.21-r1.ebuild:
35 + Remove append-lfs-flags (#313259) again wrt #335728.
36
37 25 Jun 2010; Alexis Ballier <aballier@g.o>
38 -libsndfile-1.0.17-r1.ebuild, -files/libsndfile-1.0.17-autotools.patch,
39
40
41
42 1.1 media-libs/libsndfile/libsndfile-1.0.21-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.21-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.21-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libsndfile-1.0.21-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.21-r1.ebuild,v 1.1 2010/09/05 09:26:49 ssuominen Exp $
52
53 inherit eutils libtool autotools
54
55 MY_P=${P/_pre/pre}
56
57 DESCRIPTION="A C library for reading and writing files containing sampled sound"
58 HOMEPAGE="http://www.mega-nerd.com/libsndfile"
59 if [[ "${MY_P}" == "${P}" ]]; then
60 SRC_URI="http://www.mega-nerd.com/libsndfile/files/${P}.tar.gz"
61 else
62 SRC_URI="http://www.mega-nerd.com/tmp/${MY_P}b.tar.gz"
63 fi
64
65 LICENSE="LGPL-2.1"
66 SLOT="0"
67 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
68 IUSE="alsa minimal sqlite"
69
70 RDEPEND="!minimal? ( >=media-libs/flac-1.2.1
71 >=media-libs/libogg-1.1.3
72 >=media-libs/libvorbis-1.2.1_rc1 )
73 alsa? ( media-libs/alsa-lib )
74 sqlite? ( >=dev-db/sqlite-3.2 )"
75 DEPEND="${RDEPEND}
76 dev-util/pkgconfig"
77
78 S=${WORKDIR}/${MY_P}
79
80 src_unpack() {
81 unpack ${A}
82 cd "${S}"
83 sed -i -e "s/noinst_PROGRAMS/check_PROGRAMS/" "${S}/tests/Makefile.am" \
84 "${S}/examples/Makefile.am" || die "sed failed"
85
86 epatch "${FILESDIR}"/${PN}-1.0.17-regtests-need-sqlite.patch
87
88 rm M4/libtool.m4 M4/lt*.m4 || die "rm failed"
89
90 AT_M4DIR=M4 eautoreconf
91 epunt_cxx
92 }
93
94 src_compile() {
95 econf $(use_enable sqlite) \
96 $(use_enable alsa) \
97 $(use_enable !minimal external-libs) \
98 --disable-octave \
99 --disable-gcc-werror \
100 --disable-gcc-pipe \
101 --disable-dependency-tracking
102 emake || die "emake failed"
103 }
104
105 src_install() {
106 emake DESTDIR="${D}" htmldocdir="/usr/share/doc/${PF}/html" install || die "emake install failed"
107 dodoc AUTHORS ChangeLog NEWS README
108 }