mirror of
https://github.com/gryf/gryf-overlay.git
synced 2025-12-28 17:32:32 +01:00
89 lines
2.2 KiB
Bash
89 lines
2.2 KiB
Bash
# Copyright 2010 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI="3"
|
|
|
|
inherit fdo-mime
|
|
|
|
DESCRIPTION="foobar2000-like music player."
|
|
HOMEPAGE="http://deadbeef.sourceforge.net/"
|
|
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
|
|
LICENSE="|| ( GPL-2 LGPL-2.1 )"
|
|
|
|
SLOT="0"
|
|
KEYWORDS="x86 ~amd64"
|
|
IUSE="+gtk +alsa ffmpeg pulseaudio +mad +vorbis +flac wavpack +sndfile cdda +hotkeys
|
|
oss lastfm adplug ffap sid nullout +supereq vtx gme dumb +dbus +artwork curl
|
|
shellexec musepack tta dts aac mms shorten audiooverload"
|
|
|
|
RDEPEND="
|
|
media-libs/libsamplerate
|
|
gtk? ( x11-libs/gtk+:2 )
|
|
alsa? ( media-libs/alsa-lib )
|
|
ffmpeg? ( media-video/ffmpeg )
|
|
pulseaudio? ( media-sound/pulseaudio )
|
|
mad? ( media-libs/libmad )
|
|
vorbis? ( media-libs/libvorbis )
|
|
flac? ( media-libs/flac )
|
|
wavpack? ( media-sound/wavpack )
|
|
sndfile? ( media-libs/libsndfile )
|
|
cdda? ( dev-libs/libcdio media-libs/libcddb )
|
|
lastfm? ( net-misc/curl )
|
|
artwork? ( net-misc/curl )
|
|
curl? ( net-misc/curl )
|
|
dbus? ( sys-apps/dbus )
|
|
musepack? ( media-sound/musepack-tools )
|
|
dts? ( media-libs/libdca )
|
|
aac? ( media-libs/faad2 )
|
|
mms? ( media-libs/libmms )
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_configure() {
|
|
my_config="$(use_enable gtk gtkui) \
|
|
$(use_enable alsa) \
|
|
$(use_enable ffmpeg) \
|
|
$(use_enable pulseaudio pulse) \
|
|
$(use_enable mad) \
|
|
$(use_enable vorbis) \
|
|
$(use_enable flac) \
|
|
$(use_enable wavpack) \
|
|
$(use_enable sndfile) \
|
|
$(use_enable cdda) \
|
|
$(use_enable hotkeys) \
|
|
$(use_enable oss) \
|
|
$(use_enable lastfm lfm) \
|
|
$(use_enable adplug) \
|
|
$(use_enable ffap) \
|
|
$(use_enable sid) \
|
|
$(use_enable nullout) \
|
|
$(use_enable supereq) \
|
|
$(use_enable vtx) \
|
|
$(use_enable gme) \
|
|
$(use_enable dumb) \
|
|
$(use_enable dbus notify) \
|
|
$(use_enable musepack) \
|
|
$(use_enable tta) \
|
|
$(use_enable dts dca)
|
|
$(use_enable aac) \
|
|
$(use_enable shorten shn) \
|
|
$(use_enable audiooverload ao) \
|
|
$(use_enable shellexec)"
|
|
if use artwork ; then
|
|
# artwork need vfs-curl plugin, we force it
|
|
my_config="${my_config} \
|
|
--enable-vfs-curl \
|
|
$(use_enable artwork)"
|
|
else
|
|
my_config="${my_config} \
|
|
$(use_enable curl vfs-curl) \
|
|
$(use_enable artwork)"
|
|
fi
|
|
econf ${my_config} || die
|
|
}
|
|
|
|
src_install() {
|
|
make DESTDIR="${D}" install || die
|
|
}
|