diff options
Diffstat (limited to 'media-sound/lame/lame-3.99.5.ebuild')
-rw-r--r-- | media-sound/lame/lame-3.99.5.ebuild | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/media-sound/lame/lame-3.99.5.ebuild b/media-sound/lame/lame-3.99.5.ebuild index 1d8baab9a1d2..8ef7467faf4e 100644 --- a/media-sound/lame/lame-3.99.5.ebuild +++ b/media-sound/lame/lame-3.99.5.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5.ebuild,v 1.15 2013/03/03 15:08:00 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/lame/lame-3.99.5.ebuild,v 1.16 2015/01/29 18:54:46 mgorny Exp $ EAPI=4 inherit autotools eutils @@ -13,13 +13,13 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" -IUSE="debug mmx mp3rtp sndfile static-libs" +IUSE="debug cpu_flags_x86_mmx mp3rtp sndfile static-libs" RDEPEND=">=sys-libs/ncurses-5.7-r7 sndfile? ( >=media-libs/libsndfile-1.0.2 )" DEPEND="${RDEPEND} virtual/pkgconfig - mmx? ( dev-lang/nasm )" + cpu_flags_x86_mmx? ( dev-lang/nasm )" src_prepare() { epatch \ @@ -32,14 +32,14 @@ src_prepare() { sed -i -e '/define sp/s/+/ + /g' libmp3lame/i386/nasm.h || die - use mmx || sed -i -e '/AC_PATH_PROG/s:nasm:dIsAbLe&:' configure.in #361879 + use cpu_flags_x86_mmx || sed -i -e '/AC_PATH_PROG/s:nasm:dIsAbLe&:' configure.in #361879 AT_M4DIR=. eautoreconf } src_configure() { local myconf - use mmx && myconf+="--enable-nasm" #361879 + use cpu_flags_x86_mmx && myconf+="--enable-nasm" #361879 use sndfile && myconf+=" --with-fileio=sndfile" econf \ |