Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
aballier 09/02/20 08:59:54
Modified: ChangeLog
Added: libsamplerate-0.1.7.ebuild
Log:
Version bump by Richard Ash <richard@...>, bug #259274, plus a patch from Erik to fix tests on 64 bits platforms.
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Revision Changes Path
1.60 media-libs/libsamplerate/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libsamplerate/ChangeLog?rev=1.60&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libsamplerate/ChangeLog?rev=1.60&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libsamplerate/ChangeLog?r1=1.59&r2=1.60
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/libsamplerate/ChangeLog,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- ChangeLog 8 Feb 2009 09:41:03 -0000 1.59
+++ ChangeLog 20 Feb 2009 08:59:54 -0000 1.60
@@ -1,6 +1,14 @@
# ChangeLog for media-libs/libsamplerate
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libsamplerate/ChangeLog,v 1.59 2009/02/08 09:41:03 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libsamplerate/ChangeLog,v 1.60 2009/02/20 08:59:54 aballier Exp $
+
+*libsamplerate-0.1.7 (20 Feb 2009)
+
+ 20 Feb 2009; Alexis Ballier <aballier@g.o>
+ +files/libsamplerate-0.1.7-macro-quoting.patch,
+ +files/libsamplerate-0.1.7-tests.patch, +libsamplerate-0.1.7.ebuild:
+ Version bump by Richard Ash <richard@...>, bug #259274, plus
+ a patch from Erik to fix tests on 64 bits platforms.
*libsamplerate-0.1.6 (08 Feb 2009)
1.1 media-libs/libsamplerate/libsamplerate-0.1.7.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libsamplerate/libsamplerate-0.1.7.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-libs/libsamplerate/libsamplerate-0.1.7.ebuild?rev=1.1&content-type=text/plain
Index: libsamplerate-0.1.7.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libsamplerate/libsamplerate-0.1.7.ebuild,v 1.1 2009/02/20 08:59:54 aballier Exp $
inherit eutils autotools
DESCRIPTION="Secret Rabbit Code (aka libsamplerate) is a Sample Rate Converter for audio"
HOMEPAGE="http://www.mega-nerd.com/SRC/"
SRC_URI="http://www.mega-nerd.com/SRC/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="sndfile"
RDEPEND="sndfile? ( >=media-libs/libsndfile-1.0.2 )"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.14"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-0.1.3-dontbuild-tests-examples.patch
epatch "${FILESDIR}"/${P}-macro-quoting.patch
epatch "${FILESDIR}"/${P}-tests.patch
eautoreconf
}
src_compile() {
econf \
--disable-fftw \
$(use_enable sndfile) \
--disable-dependency-tracking
emake || die
}
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog NEWS README
dohtml doc/*.html doc/*.css doc/*.png
}
|
|