diff options
author | Alexis Ballier <aballier@gentoo.org> | 2010-10-10 13:59:09 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2010-10-10 13:59:09 +0000 |
commit | efeae146829ea88cd9b9dec68fff9a2b36540b53 (patch) | |
tree | 365added739f9479cd45d27fc786877b36ede050 /media-libs/libsndfile | |
parent | Keyworded on alpha, bug #325465 (diff) | |
download | gentoo-2-efeae146829ea88cd9b9dec68fff9a2b36540b53.tar.gz gentoo-2-efeae146829ea88cd9b9dec68fff9a2b36540b53.tar.bz2 gentoo-2-efeae146829ea88cd9b9dec68fff9a2b36540b53.zip |
version bump
(Portage version: 2.2_rc91/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/libsndfile')
-rw-r--r-- | media-libs/libsndfile/ChangeLog | 8 | ||||
-rw-r--r-- | media-libs/libsndfile/libsndfile-1.0.23.ebuild | 58 |
2 files changed, 65 insertions, 1 deletions
diff --git a/media-libs/libsndfile/ChangeLog b/media-libs/libsndfile/ChangeLog index d29499cde0c8..c35fb2e6c53b 100644 --- a/media-libs/libsndfile/ChangeLog +++ b/media-libs/libsndfile/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-libs/libsndfile # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.115 2010/10/05 18:28:51 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/ChangeLog,v 1.116 2010/10/10 13:59:09 aballier Exp $ + +*libsndfile-1.0.23 (10 Oct 2010) + + 10 Oct 2010; Alexis Ballier <aballier@gentoo.org> + +libsndfile-1.0.23.ebuild: + version bump *libsndfile-1.0.22 (05 Oct 2010) diff --git a/media-libs/libsndfile/libsndfile-1.0.23.ebuild b/media-libs/libsndfile/libsndfile-1.0.23.ebuild new file mode 100644 index 000000000000..193129788308 --- /dev/null +++ b/media-libs/libsndfile/libsndfile-1.0.23.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libsndfile/libsndfile-1.0.23.ebuild,v 1.1 2010/10/10 13:59:09 aballier Exp $ + +EAPI=3 +inherit eutils autotools + +MY_P=${P/_pre/pre} + +DESCRIPTION="A C library for reading and writing files containing sampled sound" +HOMEPAGE="http://www.mega-nerd.com/libsndfile" +if [[ "${MY_P}" == "${P}" ]]; then + SRC_URI="http://www.mega-nerd.com/libsndfile/files/${P}.tar.gz" +else + SRC_URI="http://www.mega-nerd.com/tmp/${MY_P}b.tar.gz" +fi + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="alsa minimal sqlite" + +RDEPEND="!minimal? ( >=media-libs/flac-1.2.1 + >=media-libs/libogg-1.1.3 + >=media-libs/libvorbis-1.2.3 ) + alsa? ( media-libs/alsa-lib ) + sqlite? ( >=dev-db/sqlite-3.2 )" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + sed -i -e "s/noinst_PROGRAMS/check_PROGRAMS/" "${S}/tests/Makefile.am" \ + "${S}/examples/Makefile.am" || die "sed failed" + + epatch "${FILESDIR}"/${PN}-1.0.17-regtests-need-sqlite.patch + + rm M4/libtool.m4 M4/lt*.m4 || die "rm failed" + + AT_M4DIR=M4 eautoreconf + epunt_cxx +} + +src_configure() { + econf $(use_enable sqlite) \ + $(use_enable alsa) \ + $(use_enable !minimal external-libs) \ + --disable-octave \ + --disable-gcc-werror \ + --disable-gcc-pipe \ + --disable-dependency-tracking +} + +src_install() { + emake DESTDIR="${D}" htmldocdir="/usr/share/doc/${PF}/html" install || die "emake install failed" + dodoc AUTHORS ChangeLog NEWS README +} |