diff options
Diffstat (limited to 'media-sound/alsaplayer/alsaplayer-0.99.80_rc3.ebuild')
-rw-r--r-- | media-sound/alsaplayer/alsaplayer-0.99.80_rc3.ebuild | 86 |
1 files changed, 0 insertions, 86 deletions
diff --git a/media-sound/alsaplayer/alsaplayer-0.99.80_rc3.ebuild b/media-sound/alsaplayer/alsaplayer-0.99.80_rc3.ebuild deleted file mode 100644 index 371c0d3c7300..000000000000 --- a/media-sound/alsaplayer/alsaplayer-0.99.80_rc3.ebuild +++ /dev/null @@ -1,86 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/alsaplayer/alsaplayer-0.99.80_rc3.ebuild,v 1.3 2007/10/08 13:27:41 drac Exp $ - -inherit eutils autotools versionator - -MY_PV="$(replace_version_separator _ -)" - -DESCRIPTION="A heavily multi-threaded pluggable audio player." -HOMEPAGE="http://www.alsaplayer.org/" -SRC_URI="http://www.alsaplayer.org/${PN}-${MY_PV}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~mips ~ppc ~sparc ~x86" -IUSE="alsa audiofile doc esd flac gtk jack mikmod nas ogg opengl oss vorbis xosd" - -RDEPEND="media-libs/libsndfile - media-libs/libmad - gtk? ( >=x11-libs/gtk+-2.8 ) - alsa? ( media-libs/alsa-lib ) - audiofile? ( media-libs/audiofile ) - esd? ( media-sound/esound ) - flac? ( media-libs/flac ) - jack? ( >=media-sound/jack-audio-connection-kit-0.80 ) - mikmod? ( >=media-libs/libmikmod-3.1.10 ) - nas? ( media-libs/nas ) - ogg? ( media-libs/libogg ) - opengl? ( virtual/opengl ) - vorbis? ( media-libs/libvorbis ) - xosd? ( x11-libs/xosd )" -DEPEND="${RDEPEND} - dev-util/pkgconfig - sys-devel/gettext - doc? ( app-doc/doxygen )" - -S="${WORKDIR}"/${PN}-${MY_PV} - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-glib.patch - epatch "${FILESDIR}"/${P}-flags.patch - eautoreconf -} - -src_compile() { - use xosd || export ac_cv_lib_xosd_xosd_create="no" - use doc || export ac_cv_prog_HAVE_DOXYGEN="false" - - local myconf - - if ! use alsa && ! use oss && ! use esd && ! use jack && ! use nas && ! use sparc; then - ewarn "You've disabled alsa, oss, esd, jack and nas. Enabling oss for you." - myconf="${myconf} --enable-oss" - fi - - if use ogg && use flac; then - myconf="${myconf} --enable-oggflac" - fi - - econf --disable-gtk --disable-sgi \ - $(use_enable audiofile) \ - $(use_enable esd) \ - $(use_enable flac) \ - $(use_enable gtk gtk2) \ - $(use_enable jack) \ - $(use_enable mikmod) \ - $(use_enable nas) \ - $(use_enable opengl) \ - $(use_enable oss) \ - $(use_enable sparc) \ - $(use_enable vorbis oggvorbis) \ - $(use_enable alsa) \ - --disable-dependency-tracking \ - ${myconf} - - emake || die "emake failed." -} - -src_install() { - emake DESTDIR="${D}" docdir="${D}/usr/share/doc/${PF}" install \ - || die "emake install failed." - - dodoc AUTHORS ChangeLog README TODO docs/wishlist.txt -} |