# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-sound/alsaplayer/alsaplayer-0.99.81.ebuild,v 1.2 2010/11/09 13:33:23 ssuominen Exp $ EAPI=2 inherit autotools eutils DESCRIPTION="A heavily multi-threaded pluggable audio player." HOMEPAGE="http://www.alsaplayer.org" SRC_URI="http://www.${PN}.org/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~mips ~ppc ~sparc ~x86" IUSE="alsa audiofile doc esd flac gtk id3tag jack mad mikmod nas nls ogg opengl oss vorbis xosd" RDEPEND="media-libs/libsndfile sys-libs/zlib alsa? ( media-libs/alsa-lib ) audiofile? ( media-libs/audiofile ) esd? ( media-sound/esound ) flac? ( media-libs/flac ) gtk? ( >=x11-libs/gtk+-2.10:2 ) id3tag? ( media-libs/libid3tag ) jack? ( >=media-sound/jack-audio-connection-kit-0.80 ) mad? ( media-libs/libmad ) mikmod? ( media-libs/libmikmod ) nas? ( media-libs/nas ) ogg? ( media-libs/libogg ) opengl? ( virtual/opengl ) vorbis? ( media-libs/libvorbis ) xosd? ( x11-libs/xosd )" DEPEND="${RDEPEND} dev-util/pkgconfig doc? ( app-doc/doxygen ) nls? ( sys-devel/gettext )" src_prepare() { sed -i \ -e 's:AM_CFLAGS = $(AM_CXXFLAGS)::' \ output/jack/Makefile.am || die sed -i \ -e 's:-O2 -funroll-loops -finline-functions -ffast-math::' \ configure.ac || die eautoreconf } src_configure() { use doc || export ac_cv_prog_HAVE_DOXYGEN=false use xosd || export ac_cv_lib_xosd_xosd_create=no local myconf if ! use alsa && ! use oss && ! use esd && ! use jack && ! use nas; then myconf="--enable-oss" fi econf \ --docdir=/usr/share/doc/${PF} \ --disable-dependency-tracking \ $(use_enable nls) \ $(use_enable opengl) \ $(use_enable mikmod) \ $(use_enable vorbis oggvorbis) \ $(use_enable audiofile) \ $(use_enable flac) \ $(use_enable mad) \ $(use_enable id3tag) \ $(use_enable gtk systray) \ $(use_enable jack) \ $(use_enable alsa) \ $(use_enable esd) \ $(use_enable oss) \ $(use_enable gtk gtk2) \ $(use_enable nas) \ ${myconf} } src_install() { emake DESTDIR="${D}" install || die dodoc AUTHORS ChangeLog README TODO docs/*.txt newicon interface/gtk2/pixmaps/logo.xpm ${PN}.xpm find "${D}" -name '*.la' -exec rm -f '{}' + }