-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Rosen Aleksandrov
committed
May 28, 2019
1 parent
c2b6db0
commit f968381
Showing
1 changed file
with
107 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
# Copyright 2010 Jonathan Dahan <[email protected]> | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
require sourceforge | ||
ESCRIPTION="foobar2k-like music player" | ||
SUMMARY="GTK2/GTK3 mp3/ogg/flac/ape/sid/mod/nsf/m4a/mpc/wav/dts music player" | ||
HOMEPAGE="http://deadbeef.sourceforge.net" | ||
#DOWNLOADS="" | ||
LICENCES="GPL-2" | ||
SLOT="1" | ||
PLATFORMS="~amd64 ~x86" | ||
MYOPTIONS=" | ||
aac | ||
ape [[ description = [ Monkey's audio (.ape) support ] ]] | ||
cdda [[ description = [ CD-Audio support ] ]] | ||
converter [[ | ||
description = [ Convert from any supported format ] | ||
requires = [ gtk gtk3 ] | ||
]] | ||
curl | ||
dts | ||
flac | ||
game [[ description = [ sid, nfs, ay, support ] ]] | ||
gtk | ||
gtk3 | ||
lastfm [[ | ||
description = [ last.fm/libre.fm scrobbler ] | ||
requires = curl | ||
]] | ||
m3u [[ description = [ m3u support ] ]] | ||
midi [[ description = [ MIDI music format support ] ]] | ||
mp3 | ||
musepack | ||
notify [[ description = [ Notification-daemon support ] ]] | ||
vorbis | ||
vtx [[ description = [ VTX ZX-Spectrum music format support ] ]] | ||
wavpack [[ description = [ Wavepack audio format support ] ]] | ||
zip [[ description = [ Zip archives support ] ]] | ||
|
||
( alsa oss pulseaudio ) [[ number-selected = at-least-one ]] | ||
" | ||
|
||
DEPENDENCIES=" | ||
build: | ||
dev-util/intltool | ||
dev-util/pkg-config | ||
build+run: | ||
media-libs/libsamplerate | ||
media-libs/libsndfile | ||
|
||
aac? ( media-libs/faad2 ) | ||
alsa? ( sys-sound/alsa-lib ) | ||
cdda? ( dev-libs/libcdio media-libs/libcddb ) | ||
curl? ( net-misc/curl[>=7.10] ) | ||
flac? ( media-libs/flac ) | ||
game? ( sys-libs/zlib ) | ||
gtk? ( x11-libs/gtk+:2[>=2.12] ) | ||
gtk3? ( x11-libs/gtk+:3 ) | ||
mp3? ( media-libs/libmad ) | ||
notify? ( sys-apps/dbus ) | ||
oss? ( media-libs/oss ) | ||
pulseaudio? ( media-sound/pulseaudio ) | ||
vorbis? ( media-libs/libvorbis media-libs/libogg ) | ||
wavpack? ( media-sound/wavpack ) | ||
zip? ( | ||
app-arch/libzip | ||
sys-libs/zlib | ||
) | ||
dev-libs/jansson | ||
" | ||
|
||
BUGS_TO="[email protected]" | ||
|
||
DEFAULT_SRC_CONFIGURE_PARAMS=( | ||
--enable-adplug | ||
--enable-artwork | ||
--disable-ffmpeg | ||
--enable-sndfile | ||
--enable-supereq | ||
) | ||
DEFAULT_SRC_CONFIGURE_OPTION_ENABLES=( | ||
'aac' | ||
'alsa' | ||
'ape ffap' | ||
'cdda' | ||
'converter' | ||
'curl vfs-curl' | ||
'dts dca' | ||
'flac' | ||
'game gme' | ||
'game sid' | ||
'gtk gtkui' | ||
'gtk3 gtkui' | ||
'lastfm lfm' | ||
'midi wildmidi' | ||
'm3u' | ||
'mp3 mad' | ||
'musepack' | ||
'notify' | ||
'oss' | ||
'pulseaudio pulse' | ||
'vorbis' | ||
'vtx' | ||
'wavpack' | ||
'zip vfs-zip' | ||
) | ||
|