diff options
author | 2010-11-11 15:49:25 +0000 | |
---|---|---|
committer | 2010-11-11 15:49:25 +0000 | |
commit | d697dc20a01e20e1aa5805828b34ad417e069591 (patch) | |
tree | 187c29dfd0e3bbe2dca522b9032db4d8aea8713b /media-libs/libvorbis | |
parent | Version bump. (diff) | |
download | gentoo-2-d697dc20a01e20e1aa5805828b34ad417e069591.tar.gz gentoo-2-d697dc20a01e20e1aa5805828b34ad417e069591.tar.bz2 gentoo-2-d697dc20a01e20e1aa5805828b34ad417e069591.zip |
Version bump.
(Portage version: 2.2.0_alpha4/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/libvorbis')
-rw-r--r-- | media-libs/libvorbis/ChangeLog | 8 | ||||
-rw-r--r-- | media-libs/libvorbis/libvorbis-1.3.2.ebuild | 41 |
2 files changed, 48 insertions, 1 deletions
diff --git a/media-libs/libvorbis/ChangeLog b/media-libs/libvorbis/ChangeLog index 1de42afd9330..7656d9b13349 100644 --- a/media-libs/libvorbis/ChangeLog +++ b/media-libs/libvorbis/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-libs/libvorbis # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libvorbis/ChangeLog,v 1.136 2010/09/24 14:54:34 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libvorbis/ChangeLog,v 1.137 2010/11/11 15:49:25 ssuominen Exp $ + +*libvorbis-1.3.2 (11 Nov 2010) + + 11 Nov 2010; Samuli Suominen <ssuominen@gentoo.org> + +libvorbis-1.3.2.ebuild: + Version bump. 24 Sep 2010; Raúl Porcel <armin76@gentoo.org> libvorbis-1.3.1.ebuild: ia64/sh/sparc stable wrt #324263 diff --git a/media-libs/libvorbis/libvorbis-1.3.2.ebuild b/media-libs/libvorbis/libvorbis-1.3.2.ebuild new file mode 100644 index 000000000000..78be83488574 --- /dev/null +++ b/media-libs/libvorbis/libvorbis-1.3.2.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libvorbis/libvorbis-1.3.2.ebuild,v 1.1 2010/11/11 15:49:25 ssuominen Exp $ + +EAPI=3 +inherit autotools + +DESCRIPTION="The Ogg Vorbis sound file format library" +HOMEPAGE="http://xiph.org/vorbis" +SRC_URI="http://downloads.xiph.org/releases/vorbis/${P}.tar.xz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="static-libs" + +RDEPEND="media-libs/libogg" +DEPEND="${RDEPEND} + app-arch/xz-utils + dev-util/pkgconfig" + +src_prepare() { + sed -i \ + -e '/CFLAGS/s:-O20::' \ + -e '/CFLAGS/s:-mcpu=750::' \ + configure.ac || die + + AT_M4DIR="m4" eautoreconf +} + +src_configure() { + econf \ + --disable-dependency-tracking \ + $(use_enable static-libs static) +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS CHANGES + find "${D}" -name '*.la' -exec rm -f '{}' + +} |