# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI="1" inherit libtool flag-o-matic eutils toolchain-funcs DESCRIPTION="the Ogg Vorbis sound file format library" HOMEPAGE="http://xiph.org/vorbis aotuv? ( http://www.geocities.jp/aoyoume/aotuv/ )" SRC_URI="http://downloads.xiph.org/releases/vorbis/${P}.tar.bz2" LICENSE="BSD" SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd" IUSE="+aotuv doc" RDEPEND=">=media-libs/libogg-1" DEPEND="${RDEPEND} dev-util/pkgconfig" src_unpack() { unpack ${A} cd "${S}" if use aotuv; then epatch "${FILESDIR}"/${P}-aotuvb5.5.diff.gz fi elibtoolize epunt_cxx #74493 # Insane. sed -i -e "s:-O20::g" -e "s:-mfused-madd::g" configure sed -i -e "s:-mcpu=750::g" configure } src_compile() { # gcc-3.4 and k6 with -ftracer causes code generation problems #49472 if [[ "$(gcc-major-version)$(gcc-minor-version)" == "34" ]]; then is-flag -march=k6* && filter-flags -ftracer is-flag -mtune=k6* && filter-flags -ftracer replace-flags -Os -O2 fi econf emake || die "emake failed." } src_install() { emake DESTDIR="${D}" install || die "emake install failed." rm -rf "${D}"/usr/share/doc/${P} dodoc AUTHORS CHANGES README todo.txt if use doc; then docinto txt dodoc doc/*.txt dohtml -r doc fi }