# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-sound/musepack-tools/musepack-tools-1.15s-r2.ebuild,v 1.5 2005/09/04 10:39:42 flameeyes Exp $ IUSE="static 16bit" inherit eutils flag-o-matic S="${WORKDIR}/sv7" DESCRIPTION="Musepack audio compression tools" HOMEPAGE="http://www.musepack.net" SRC_URI="http://www.saunalahti.fi/grimmel/musepack.net/source/mpcsv7-src-${PV}.tar.gz" SLOT="0" LICENSE="LGPL-2.1" KEYWORDS="amd64 x86" RDEPEND="media-sound/esound media-libs/id3lib" DEPEND="${RDEPEND} x86? ( dev-lang/nasm ) amd64? ( dev-lang/nasm )" src_unpack() { unpack ${A} cd ${S} # Cosmetic changes mainly to allow using of custom CFLAGS epatch ${FILESDIR}/${P}-Makefile.patch # Get rid of -mpreferred-stack-boundary=2 as it breaks amd64 sed -i 's:-mpreferred-stack-boundary=2::' Makefile sed -i 's/#define USE_IRIX_AUDIO/#undef USE_IRIX_AUDIO/' mpp.h if ! use esd ; then sed -i 's/#define USE_ESD_AUDIO/#undef USE_ESD_AUDIO/' mpp.h sed -i 's/LDADD += -lesd/#LDADD += -lesd/' Makefile fi if ! use x86 ; then sed -i 's/#define USE_ASM/#undef USE_ASM/' mpp.h fi use 16bit && sed -i 's|//#define MAKE_16BIT|#define MAKE_16BIT|' mpp.h } src_compile() { filter-flags "-fprefetch-loop-arrays" filter-flags "-mfpmath=sse" "-mfpmath=sse,387" use static && export BLDSTATIC=1 emake mppenc mppdec replaygain tagger || die } src_install() { dobin mppenc mppdec replaygain tagger dodoc README doc/ChangeLog doc/MANUAL.TXT doc/NEWS doc/SV7.txt doc/TODO* }