diff options
author | miwi <miwi@FreeBSD.org> | 2010-06-07 14:56:56 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2010-06-07 14:56:56 +0800 |
commit | 9871c645d41a709d7791281aed2d6f04f8f08f70 (patch) | |
tree | 56b0ce55095d338897740138a82a2ba1f22641c8 /audio | |
parent | b059bff569a447a84aba1f8c5811b57df1020005 (diff) | |
download | freebsd-ports-gnome-9871c645d41a709d7791281aed2d6f04f8f08f70.tar.gz freebsd-ports-gnome-9871c645d41a709d7791281aed2d6f04f8f08f70.tar.zst freebsd-ports-gnome-9871c645d41a709d7791281aed2d6f04f8f08f70.zip |
- Update to 0.4.0
PR: 146463
Submitted by: Gvozdikov Veniamin <g.veniamin@googlemail.com> (maintainer)
Diffstat (limited to 'audio')
-rw-r--r-- | audio/deadbeef/Makefile | 210 | ||||
-rw-r--r-- | audio/deadbeef/distinfo | 6 | ||||
-rw-r--r-- | audio/deadbeef/files/patch-Makefile.am | 13 | ||||
-rw-r--r-- | audio/deadbeef/files/patch-Makefile.in | 21 | ||||
-rw-r--r-- | audio/deadbeef/files/patch-configure | 57 | ||||
-rw-r--r-- | audio/deadbeef/files/patch-configure.ac | 34 | ||||
-rw-r--r-- | audio/deadbeef/pkg-descr | 11 | ||||
-rw-r--r-- | audio/deadbeef/pkg-plist | 129 |
8 files changed, 278 insertions, 203 deletions
diff --git a/audio/deadbeef/Makefile b/audio/deadbeef/Makefile index 5919b18faea3..8359fc372b9a 100644 --- a/audio/deadbeef/Makefile +++ b/audio/deadbeef/Makefile @@ -6,31 +6,207 @@ # PORTNAME= deadbeef -PORTVERSION= 0.3.3 -PORTREVISION= 4 +PORTVERSION= 0.4.0 CATEGORIES= audio MASTER_SITES= SF/${PORTNAME}/ +#DISTNAME= ${PORTNAME}-${PORTVERSION} MAINTAINER= g.veniamin@googlemail.com -COMMENT= DeaDBeeF is an audio player for GNU/Linux systems with X11 +COMMENT= DeaDBeeF is an audio player LIB_DEPENDS= samplerate.1:${PORTSDIR}/audio/libsamplerate \ - curl.6:${PORTSDIR}/ftp/curl \ - vorbis.4:${PORTSDIR}/audio/libvorbis \ - mad.2:${PORTSDIR}/audio/libmad \ - FLAC.10:${PORTSDIR}/audio/flac \ - wavpack.2:${PORTSDIR}/audio/wavpack \ - sndfile.1:${PORTSDIR}/audio/libsndfile \ - cdio.12:${PORTSDIR}/sysutils/libcdio \ - avcodec.1:${PORTSDIR}/multimedia/ffmpeg \ - avformat:${PORTSDIR}/multimedia/ffmpeg \ - avutil.1:${PORTSDIR}/multimedia/ffmpeg + mad.2:${PORTSDIR}/audio/libmad GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I../dumb/dumb-kode54/include -I${LOCALBASE}/include" \ +USE_BZIP2= yes +USE_ICONV= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" -USE_GNOME= gtk20 glib20 +CONFIGURE_ARGS= --disable-alsa --disable-nullout +WANT_GNOME= yes INSTALLS_ICONS= yes -MAKE_JOBS_SAFE= yes +MAKE_JOBS_SAGE= yes + +OPTIONS= PULSE "PulseAudio output plugin (unsupported)" off\ + GUI "standard GTK2 user interface plugin" on\ + VFS "HTTP streaming vfs plugin" on\ + LASTFM "last.fm/libre.fm scrobbler plugin" on\ + ART "album art loader plugin" on\ + EQ "SuperEQ DSP plugin" on\ + SID "commodore64 SID music player plugin" on\ + FFAP "Monkey's Audio plugin" on\ + VTX "libayemy VTX ZX-Spectrum music player plugin" on\ + ADP "adplug plugin" on\ + HOTKEYS "global hotkeys plugin" on\ + OGG "Ogg Vorbis player plugin" on\ + FFMPEG "FFMPEG plugin for WMA, MPC, TTA, etc" on\ + FLAC "FLAC player plugin" on\ + SNDFILE "libsndfile plugin for PCM wave files" on\ + WAV "wavpack plugin" on\ + CDDA "CD-Audio plugin" on\ + GME "Game Music Emu plugin for NSF, AY, etc" on\ + DUMB "D.U.M.B. plugin for MOD, S3M and other" on\ + NOTIFY "support for OSD notifications into GTKUI plugin" on + +.include <bsd.port.pre.mk> + +.if defined(WITHOUT_PULSE) +CONFIGURE_ARGS+= --disable-pulse +PLIST_SUB+= PULSE="@comment " +.else +PLIST_SUB+= PULSE="" +LIB_DEPENDS+= pulse.0:${PORTSDIR}/audio/pulseaudio +.endif + +.if defined(WITHOUT_GUI) +CONFIGURE_ARGS+= --disable-gtkui +PLIST_SUB+= GUI="@comment " +.else +PLIST_SUB+= GUI="" +USE_GNOME= gtk20 glib20 +.endif + +.if defined(WITHOUT_VFS) +CONFIGURE_ARGS+= --disable-vfs-curl +PLIST_SUB+= VFS="@comment " +.else +PLIST_SUB+= VFS="" +LIB_DEPENDS+= curl.6:${PORTSDIR}/ftp/curl +.endif + +.if defined(WITHOUT_LASTFM) +CONFIGURE_ARGS+= --disable-lfm +PLIST_SUB+= LASTFM="@comment " +.else +PLIST_SUB+= LASTFM="" +LIB_DEPENDS+= curl.6:${PORTSDIR}/ftp/curl +.endif + +.if defined(WITHOUT_ART) +CONFIGURE_ARGS+= --disable-artwork +PLIST_SUB+= ART="@comment " +.else +.if !defined(WITHOUT_VFS) +PLIST_SUB+= ART="" +LIB_DEPENDS+= curl.6:${PORTSDIR}/ftp/curl +.else +BROKEN= Please enable VFS plugin +.endif +.endif + +.if defined(WITHOUT_EQ) +CONFIGURE_ARGS+= --disable-supereq +PLIST_SUB+= EQ="@comment " +.else +PLIST_SUB+= EQ="" +.endif + +.if defined(WITHOUT_SID) +CONFIGURE_ARGS+= --disable-sid +PLIST_SUB+= SID="@comment " +.else +PLIST_SUB+= SID="" +.endif + +.if defined(WITHOUT_FFAP) +CONFIGURE_ARGS+= --disable-ffap +PLIST_SUB+= FFAP="@comment " +.else +PLIST_SUB+= FFAP="" +.endif + +.if defined(WITHOUT_VTX) +CONFIGURE_ARGS+= --disable-vtx +PLIST_SUB+= VTX="@comment " +.else +PLIST_SUB+= VTX="" +.endif + +.if defined(WITHOUT_ADP) +CONFIGURE_ARGS+= --disable-adplug +PLIST_SUB+= ADP="@comment " +.else +PLIST_SUB+= ADP="" +.endif + +.if defined(WITHOUT_HOTKEYS) +CONFIGURE_ARGS+= --disable-hotkeys +PLIST_SUB+= HOTKEYS="@comment " +.else +PLIST_SUB+= HOTKEYS="" +.endif + +.if defined(WITHOUT_OGG) +CONFIGURE_ARGS+= --disable-vorbis +PLIST_SUB+= OGG="@comment " +.else +LIB_DEPENDS+= vorbis.4:${PORTSDIR}/audio/libvorbis +PLIST_SUB+= OGG="" +.endif + +.if defined(WITHOUT_FFMPEG) +CONFIGURE_ARGS+= --disable-ffmpeg +PLIST_SUB+= FFMPEG="@comment " +.else +PLIST_SUB+= FFMPEG="" +LIB_DEPENDS+= avcodec.1:${PORTSDIR}/multimedia/ffmpeg \ + avformat:${PORTSDIR}/multimedia/ffmpeg \ + avutil.1:${PORTSDIR}/multimedia/ffmpeg +.endif + +.if defined(WITHOUT_FLAC) +CONFIGURE_ARGS+= --disable-flac +PLIST_SUB+= FLAC="@comment " +.else +LIB_DEPENDS+= FLAC.10:${PORTSDIR}/audio/flac +PLIST_SUB+= FLAC="" +.endif + +.if defined(WITHOUT_SNDFILE) +CONFIGURE_ARGS+= --disable-sndfile +PLIST_SUB+= SNDFILE="@comment " +.else +LIB_DEPENDS+= sndfile.1:${PORTSDIR}/audio/libsndfile +PLIST_SUB+= SNDFILE="" +.endif + +.if defined(WITHOUT_WAV) +CONFIGURE_ARGS+= --disable-wavpack +PLIST_SUB+= WAV="@comment " +.else +LIB_DEPENDS+= wavpack.2:${PORTSDIR}/audio/wavpack +PLIST_SUB+= WAV="" +.endif + +.if defined(WITHOUT_CDDA) +CONFIGURE_ARGS+= --disable-cdda +PLIST_SUB+= CDDA="@comment " +.else +PLIST_SUB+= CDDA="" +LIB_DEPENDS+= cdio.12:${PORTSDIR}/sysutils/libcdio \ + cddb.4:${PORTSDIR}:audio/libcddb +.endif + +.if defined(WITHOUT_GME) +CONFIGURE_ARGS+= --disable-gme +PLIST_SUB+= GME="@comment " +.else +PLIST_SUB+= GME="" +.endif + +.if defined(WITHOUT_DUMB) +CONFIGURE_ARGS+= --disable-dumb +PLIST_SUB+= DUMB="@comment " +.else +PLIST_SUB+= DUMB="" +.endif + +.if defined(WITHOUT_NOTIFY) +CONFIGURE_ARGS+= --disable-notify +PLIST_SUB+= NOTIFY="@comment " +.else +PLIST_SUB+= NOTIFY="" +LIB_DEPENDS+= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib +.endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/audio/deadbeef/distinfo b/audio/deadbeef/distinfo index 877196937aa4..7f33731640da 100644 --- a/audio/deadbeef/distinfo +++ b/audio/deadbeef/distinfo @@ -1,3 +1,3 @@ -MD5 (deadbeef-0.3.3.tar.gz) = 5f6a00dd18cd27f488f0660ce675182a -SHA256 (deadbeef-0.3.3.tar.gz) = b86517e22e834a9af5403f61b180572e55f379b547d64f41181bc78705b0f455 -SIZE (deadbeef-0.3.3.tar.gz) = 1420029 +MD5 (deadbeef-0.4.0.tar.bz2) = 4a8afe84288e2ca99f5b3dd584d11553 +SHA256 (deadbeef-0.4.0.tar.bz2) = 96febed8f52ec581ab902b1282a12e467123a2784395524d409c60f98ce53087 +SIZE (deadbeef-0.4.0.tar.bz2) = 1202706 diff --git a/audio/deadbeef/files/patch-Makefile.am b/audio/deadbeef/files/patch-Makefile.am deleted file mode 100644 index 67a02aaea457..000000000000 --- a/audio/deadbeef/files/patch-Makefile.am +++ /dev/null @@ -1,13 +0,0 @@ - -$FreeBSD$ - ---- Makefile.am.orig -+++ Makefile.am -@@ -10,7 +10,6 @@ - plugins/adplug\ - ${HOTKEYS_DIR}\ - ${ALSA_DIR}\ -- ${LFM_DIR}\ - ${MPGMAD_DIR}\ - ${VORBIS_DIR}\ - ${FLAC_DIR}\ diff --git a/audio/deadbeef/files/patch-Makefile.in b/audio/deadbeef/files/patch-Makefile.in deleted file mode 100644 index 2c16bf01823d..000000000000 --- a/audio/deadbeef/files/patch-Makefile.in +++ /dev/null @@ -1,21 +0,0 @@ - -$FreeBSD$ - ---- Makefile.in.orig -+++ Makefile.in -@@ -219,7 +219,6 @@ - INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ - LD = @LD@ - LDFLAGS = @LDFLAGS@ --LFM_DIR = @LFM_DIR@ - LIBOBJS = @LIBOBJS@ - LIBS = @LIBS@ - LIBTOOL = @LIBTOOL@ -@@ -327,7 +326,6 @@ - plugins/adplug\ - ${HOTKEYS_DIR}\ - ${ALSA_DIR}\ -- ${LFM_DIR}\ - ${MPGMAD_DIR}\ - ${VORBIS_DIR}\ - ${FLAC_DIR}\ diff --git a/audio/deadbeef/files/patch-configure b/audio/deadbeef/files/patch-configure deleted file mode 100644 index 02134dd8c782..000000000000 --- a/audio/deadbeef/files/patch-configure +++ /dev/null @@ -1,57 +0,0 @@ - -$FreeBSD$ - ---- configure.orig -+++ configure -@@ -786,7 +786,6 @@ - MAD_LIBS - HAVE_LIBMAD_FALSE - HAVE_LIBMAD_TRUE --LFM_DIR - CURL_LIBS - HAVE_CURL_FALSE - HAVE_CURL_TRUE -@@ -15315,11 +15314,6 @@ - - fi - --if test ${HAVE_CURL}; then -- LFM_DIR="plugins/lastfm" -- --fi -- - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lmad" >&5 - $as_echo_n "checking for main in -lmad... " >&6; } - if test "${ac_cv_lib_mad_main+set}" = set; then : -@@ -15901,14 +15895,6 @@ - - - -- if test $HAVE_CURL ; then -- echo " lastfm: yes - last.fm scrobbler" -- else -- echo " lastfm: no - last.fm scrobbler" -- fi -- -- -- - if test $HAVE_LIBMAD ; then - echo " mpgmad: yes - mpeg player based on libmad" - else -@@ -16022,7 +16008,7 @@ - - echo - --ac_config_files="$ac_config_files Makefile pixmaps/Makefile icons/Makefile gme/Game_Music_Emu-0.5.2/Makefile gme/Game_Music_Emu-0.5.2/gme/Makefile sid/sidplay-libs-2.1.0/Makefile dumb/Makefile plugins/alsa/Makefile plugins/hotkeys/Makefile plugins/lastfm/Makefile plugins/ffap/Makefile plugins/mpgmad/Makefile plugins/vorbis/Makefile plugins/flac/Makefile plugins/wavpack/Makefile plugins/sndfile/Makefile plugins/vfs_curl/Makefile plugins/cdda/Makefile plugins/gtkui/Makefile plugins/nullout/Makefile plugins/vtx/Makefile plugins/adplug/Makefile plugins/ffmpeg/Makefile plugins/oss/Makefile deadbeef.desktop" -+ac_config_files="$ac_config_files Makefile pixmaps/Makefile icons/Makefile gme/Game_Music_Emu-0.5.2/Makefile gme/Game_Music_Emu-0.5.2/gme/Makefile sid/sidplay-libs-2.1.0/Makefile dumb/Makefile plugins/alsa/Makefile plugins/hotkeys/Makefile plugins/ffap/Makefile plugins/mpgmad/Makefile plugins/vorbis/Makefile plugins/flac/Makefile plugins/wavpack/Makefile plugins/sndfile/Makefile plugins/vfs_curl/Makefile plugins/cdda/Makefile plugins/gtkui/Makefile plugins/nullout/Makefile plugins/vtx/Makefile plugins/adplug/Makefile plugins/ffmpeg/Makefile plugins/oss/Makefile deadbeef.desktop" - - cat >confcache <<\_ACEOF - # This file is a shell script that caches the results of configure -@@ -17158,7 +17144,6 @@ - "dumb/Makefile") CONFIG_FILES="$CONFIG_FILES dumb/Makefile" ;; - "plugins/alsa/Makefile") CONFIG_FILES="$CONFIG_FILES plugins/alsa/Makefile" ;; - "plugins/hotkeys/Makefile") CONFIG_FILES="$CONFIG_FILES plugins/hotkeys/Makefile" ;; -- "plugins/lastfm/Makefile") CONFIG_FILES="$CONFIG_FILES plugins/lastfm/Makefile" ;; - "plugins/ffap/Makefile") CONFIG_FILES="$CONFIG_FILES plugins/ffap/Makefile" ;; - "plugins/mpgmad/Makefile") CONFIG_FILES="$CONFIG_FILES plugins/mpgmad/Makefile" ;; - "plugins/vorbis/Makefile") CONFIG_FILES="$CONFIG_FILES plugins/vorbis/Makefile" ;; diff --git a/audio/deadbeef/files/patch-configure.ac b/audio/deadbeef/files/patch-configure.ac deleted file mode 100644 index 9cd7726bee78..000000000000 --- a/audio/deadbeef/files/patch-configure.ac +++ /dev/null @@ -1,34 +0,0 @@ - -$FreeBSD$ - ---- configure.ac.orig -+++ configure.ac -@@ -77,12 +77,6 @@ - AC_SUBST(CURL_LIBS) - fi - --dnl lastfm plugin --if test ${HAVE_CURL}; then -- LFM_DIR="plugins/lastfm" -- AC_SUBST(LFM_DIR) --fi -- - dnl mpgmad plugin - AC_CHECK_LIB([mad], [main], [HAVE_LIBMAD=1]) - AM_CONDITIONAL(HAVE_LIBMAD, test $HAVE_LIBMAD) -@@ -273,7 +267,6 @@ - PRINT_PLUGIN_INFO([gme],[chiptune music player based on GME],[true]) - PRINT_PLUGIN_INFO([dumb],[module player based on DUMB library],[true]) - PRINT_PLUGIN_INFO([ffap],[Monkey's audio (APE) decoder],[true]) --PRINT_PLUGIN_INFO([lastfm],[last.fm scrobbler],[test $HAVE_CURL]) - PRINT_PLUGIN_INFO([mpgmad],[mpeg player based on libmad],[test $HAVE_LIBMAD]) - PRINT_PLUGIN_INFO([vorbis],[ogg vorbis player],[test $HAVE_VORBISFILE && test $HAVE_VORBIS]) - PRINT_PLUGIN_INFO([flac],[flac player],[test $HAVE_FLAC]) -@@ -301,7 +294,6 @@ - dumb/Makefile - plugins/alsa/Makefile - plugins/hotkeys/Makefile --plugins/lastfm/Makefile - plugins/ffap/Makefile - plugins/mpgmad/Makefile - plugins/vorbis/Makefile diff --git a/audio/deadbeef/pkg-descr b/audio/deadbeef/pkg-descr index ad3fdab1c9c7..a1d8823622c5 100644 --- a/audio/deadbeef/pkg-descr +++ b/audio/deadbeef/pkg-descr @@ -1,13 +1,11 @@ -DeaDBeeF (as in 0xDEADBEEF) is an audio player for GNU/Linux systems with -X11 (though now it also runs in plain console without X, in FreeBSD, -and in OpenSolaris). +DeaDBeeF (as in 0xDEADBEEF) is an audio player. Main features: - mp3, ogg vorbis, flac, ape, wv, wav, m4a, mpc, cd audio (and many more) - sid, nsf and lots of other popular chiptune formats - ID3v1, ID3v2.2, ID3v2.3, ID3v2.4, APEv2, xing/info tags support - character set detection for non-unicode id3 tags - supports cp1251 and - iso8859-1 +iso8859-1 - unicode tags are fully supported as well (both utf8 and ucs2) - cuesheet (.cue files) support, with charset detection (utf8/cp1251/iso8859-1) - tracker modules like mod, s3m, it, xm, etc @@ -16,8 +14,9 @@ Main features: - drag and drop, both inside of playlist, and from filemanagers and such - control playback from command line - plugin support; bundled with lots of plugins, such as global hotkeys and - last.fm scrobbler; sdk is included +last.fm scrobbler; sdk is included - duration calculation is as precise as possible for vbr mp3 files (with and - without xing/info tags) +without xing/info tags) +- and etc... WWW: http://deadbeef.sourceforge.net/ diff --git a/audio/deadbeef/pkg-plist b/audio/deadbeef/pkg-plist index b44cdffc8003..0135e48ae94e 100644 --- a/audio/deadbeef/pkg-plist +++ b/audio/deadbeef/pkg-plist @@ -1,65 +1,89 @@ bin/deadbeef include/deadbeef/deadbeef.h -lib/deadbeef/adplug.a -lib/deadbeef/adplug.la -lib/deadbeef/adplug.so -lib/deadbeef/adplug.so.0 -lib/deadbeef/cdda.a -lib/deadbeef/cdda.la -lib/deadbeef/cdda.so -lib/deadbeef/cdda.so.0 -lib/deadbeef/ffap.a -lib/deadbeef/ffap.la -lib/deadbeef/ffap.so -lib/deadbeef/ffap.so.0 -lib/deadbeef/ffmpeg.a -lib/deadbeef/ffmpeg.la -lib/deadbeef/ffmpeg.so -lib/deadbeef/ffmpeg.so.0 -lib/deadbeef/flac.a -lib/deadbeef/flac.la -lib/deadbeef/flac.so -lib/deadbeef/flac.so.0 -lib/deadbeef/gtkui.a -lib/deadbeef/gtkui.la -lib/deadbeef/gtkui.so -lib/deadbeef/gtkui.so.0 -lib/deadbeef/hotkeys.a -lib/deadbeef/hotkeys.la -lib/deadbeef/hotkeys.so -lib/deadbeef/hotkeys.so.0 +%%ADP%%lib/deadbeef/adplug.a +%%ADP%%lib/deadbeef/adplug.la +%%ADP%%lib/deadbeef/adplug.so +%%ADP%%lib/deadbeef/adplug.so.0 +%%CDDA%%lib/deadbeef/cdda.a +%%CDDA%%lib/deadbeef/cdda.la +%%CDDA%%lib/deadbeef/cdda.so +%%CDDA%%lib/deadbeef/cdda.so.0 +%%FFAP%%lib/deadbeef/ffap.a +%%FFAP%%lib/deadbeef/ffap.la +%%FFAP%%lib/deadbeef/ffap.so +%%FFAP%%lib/deadbeef/ffap.so.0 +%%FFMPEG%%lib/deadbeef/ffmpeg.a +%%FFMPEG%%lib/deadbeef/ffmpeg.la +%%FFMPEG%%lib/deadbeef/ffmpeg.so +%%FFMPEG%%lib/deadbeef/ffmpeg.so.0 +%%FLAC%%lib/deadbeef/flac.a +%%FLAC%%lib/deadbeef/flac.la +%%FLAC%%lib/deadbeef/flac.so +%%FLAC%%lib/deadbeef/flac.so.0 +%%GUI%%lib/deadbeef/gtkui.a +%%GUI%%lib/deadbeef/gtkui.la +%%GUI%%lib/deadbeef/gtkui.so +%%GUI%%lib/deadbeef/gtkui.so.0 +%%HOTKEYS%%lib/deadbeef/hotkeys.a +%%HOTKEYS%%lib/deadbeef/hotkeys.la +%%HOTKEYS%%lib/deadbeef/hotkeys.so +%%HOTKEYS%%lib/deadbeef/hotkeys.so.0 lib/deadbeef/mpgmad.a lib/deadbeef/mpgmad.la lib/deadbeef/mpgmad.so lib/deadbeef/mpgmad.so.0 -lib/deadbeef/nullout.a -lib/deadbeef/nullout.la -lib/deadbeef/nullout.so -lib/deadbeef/nullout.so.0 lib/deadbeef/oss.a lib/deadbeef/oss.la lib/deadbeef/oss.so lib/deadbeef/oss.so.0 -lib/deadbeef/sndfile.a -lib/deadbeef/sndfile.la -lib/deadbeef/sndfile.so -lib/deadbeef/sndfile.so.0 -lib/deadbeef/vfs_curl.a -lib/deadbeef/vfs_curl.la -lib/deadbeef/vfs_curl.so -lib/deadbeef/vfs_curl.so.0 -lib/deadbeef/vorbis.a -lib/deadbeef/vorbis.la -lib/deadbeef/vorbis.so -lib/deadbeef/vorbis.so.0 -lib/deadbeef/vtx.a -lib/deadbeef/vtx.la -lib/deadbeef/vtx.so -lib/deadbeef/vtx.so.0 -lib/deadbeef/wavpack.a -lib/deadbeef/wavpack.la -lib/deadbeef/wavpack.so -lib/deadbeef/wavpack.so.0 +%%SNDFILE%%lib/deadbeef/sndfile.a +%%SNDFILE%%lib/deadbeef/sndfile.la +%%SNDFILE%%lib/deadbeef/sndfile.so +%%SNDFILE%%lib/deadbeef/sndfile.so.0 +%%VFS%%lib/deadbeef/vfs_curl.a +%%VFS%%lib/deadbeef/vfs_curl.la +%%VFS%%lib/deadbeef/vfs_curl.so +%%VFS%%lib/deadbeef/vfs_curl.so.0 +%%OGG%%lib/deadbeef/vorbis.a +%%OGG%%lib/deadbeef/vorbis.la +%%OGG%%lib/deadbeef/vorbis.so +%%OGG%%lib/deadbeef/vorbis.so.0 +%%VTX%%lib/deadbeef/vtx.a +%%VTX%%lib/deadbeef/vtx.la +%%VTX%%lib/deadbeef/vtx.so +%%VTX%%lib/deadbeef/vtx.so.0 +%%WAV%%lib/deadbeef/wavpack.a +%%WAV%%lib/deadbeef/wavpack.la +%%WAV%%lib/deadbeef/wavpack.so +%%WAV%%lib/deadbeef/wavpack.so.0 +%%LASTFM%%lib/deadbeef/lastfm.so.0 +%%LASTFM%%lib/deadbeef/lastfm.so +%%LASTFM%%lib/deadbeef/lastfm.la +%%LASTFM%%lib/deadbeef/lastfm.a +%%SID%%lib/deadbeef/sid.so.0 +%%SID%%lib/deadbeef/sid.so +%%SID%%lib/deadbeef/sid.la +%%SID%%lib/deadbeef/sid.a +%%ART%%lib/deadbeef/artwork.so.0 +%%ART%%lib/deadbeef/artwork.so +%%ART%%lib/deadbeef/artwork.la +%%ART%%lib/deadbeef/artwork.a +%%EQ%%lib/deadbeef/supereq.so.0 +%%EQ%%lib/deadbeef/supereq.so +%%EQ%%lib/deadbeef/supereq.la +%%EQ%%lib/deadbeef/supereq.a +%%GME%%lib/deadbeef/gme.so.0 +%%GME%%lib/deadbeef/gme.so +%%GME%%lib/deadbeef/gme.la +%%GME%%lib/deadbeef/gme.a +%%DUMB%%lib/deadbeef/dumb.so.0 +%%DUMB%%lib/deadbeef/dumb.so +%%DUMB%%lib/deadbeef/dumb.la +%%DUMB%%lib/deadbeef/dumb.a +%%NOTIFY%%lib/deadbeef/notify.so.0 +%%NOTIFY%%lib/deadbeef/notify.so +%%NOTIFY%%lib/deadbeef/notify.la +%%NOTIFY%%lib/deadbeef/notify.a share/applications/deadbeef.desktop %%DATADIR%%/pixmaps/buffering_16.png %%DATADIR%%/pixmaps/next_24.png @@ -79,6 +103,7 @@ share/applications/deadbeef.desktop share/icons/hicolor/16x16/apps/deadbeef.png share/icons/hicolor/32x32/apps/deadbeef.png share/icons/hicolor/48x48/apps/deadbeef.png +%%DATADIR%%/pixmaps/noartwork.jpg @dirrm %%DOCSDIR%% @dirrm %%DATADIR%%/pixmaps @dirrm %%DATADIR%% |