Index: head/audio/amarok/Makefile =================================================================== --- head/audio/amarok/Makefile (revision 169464) +++ head/audio/amarok/Makefile (revision 169465) @@ -1,112 +1,107 @@ # New ports collection makefile for: amarok # Date created: Tue Feb 24 02:21:14 CET 2004 # Whom: Markus Brueffer # # $FreeBSD$ PORTNAME= amarok -PORTVERSION= 1.4.0a +PORTVERSION= 1.4.1 CATEGORIES= audio kde MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED} MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= mich@FreeBSD.org COMMENT= Media player for KDE LIB_DEPENDS= tag.5:${PORTSDIR}/audio/taglib \ - tunepimp:${PORTSDIR}/audio/libtunepimp \ + tunepimp.3:${PORTSDIR}/audio/libtunepimp-old \ mp4v2:${PORTSDIR}/multimedia/mpeg4ip-libmp4v2 \ xine.15:${PORTSDIR}/multimedia/libxine -MIN_OPTIONS_VER= ${PORTNAME}-1.4.0a +MIN_OPTIONS_VER= ${PORTNAME}-1.4.1 USE_BZIP2= yes USE_KDEBASE_VER=3 USE_GMAKE= yes USE_AUTOTOOLS= libtool:15 USE_SDL= sdl USE_RUBY= yes -WRKSRC= ${WRKDIR}/${PORTNAME}-1.4.0 OPTIONS= GPOD "iPod support" on \ XMMS "XMMS visualizations" off \ - LIBVISUAL "libvisual support" off \ OPENGL "OpenGL support" on \ AMAZON "Amazon cover fetching support" on \ MYSQL "Use MySQL as collection backend" off \ POSTGRESQL "Use PostgreSQL as collection backend" off \ .include +.if ${OSVERSION} < 500000 +EXTRA_PATCHES+= ${PATCHDIR}/extra-amarok_src_expression.h +.endif + CONFIGURE_ARGS+=--without-exscalibar \ --with-mp4v2 \ - --with-mp4v2-dir=${PREFIX} + --with-mp4v2-dir=${PREFIX} \ + --without-libvisual .if !defined(WITH_GPOD) PLIST_SUB+= GPOD="@comment " .else LIB_DEPENDS+= gpod.302:${PORTSDIR}/audio/libgpod CONFIGURE_ARGS+=--with-libgpod PLIST_SUB+= GPOD="" .endif .if !defined(WITH_XMMS) PLIST_SUB+= XMMS="@comment " CONFIGURE_ARGS+=--without-xmms .else BUILD_DEPENDS+= xmms-config:${PORTSDIR}/multimedia/xmms LIB_DEPENDS+= xmms.4:${PORTSDIR}/multimedia/xmms PLIST_SUB+= XMMS="" -.endif - -.if !defined(WITH_LIBVISUAL) -PLIST_SUB+= LIBVISUAL="@comment " -CONFIGURE_ARGS+=--without-libvisual -.else -LIB_DEPENDS+= visual.0:${PORTSDIR}/graphics/libvisual -PLIST_SUB+= LIBVISUAL="" .endif .if defined(WITHOUT_OPENGL) CONFIGURE_ARGS+=--without-opengl .endif .if defined(WITHOUT_AMAZON) CONFIGURE_ARGS+=--disable-amazon .endif .if defined(WITH_MYSQL) USE_MYSQL= yes CONFIGURE_ARGS+=--enable-mysql .endif .if defined(WITH_POSTGRESQL) USE_PGSQL= yes CONFIGURE_ARGS+=--enable-postgresql .endif pre-extract: check-options-version post-patch: @${REINPLACE_CMD} -e 's|-O2||g' ${WRKSRC}/${CONFIGURE_SCRIPT} @${REINPLACE_CMD} -e 's|LIBS="-ltunepimp $$LIBS"|LIBS="-ltunepimp -liconv $$LIBS"|g' \ ${WRKSRC}/${CONFIGURE_SCRIPT} @${REINPLACE_CMD} -e 's|xx||g' ${WRKSRC}/po/Makefile.in @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${TOUCH} post-install: .if defined(WITH_LIBVISUAL) @${CAT} ${PKGMESSAGE} .endif check-options-version: .ifdef(_OPTIONS_READ) @(if ${PKG_VERSION} -t ${_OPTIONS_READ} ${MIN_OPTIONS_VER} | ${GREP} -q '<'; \ then ${ECHO_CMD} ""; \ ${ECHO_CMD} "===> You have unsupported (old) OPTIONS, please do a 'make rmconfig; make'"; \ ${ECHO_CMD} ""; \ exit 1; \ fi) .endif .include Property changes on: head/audio/amarok/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.49 \ No newline at end of property +1.50 \ No newline at end of property Index: head/audio/amarok/distinfo =================================================================== --- head/audio/amarok/distinfo (revision 169464) +++ head/audio/amarok/distinfo (revision 169465) @@ -1,3 +1,3 @@ -MD5 (amarok-1.4.0a.tar.bz2) = 3ceffe6465290eef618861cdb81b420a -SHA256 (amarok-1.4.0a.tar.bz2) = 46d298226ff855c68b1d179d900441fd3c2329f42a938c3fc842a218ab762344 -SIZE (amarok-1.4.0a.tar.bz2) = 13045009 +MD5 (amarok-1.4.1.tar.bz2) = 4ed6e766541c4227d1d8c8eb93d0b891 +SHA256 (amarok-1.4.1.tar.bz2) = dbe4397d041a77f7ded063f50d5cfd2faf0e9efce9b4483589f751c20ff89ccd +SIZE (amarok-1.4.1.tar.bz2) = 13509939 Property changes on: head/audio/amarok/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.15 \ No newline at end of property +1.16 \ No newline at end of property Index: head/audio/amarok/files/extra-amarok_src_expression.h =================================================================== --- head/audio/amarok/files/extra-amarok_src_expression.h (nonexistent) +++ head/audio/amarok/files/extra-amarok_src_expression.h (revision 169465) @@ -0,0 +1,16 @@ + +$FreeBSD$ + +--- amarok/src/expression.h.orig ++++ amarok/src/expression.h +@@ -27,8 +27,8 @@ + { + QString field; + QString text; +- bool negate: 1; +- enum { Contains, Less, More } match: 2; ++ bool negate; ++ enum { Contains, Less, More } match; + expression_element(): negate( false ), match( Contains ) { } + }; + typedef QValueVector or_list; Property changes on: head/audio/amarok/files/extra-amarok_src_expression.h ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/audio/amarok/files/patch-amarok_src_lastfm.cpp =================================================================== --- head/audio/amarok/files/patch-amarok_src_lastfm.cpp (nonexistent) +++ head/audio/amarok/files/patch-amarok_src_lastfm.cpp (revision 169465) @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- amarok/src/lastfm.cpp.orig ++++ amarok/src/lastfm.cpp +@@ -729,7 +729,7 @@ + + QCString md5pass = KMD5( KMD5( m_password.utf8() ).hexDigest() + currentTime ).hexDigest(); + +- QString token = QString( "user=%1&auth=%2&nonce=%3recipient=%4" ) ++ token = QString( "user=%1&auth=%2&nonce=%3recipient=%4" ) + .arg( QString( QUrl( currentUsername() ).encodedPathAndQuery() ) ) + .arg( QString( QUrl( md5pass ).encodedPathAndQuery() ) ) + .arg( QString( QUrl( challenge ).encodedPathAndQuery() ) ) Property changes on: head/audio/amarok/files/patch-amarok_src_lastfm.cpp ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/audio/amarok/pkg-plist =================================================================== --- head/audio/amarok/pkg-plist (revision 169464) +++ head/audio/amarok/pkg-plist (revision 169465) @@ -1,727 +1,948 @@ bin/amarok bin/amarokapp bin/amarokcollectionscanner +bin/amarok_proxy.rb lib/libamarok.so lib/libamarok.so.0 lib/libamarok.a lib/libamarok.la -%%LIBVISUAL%%bin/amarok_libvisual %%XMMS%%bin/amarok_xmmswrapper2 lib/kde3/konqsidebar_universalamarok.a lib/kde3/konqsidebar_universalamarok.la lib/kde3/konqsidebar_universalamarok.so %%GPOD%%lib/kde3/libamarok_ipod-mediadevice.so %%GPOD%%lib/kde3/libamarok_ipod-mediadevice.la %%GPOD%%lib/kde3/libamarok_ipod-mediadevice.a lib/kde3/libamarok_generic-mediadevice.so lib/kde3/libamarok_generic-mediadevice.la lib/kde3/libamarok_generic-mediadevice.a lib/kde3/libamarok_xine-engine.a lib/kde3/libamarok_xine-engine.la lib/kde3/libamarok_xine-engine.so lib/kde3/libamarok_void-engine_plugin.a lib/kde3/libamarok_void-engine_plugin.la lib/kde3/libamarok_void-engine_plugin.so share/applications/kde/amarok.desktop share/apps/amarok/amarokui.rc -share/apps/amarok/amarokui_xmms.rc +share/apps/amarok/data/Amarok_1.4_Welcome.ogg share/apps/amarok/data/Cool-Streams.xml -share/apps/amarok/data/amaroK_1.4_welcome.ogg share/apps/amarok/data/ball.png share/apps/amarok/data/dot.png share/apps/amarok/data/equalizer_presets.xml share/apps/amarok/data/firstrun.m3u share/apps/amarok/data/grid.png share/apps/amarok/data/wirl1.png share/apps/amarok/data/wirl2.png share/apps/amarok/icons/crystalsvg/16x16/actions/covermanager.png share/apps/amarok/icons/crystalsvg/16x16/actions/dynamic.png share/apps/amarok/icons/crystalsvg/16x16/actions/equalizer.png share/apps/amarok/icons/crystalsvg/16x16/actions/mini_dock.png share/apps/amarok/icons/crystalsvg/16x16/actions/player_playlist_2.png +share/apps/amarok/icons/crystalsvg/16x16/actions/podcast.png +share/apps/amarok/icons/crystalsvg/16x16/actions/podcast_new.png share/apps/amarok/icons/crystalsvg/16x16/actions/random.png share/apps/amarok/icons/crystalsvg/16x16/actions/repeat_playlist.png share/apps/amarok/icons/crystalsvg/16x16/actions/repeat_track.png share/apps/amarok/icons/crystalsvg/16x16/actions/visualizations.png share/apps/amarok/icons/crystalsvg/16x16/actions/wiki.png +share/apps/amarok/icons/crystalsvg/22x22/actions/amarok_podcast.png +share/apps/amarok/icons/crystalsvg/22x22/actions/amarok_podcast_new.png +share/apps/amarok/icons/crystalsvg/22x22/actions/babelfish.png share/apps/amarok/icons/crystalsvg/22x22/actions/dynamic.png share/apps/amarok/icons/crystalsvg/22x22/actions/player_playlist_2.png share/apps/amarok/icons/crystalsvg/22x22/actions/random.png share/apps/amarok/icons/crystalsvg/22x22/actions/repeat_playlist.png share/apps/amarok/icons/crystalsvg/64x64/actions/dynamic.png +share/apps/amarok/icons/crystalsvg/64x64/actions/podcast.png +share/apps/amarok/icons/crystalsvg/64x64/actions/podcast_new.png share/apps/amarok/icons/crystalsvg/64x64/actions/random.png share/apps/amarok/icons/crystalsvg/64x64/actions/repeat_playlist.png -share/apps/amarok/icons/crystalsvg/scalable/actions/dynamic.svg -share/apps/amarok/icons/crystalsvg/scalable/actions/player_playlist_2.svg +share/apps/amarok/icons/hicolor/16x16/actions/amarok_add_lyrics.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_add_playlist.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_album.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_artist.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_audioscrobbler.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_back.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_burn.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_change_language.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_circle.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_clock.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_collection.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_configure.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_covermanager.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_device.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_download.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_dynamic.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_edit.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_editcopy.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_equalizer.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_external.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_fastforward.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_favourite_genres.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_files.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_files2.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_info.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_love.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_lyrics.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_mostplayed.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_music.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_next.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_pause.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_play.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_playlist.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_playlist_clear.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_playlist_refresh.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_podcast.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_podcast2.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_queue.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_random.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_random_album.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_random_no.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_random_track.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_redo.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_refresh.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_remove.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_remove_from_playlist.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_repeat_album.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_repeat_no.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_repeat_playlist.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_repeat_track.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_rescan.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_rewind.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_save.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_scripts.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_search.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_settings_engine.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_settings_general.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_settings_indicator.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_settings_playback.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_settings_view.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_stop.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_track.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_undo.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_visualizations.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_zoom.png share/apps/amarok/icons/hicolor/16x16/actions/collection.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_add_lyrics.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_add_playlist.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_album.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_artist.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_audioscrobbler.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_back.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_burn.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_change_language.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_circle.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_clock.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_collection.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_configure.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_covermanager.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_device.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_download.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_dynamic.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_edit.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_editcopy.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_equalizer.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_external.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_fastforward.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_favourite_genres.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_files.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_files2.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_info.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_love.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_lyrics.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_mostplayed.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_music.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_next.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_pause.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_play.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_playlist.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_playlist_clear.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_playlist_refresh.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_podcast.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_podcast2.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_queue.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_random.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_random_album.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_random_no.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_random_track.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_redo.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_refresh.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_remove.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_remove_from_playlist.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_repeat_album.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_repeat_no.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_repeat_playlist.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_repeat_track.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_rescan.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_rewind.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_save.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_scripts.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_search.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_settings_engine.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_settings_general.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_settings_indicator.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_settings_playback.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_settings_view.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_stop.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_track.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_undo.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_visualizations.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_zoom.png share/apps/amarok/icons/hicolor/22x22/actions/collection.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_add_lyrics.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_add_playlist.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_album.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_artist.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_audioscrobbler.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_back.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_burn.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_change_language.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_circle.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_clock.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_collection.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_configure.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_covermanager.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_device.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_download.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_dynamic.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_edit.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_editcopy.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_equalizer.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_external.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_fastforward.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_favourite_genres.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_files.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_files2.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_info.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_love.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_lyrics.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_mostplayed.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_music.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_next.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_pause.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_play.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_playlist.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_playlist_clear.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_playlist_refresh.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_podcast.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_podcast2.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_queue.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_random.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_random_album.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_random_no.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_random_track.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_redo.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_refresh.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_remove.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_remove_from_playlist.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_repeat_album.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_repeat_no.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_repeat_playlist.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_repeat_track.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_rescan.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_rewind.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_save.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_scripts.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_search.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_settings_engine.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_settings_general.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_settings_indicator.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_settings_playback.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_settings_view.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_stop.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_track.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_undo.png -share/apps/amarok/icons/hicolor/32x32/actions/collection.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_visualizations.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_zoom.png share/apps/amarok/icons/hicolor/32x32/actions/audioscrobbler.png +share/apps/amarok/icons/hicolor/32x32/actions/collection.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_add_lyrics.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_add_playlist.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_album.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_artist.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_audioscrobbler.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_back.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_burn.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_change_language.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_circle.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_clock.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_collection.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_configure.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_covermanager.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_device.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_download.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_dynamic.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_edit.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_editcopy.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_equalizer.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_external.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_fastforward.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_favourite_genres.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_files.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_files2.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_info.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_love.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_lyrics.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_mostplayed.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_music.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_next.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_pause.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_play.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_playlist.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_playlist_clear.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_playlist_refresh.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_podcast.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_podcast2.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_queue.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_random.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_random_album.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_random_no.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_random_track.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_redo.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_refresh.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_remove.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_remove_from_playlist.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_repeat_album.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_repeat_no.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_repeat_playlist.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_repeat_track.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_rescan.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_rewind.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_save.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_scripts.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_search.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_settings_engine.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_settings_general.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_settings_indicator.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_settings_playback.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_settings_view.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_stop.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_track.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_undo.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_visualizations.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_zoom.png share/apps/amarok/icons/hicolor/48x48/actions/collection.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_add_lyrics.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_add_playlist.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_album.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_artist.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_audioscrobbler.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_back.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_burn.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_change_language.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_circle.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_clock.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_collection.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_configure.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_covermanager.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_device.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_download.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_dynamic.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_edit.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_editcopy.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_equalizer.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_external.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_fastforward.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_favourite_genres.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_files.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_files2.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_info.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_love.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_lyrics.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_mostplayed.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_music.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_next.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_pause.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_play.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_playlist.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_playlist_clear.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_playlist_refresh.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_podcast.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_podcast2.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_queue.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_random.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_random_album.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_random_no.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_random_track.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_redo.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_refresh.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_remove.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_remove_from_playlist.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_repeat_album.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_repeat_no.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_repeat_playlist.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_repeat_track.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_rescan.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_rewind.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_save.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_scripts.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_search.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_settings_engine.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_settings_general.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_settings_indicator.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_settings_playback.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_settings_view.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_stop.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_track.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_undo.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_visualizations.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_zoom.png share/apps/amarok/icons/hicolor/64x64/actions/collection.png share/apps/amarok/images/amarok_cut.png share/apps/amarok/images/amarok_rocks.jpg share/apps/amarok/images/b_next.png share/apps/amarok/images/b_pause.png share/apps/amarok/images/b_play.png share/apps/amarok/images/b_prev.png share/apps/amarok/images/b_stop.png -share/apps/amarok/images/babelfish.png share/apps/amarok/images/back_stars_grey.png share/apps/amarok/images/currenttrack_bar_left.png share/apps/amarok/images/currenttrack_bar_mid.png share/apps/amarok/images/currenttrack_bar_right.png share/apps/amarok/images/currenttrack_pause.png share/apps/amarok/images/currenttrack_play.png share/apps/amarok/images/currenttrack_repeat.png share/apps/amarok/images/currenttrack_repeat_small.png share/apps/amarok/images/currenttrack_stop.png share/apps/amarok/images/currenttrack_stop_small.png share/apps/amarok/images/description.png share/apps/amarok/images/eq_active2.png share/apps/amarok/images/eq_inactive2.png +share/apps/amarok/images/lastfm.png share/apps/amarok/images/loading1.png share/apps/amarok/images/loading2.png share/apps/amarok/images/logo_web.png share/apps/amarok/images/menu_sidepixmap.png share/apps/amarok/images/more_albums.png share/apps/amarok/images/musicbrainz.png share/apps/amarok/images/nocover.png share/apps/amarok/images/pl_active2.png share/apps/amarok/images/pl_inactive2.png share/apps/amarok/images/sbinner_stars.png share/apps/amarok/images/shadow_albumcover.png share/apps/amarok/images/smallstar.png share/apps/amarok/images/splash_screen.jpg share/apps/amarok/images/star.png share/apps/amarok/images/time_minus.png share/apps/amarok/images/time_plus.png share/apps/amarok/images/vol_speaker.png share/apps/amarok/images/volumeslider-gradient.png share/apps/amarok/images/volumeslider-handle.png share/apps/amarok/images/volumeslider-inset.png share/apps/amarok/images/volumeslider-handle_glow.png share/apps/amarok/images/wizard_compact.png share/apps/amarok/images/wizard_xmms.png share/apps/amarok/images/xine_logo.png -share/apps/amarok/scripts/amarok_live/README -share/apps/amarok/scripts/amarok_live/amarok.live.remaster.part1.sh -share/apps/amarok/scripts/amarok_live/amarok.live.remaster.part2.sh -share/apps/amarok/scripts/amarok_live/amarok_live.py share/apps/amarok/scripts/common/Publisher.py share/apps/amarok/scripts/common/Zeroconf.py share/apps/amarok/scripts/lyrics_astraweb/COPYING share/apps/amarok/scripts/lyrics_astraweb/README share/apps/amarok/scripts/lyrics_astraweb/lyrics_astraweb.rb share/apps/amarok/scripts/lyrics_astraweb/lyrics_astraweb.spec share/apps/amarok/scripts/lyrics_lyrc/COPYING share/apps/amarok/scripts/lyrics_lyrc/README share/apps/amarok/scripts/lyrics_lyrc/lyrics_lyrc.rb share/apps/amarok/scripts/lyrics_lyrc/lyrics_lyrc.spec share/apps/amarok/scripts/playlist2html/Playlist.py share/apps/amarok/scripts/playlist2html/PlaylistServer.py share/apps/amarok/scripts/playlist2html/README share/apps/amarok/scripts/playlist2html/playlist2html.py share/apps/amarok/scripts/ruby_debug/debug.rb +share/apps/amarok/scripts/score_default/COPYING +share/apps/amarok/scripts/score_default/README +share/apps/amarok/scripts/score_default/score_default.spec +share/apps/amarok/scripts/score_default/score_default.rb +share/apps/amarok/scripts/score_impulsive/COPYING +share/apps/amarok/scripts/score_impulsive/README +share/apps/amarok/scripts/score_impulsive/score_impulsive.spec +share/apps/amarok/scripts/score_impulsive/score_impulsive.rb share/apps/amarok/scripts/templates/amarok.rb share/apps/amarok/scripts/templates/python_qt_template.py share/apps/amarok/scripts/templates/ruby_qt_template.rb share/apps/amarok/scripts/webcontrol/Globals.py share/apps/amarok/scripts/webcontrol/Playlist.py share/apps/amarok/scripts/webcontrol/README share/apps/amarok/scripts/webcontrol/RequestHandler.py share/apps/amarok/scripts/webcontrol/WebControl.py share/apps/amarok/scripts/webcontrol/WebControl.spec share/apps/amarok/scripts/webcontrol/WebPublisher.py share/apps/amarok/scripts/webcontrol/amarok_cut.png share/apps/amarok/scripts/webcontrol/controlbackground.png share/apps/amarok/scripts/webcontrol/main.css share/apps/amarok/scripts/webcontrol/main.js share/apps/amarok/scripts/webcontrol/player_end.png share/apps/amarok/scripts/webcontrol/player_pause.png share/apps/amarok/scripts/webcontrol/player_play.png share/apps/amarok/scripts/webcontrol/player_start.png share/apps/amarok/scripts/webcontrol/player_stop.png share/apps/amarok/scripts/webcontrol/template.thtml share/apps/amarok/scripts/webcontrol/smallstar.png share/apps/amarok/scripts/webcontrol/star.png share/apps/amarok/scripts/webcontrol/vol_speaker.png share/apps/amarok/themes/example/stylesheet.css share/apps/amarok/themes/reinhardt/images/background.png share/apps/amarok/themes/reinhardt/images/transparency.png share/apps/amarok/themes/reinhardt/stylesheet.css share/apps/konqsidebartng/add/amarok.desktop share/apps/konqsidebartng/entries/amarok.desktop share/apps/konqsidebartng/kicker_entries/amarok.desktop share/apps/konqueror/servicemenus/amarok_append.desktop share/apps/profiles/amarok.profile.xml share/config.kcfg/amarok.kcfg share/config.kcfg/xinecfg.kcfg share/config/amarokrc share/doc/HTML/da/amarok/advanced.docbook share/doc/HTML/da/amarok/common share/doc/HTML/da/amarok/config.docbook share/doc/HTML/da/amarok/faq.docbook share/doc/HTML/da/amarok/index.cache.bz2 share/doc/HTML/da/amarok/index.docbook share/doc/HTML/da/amarok/quick.docbook share/doc/HTML/da/amarok/requirements.docbook share/doc/HTML/da/amarok/using.docbook share/doc/HTML/de/amarok/add_dynamic.png share/doc/HTML/de/amarok/amarok_playlist.png share/doc/HTML/de/amarok/advanced.docbook share/doc/HTML/de/amarok/analyzer.png share/doc/HTML/de/amarok/buttons.png share/doc/HTML/de/amarok/collection.png share/doc/HTML/de/amarok/common share/doc/HTML/de/amarok/config.docbook share/doc/HTML/de/amarok/config_appearance.png share/doc/HTML/de/amarok/config_collection.png share/doc/HTML/de/amarok/config_engine.png share/doc/HTML/de/amarok/config_general.png share/doc/HTML/de/amarok/config_osd.png share/doc/HTML/de/amarok/config_playback.png share/doc/HTML/de/amarok/config_scrobbler.png share/doc/HTML/de/amarok/context.png share/doc/HTML/de/amarok/coverman.png share/doc/HTML/de/amarok/develop.docbook share/doc/HTML/de/amarok/dynamic_bar.png share/doc/HTML/de/amarok/dynamic_settings.png share/doc/HTML/de/amarok/equalizer.png share/doc/HTML/de/amarok/faq.docbook share/doc/HTML/de/amarok/file_browser.png share/doc/HTML/de/amarok/hidden.docbook share/doc/HTML/de/amarok/index.cache.bz2 share/doc/HTML/de/amarok/index.docbook share/doc/HTML/de/amarok/logo.png share/doc/HTML/de/amarok/media_device.png share/doc/HTML/de/amarok/menubar.png share/doc/HTML/de/amarok/musicbrainz.png share/doc/HTML/de/amarok/pl_browser.png share/doc/HTML/de/amarok/pl_tip1.png share/doc/HTML/de/amarok/play_list.png share/doc/HTML/de/amarok/player_window.png share/doc/HTML/de/amarok/playlist_browser.png share/doc/HTML/de/amarok/playlist_window.png share/doc/HTML/de/amarok/queue_manager.png share/doc/HTML/de/amarok/quick.docbook share/doc/HTML/de/amarok/requirements.docbook share/doc/HTML/de/amarok/rmb_menu.png share/doc/HTML/de/amarok/script_manager.png share/doc/HTML/de/amarok/status_bar.png share/doc/HTML/de/amarok/using.docbook share/doc/HTML/de/amarok/vis_window.png share/doc/HTML/en/amarok/add_dynamic.png share/doc/HTML/en/amarok/amarok_playlist.png share/doc/HTML/en/amarok/advanced.docbook share/doc/HTML/en/amarok/analyzer.png share/doc/HTML/en/amarok/buttons.png share/doc/HTML/en/amarok/collection.png share/doc/HTML/en/amarok/common share/doc/HTML/en/amarok/config.docbook share/doc/HTML/en/amarok/config_appearance.png share/doc/HTML/en/amarok/config_collection.png share/doc/HTML/en/amarok/config_engine.png share/doc/HTML/en/amarok/config_general.png share/doc/HTML/en/amarok/config_osd.png share/doc/HTML/en/amarok/config_playback.png share/doc/HTML/en/amarok/config_scrobbler.png share/doc/HTML/en/amarok/coverman.png share/doc/HTML/en/amarok/dynamic_bar.png share/doc/HTML/en/amarok/dynamic_settings.png share/doc/HTML/en/amarok/equalizer.png share/doc/HTML/en/amarok/faq.docbook share/doc/HTML/en/amarok/file_browser.png share/doc/HTML/en/amarok/index.cache.bz2 share/doc/HTML/en/amarok/index.docbook share/doc/HTML/en/amarok/logo.png share/doc/HTML/en/amarok/media_device.png share/doc/HTML/en/amarok/menubar.png share/doc/HTML/en/amarok/musicbrainz.png share/doc/HTML/en/amarok/pl_tip1.png share/doc/HTML/en/amarok/play_list.png share/doc/HTML/en/amarok/player_window.png share/doc/HTML/en/amarok/playlist_browser.png share/doc/HTML/en/amarok/playlist_window.png share/doc/HTML/en/amarok/queue_manager.png share/doc/HTML/en/amarok/quick.docbook share/doc/HTML/en/amarok/requirements.docbook share/doc/HTML/en/amarok/rmb_menu.png share/doc/HTML/en/amarok/script_manager.png share/doc/HTML/en/amarok/status_bar.png share/doc/HTML/en/amarok/tab_lyrics.png share/doc/HTML/en/amarok/tab_music.png share/doc/HTML/en/amarok/tab_wiki.png share/doc/HTML/en/amarok/using.docbook share/doc/HTML/en/amarok/vis_window.png share/doc/HTML/es/amarok/media_device.png share/doc/HTML/es/amarok/buttons.png share/doc/HTML/es/amarok/config_collection.png share/doc/HTML/es/amarok/script_manager.png share/doc/HTML/es/amarok/logo.png share/doc/HTML/es/amarok/play_list.png share/doc/HTML/es/amarok/equalizer.png share/doc/HTML/es/amarok/config_scrobbler.png share/doc/HTML/es/amarok/config_general.png share/doc/HTML/es/amarok/rmb_menu.png share/doc/HTML/es/amarok/status_bar.png share/doc/HTML/es/amarok/pl_tip1.png share/doc/HTML/es/amarok/dynamic_mode1.png share/doc/HTML/es/amarok/dynamic_mode2.png share/doc/HTML/es/amarok/coverman.png share/doc/HTML/es/amarok/config_osd.png share/doc/HTML/es/amarok/config_playback.png share/doc/HTML/es/amarok/pl_browser.png share/doc/HTML/es/amarok/queue_manager.png share/doc/HTML/es/amarok/quick.docbook share/doc/HTML/es/amarok/player_window.png share/doc/HTML/es/amarok/file_browser.png share/doc/HTML/es/amarok/musicbrainz.png share/doc/HTML/es/amarok/context.png share/doc/HTML/es/amarok/analyzer.png share/doc/HTML/es/amarok/config_appearance.png share/doc/HTML/es/amarok/playlist_window.png share/doc/HTML/es/amarok/vis_window.png share/doc/HTML/es/amarok/menubar.png share/doc/HTML/es/amarok/config_engine.png share/doc/HTML/es/amarok/collection.png share/doc/HTML/et/amarok/advanced.docbook share/doc/HTML/et/amarok/common share/doc/HTML/et/amarok/config.docbook share/doc/HTML/et/amarok/develop.docbook share/doc/HTML/et/amarok/faq.docbook share/doc/HTML/et/amarok/feature_guide.docbook share/doc/HTML/et/amarok/hidden.docbook share/doc/HTML/et/amarok/howto.docbook share/doc/HTML/et/amarok/index.cache.bz2 share/doc/HTML/et/amarok/index.docbook share/doc/HTML/et/amarok/plugin.docbook share/doc/HTML/et/amarok/quick.docbook share/doc/HTML/et/amarok/requirements.docbook share/doc/HTML/et/amarok/using.docbook share/doc/HTML/fr/amarok/advanced.docbook share/doc/HTML/fr/amarok/common share/doc/HTML/fr/amarok/config.docbook share/doc/HTML/fr/amarok/faq.docbook share/doc/HTML/fr/amarok/feature_guide.docbook share/doc/HTML/fr/amarok/index.cache.bz2 share/doc/HTML/fr/amarok/index.docbook share/doc/HTML/fr/amarok/quick.docbook share/doc/HTML/fr/amarok/requirements.docbook share/doc/HTML/fr/amarok/using.docbook share/doc/HTML/it/amarok/advanced.docbook share/doc/HTML/it/amarok/add_dynamic.png share/doc/HTML/it/amarok/amarok_playlist.png share/doc/HTML/it/amarok/analyzer.png share/doc/HTML/it/amarok/buttons.png share/doc/HTML/it/amarok/collection.png share/doc/HTML/it/amarok/common share/doc/HTML/it/amarok/completo.png share/doc/HTML/it/amarok/config.docbook share/doc/HTML/it/amarok/config_appearance.png share/doc/HTML/it/amarok/config_collection.png share/doc/HTML/it/amarok/config_engine.png share/doc/HTML/it/amarok/config_general.png share/doc/HTML/it/amarok/config_osd.png share/doc/HTML/it/amarok/config_playback.png share/doc/HTML/it/amarok/config_scrobbler.png share/doc/HTML/it/amarok/context.png share/doc/HTML/it/amarok/coverman.png share/doc/HTML/it/amarok/develop.docbook share/doc/HTML/it/amarok/dynamic_bar.png share/doc/HTML/it/amarok/dynamic_settings.png share/doc/HTML/it/amarok/equalizer.png share/doc/HTML/it/amarok/faq.docbook share/doc/HTML/it/amarok/feature_guide.docbook share/doc/HTML/it/amarok/file_browser.png share/doc/HTML/it/amarok/hidden.docbook share/doc/HTML/it/amarok/index.cache.bz2 share/doc/HTML/it/amarok/index.docbook share/doc/HTML/it/amarok/media_device.png share/doc/HTML/it/amarok/menubar.png share/doc/HTML/it/amarok/pl_browser.png share/doc/HTML/it/amarok/pl_tip1.png share/doc/HTML/it/amarok/play_list.png share/doc/HTML/it/amarok/player_window.png share/doc/HTML/it/amarok/playlist_browser.png share/doc/HTML/it/amarok/plugin.docbook share/doc/HTML/it/amarok/queue_manager.png share/doc/HTML/it/amarok/quick.docbook share/doc/HTML/it/amarok/requirements.docbook share/doc/HTML/it/amarok/rmb_menu.png share/doc/HTML/it/amarok/script_manager.png share/doc/HTML/it/amarok/status_bar.png share/doc/HTML/it/amarok/using.docbook share/doc/HTML/it/amarok/vis_window.png share/doc/HTML/nl/amarok/advanced.docbook share/doc/HTML/nl/amarok/analyzer.png share/doc/HTML/nl/amarok/buttons.png share/doc/HTML/nl/amarok/collection.png share/doc/HTML/nl/amarok/common share/doc/HTML/nl/amarok/config.docbook share/doc/HTML/nl/amarok/config_appearance.png share/doc/HTML/nl/amarok/config_collection.png share/doc/HTML/nl/amarok/config_colors.png share/doc/HTML/nl/amarok/config_engine.png share/doc/HTML/nl/amarok/config_fonts.png share/doc/HTML/nl/amarok/config_general.png share/doc/HTML/nl/amarok/config_osd.png share/doc/HTML/nl/amarok/config_playback.png share/doc/HTML/nl/amarok/config_scrobbler.png share/doc/HTML/nl/amarok/context.png share/doc/HTML/nl/amarok/coverman.png share/doc/HTML/nl/amarok/develop.docbook share/doc/HTML/nl/amarok/equalizer.png share/doc/HTML/nl/amarok/faq.docbook share/doc/HTML/nl/amarok/feature_guide.docbook share/doc/HTML/nl/amarok/file_browser.png share/doc/HTML/nl/amarok/hidden.docbook share/doc/HTML/nl/amarok/index.cache.bz2 share/doc/HTML/nl/amarok/index.docbook share/doc/HTML/nl/amarok/media_device.png share/doc/HTML/nl/amarok/menubar.png share/doc/HTML/nl/amarok/pl_browser.png share/doc/HTML/nl/amarok/pl_tip1.png share/doc/HTML/nl/amarok/play_list.png share/doc/HTML/nl/amarok/player_window.png share/doc/HTML/nl/amarok/playlist_window.png share/doc/HTML/nl/amarok/plugin.docbook share/doc/HTML/nl/amarok/quick.docbook share/doc/HTML/nl/amarok/requirements.docbook share/doc/HTML/nl/amarok/rmb_menu.png share/doc/HTML/nl/amarok/search.png share/doc/HTML/nl/amarok/status_bar.png share/doc/HTML/nl/amarok/using.docbook share/doc/HTML/nl/amarok/vis_window.png -share/doc/HTML/pl/amarok/advanced.docbook -share/doc/HTML/pl/amarok/common -share/doc/HTML/pl/amarok/config.docbook -share/doc/HTML/pl/amarok/faq.docbook -share/doc/HTML/pl/amarok/index.docbook -share/doc/HTML/pl/amarok/index.cache.bz2 -share/doc/HTML/pl/amarok/quick.docbook -share/doc/HTML/pl/amarok/requirements.docbook -share/doc/HTML/pl/amarok/using.docbook share/doc/HTML/pt/amarok/advanced.docbook share/doc/HTML/pt/amarok/common share/doc/HTML/pt/amarok/config.docbook share/doc/HTML/pt/amarok/develop.docbook share/doc/HTML/pt/amarok/faq.docbook share/doc/HTML/pt/amarok/feature_guide.docbook share/doc/HTML/pt/amarok/hidden.docbook share/doc/HTML/pt/amarok/index.cache.bz2 share/doc/HTML/pt/amarok/index.docbook share/doc/HTML/pt/amarok/plugin.docbook share/doc/HTML/pt/amarok/quick.docbook share/doc/HTML/pt/amarok/requirements.docbook share/doc/HTML/pt/amarok/using.docbook share/doc/HTML/pt_BR/amarok/advanced.docbook share/doc/HTML/pt_BR/amarok/common share/doc/HTML/pt_BR/amarok/config.docbook share/doc/HTML/pt_BR/amarok/faq.docbook share/doc/HTML/pt_BR/amarok/feature_guide.docbook share/doc/HTML/pt_BR/amarok/index.cache.bz2 share/doc/HTML/pt_BR/amarok/index.docbook share/doc/HTML/pt_BR/amarok/quick.docbook share/doc/HTML/pt_BR/amarok/requirements.docbook share/doc/HTML/pt_BR/amarok/using.docbook share/doc/HTML/ru/amarok/advanced.docbook share/doc/HTML/ru/amarok/collection.png share/doc/HTML/ru/amarok/common share/doc/HTML/ru/amarok/config.docbook share/doc/HTML/ru/amarok/config_appearance.png share/doc/HTML/ru/amarok/config_collection.png share/doc/HTML/ru/amarok/config_engine.png share/doc/HTML/ru/amarok/config_general.png share/doc/HTML/ru/amarok/config_osd.png share/doc/HTML/ru/amarok/config_playback.png share/doc/HTML/ru/amarok/config_scrobbler.png share/doc/HTML/ru/amarok/context.png share/doc/HTML/ru/amarok/coverman.png share/doc/HTML/ru/amarok/dynamic_mode1.png share/doc/HTML/ru/amarok/equalizer.png share/doc/HTML/ru/amarok/faq.docbook share/doc/HTML/ru/amarok/feature_guide.docbook share/doc/HTML/ru/amarok/file_browser.png share/doc/HTML/ru/amarok/index.cache.bz2 share/doc/HTML/ru/amarok/index.docbook share/doc/HTML/ru/amarok/menubar.png share/doc/HTML/ru/amarok/pl_browser.png share/doc/HTML/ru/amarok/pl_tip1.png share/doc/HTML/ru/amarok/play_list.png share/doc/HTML/ru/amarok/playlist_window.png share/doc/HTML/ru/amarok/queue_manager.png share/doc/HTML/ru/amarok/quick.docbook share/doc/HTML/ru/amarok/requirements.docbook share/doc/HTML/ru/amarok/rmb_menu.png share/doc/HTML/ru/amarok/status_bar.png share/doc/HTML/ru/amarok/using.docbook share/doc/HTML/sv/amarok/add_dynamic.png share/doc/HTML/sv/amarok/advanced.docbook share/doc/HTML/sv/amarok/amarok_playlist.png share/doc/HTML/sv/amarok/analyzer.png share/doc/HTML/sv/amarok/browser_choice.png share/doc/HTML/sv/amarok/buttons.png share/doc/HTML/sv/amarok/collection.png share/doc/HTML/sv/amarok/common share/doc/HTML/sv/amarok/config.docbook share/doc/HTML/sv/amarok/config_appearance.png share/doc/HTML/sv/amarok/config_collection.png share/doc/HTML/sv/amarok/config_colors.png share/doc/HTML/sv/amarok/config_engine.png share/doc/HTML/sv/amarok/config_fonts.png share/doc/HTML/sv/amarok/config_general.png share/doc/HTML/sv/amarok/config_mysql.png share/doc/HTML/sv/amarok/config_osd.png share/doc/HTML/sv/amarok/config_playback.png share/doc/HTML/sv/amarok/config_scrobbler.png share/doc/HTML/sv/amarok/context.png share/doc/HTML/sv/amarok/coverman.png share/doc/HTML/sv/amarok/develop.docbook share/doc/HTML/sv/amarok/dynamic_bar.png share/doc/HTML/sv/amarok/dynamic_settings.png share/doc/HTML/sv/amarok/equalizer.png share/doc/HTML/sv/amarok/faq.docbook share/doc/HTML/sv/amarok/feature_guide.docbook share/doc/HTML/sv/amarok/file_browser.png share/doc/HTML/sv/amarok/hidden.docbook share/doc/HTML/sv/amarok/index.cache.bz2 share/doc/HTML/sv/amarok/index.docbook share/doc/HTML/sv/amarok/media_device.png share/doc/HTML/sv/amarok/menubar.png share/doc/HTML/sv/amarok/pl_browser.png share/doc/HTML/sv/amarok/pl_tip1.png share/doc/HTML/sv/amarok/play_list.png share/doc/HTML/sv/amarok/player_window.png share/doc/HTML/sv/amarok/playlist_browser.png share/doc/HTML/sv/amarok/playlist_window.png share/doc/HTML/sv/amarok/plugin.docbook share/doc/HTML/sv/amarok/queue_manager.png share/doc/HTML/sv/amarok/quick.docbook share/doc/HTML/sv/amarok/requirements.docbook share/doc/HTML/sv/amarok/rmb_menu.png share/doc/HTML/sv/amarok/script_manager.png share/doc/HTML/sv/amarok/scripts_window.png share/doc/HTML/sv/amarok/search.png share/doc/HTML/sv/amarok/status_bar.png share/doc/HTML/sv/amarok/streams.png share/doc/HTML/sv/amarok/using.docbook share/doc/HTML/sv/amarok/vis_window.png share/doc/HTML/sv/amarok/welcome.png share/icons/hicolor/128x128/apps/amarok.png share/icons/hicolor/16x16/apps/amarok.png share/icons/hicolor/22x22/apps/amarok.png share/icons/hicolor/32x32/apps/amarok.png share/icons/hicolor/48x48/apps/amarok.png share/icons/hicolor/64x64/apps/amarok.png share/locale/az/LC_MESSAGES/amarok.mo share/locale/bg/LC_MESSAGES/amarok.mo share/locale/br/LC_MESSAGES/amarok.mo share/locale/ca/LC_MESSAGES/amarok.mo share/locale/cs/LC_MESSAGES/amarok.mo share/locale/cy/LC_MESSAGES/amarok.mo share/locale/da/LC_MESSAGES/amarok.mo share/locale/de/LC_MESSAGES/amarok.mo share/locale/el/LC_MESSAGES/amarok.mo share/locale/en_GB/LC_MESSAGES/amarok.mo share/locale/es/LC_MESSAGES/amarok.mo share/locale/et/LC_MESSAGES/amarok.mo share/locale/fi/LC_MESSAGES/amarok.mo share/locale/fr/LC_MESSAGES/amarok.mo share/locale/ga/LC_MESSAGES/amarok.mo share/locale/gl/LC_MESSAGES/amarok.mo share/locale/he/LC_MESSAGES/amarok.mo share/locale/hi/LC_MESSAGES/amarok.mo share/locale/hu/LC_MESSAGES/amarok.mo share/locale/is/LC_MESSAGES/amarok.mo share/locale/it/LC_MESSAGES/amarok.mo share/locale/ja/LC_MESSAGES/amarok.mo +share/locale/ka/LC_MESSAGES/amarok.mo share/locale/km/LC_MESSAGES/amarok.mo share/locale/ko/LC_MESSAGES/amarok.mo share/locale/lt/LC_MESSAGES/amarok.mo +share/locale/ms/LC_MESSAGES/amarok.mo share/locale/nb/LC_MESSAGES/amarok.mo share/locale/nl/LC_MESSAGES/amarok.mo share/locale/nn/LC_MESSAGES/amarok.mo share/locale/pa/LC_MESSAGES/amarok.mo share/locale/pl/LC_MESSAGES/amarok.mo share/locale/pt/LC_MESSAGES/amarok.mo share/locale/pt_BR/LC_MESSAGES/amarok.mo share/locale/ro/LC_MESSAGES/amarok.mo share/locale/ru/LC_MESSAGES/amarok.mo share/locale/rw/LC_MESSAGES/amarok.mo share/locale/sl/LC_MESSAGES/amarok.mo share/locale/sr/LC_MESSAGES/amarok.mo share/locale/sr@Latn/LC_MESSAGES/amarok.mo share/locale/sv/LC_MESSAGES/amarok.mo share/locale/ta/LC_MESSAGES/amarok.mo share/locale/tg/LC_MESSAGES/amarok.mo share/locale/th/LC_MESSAGES/amarok.mo share/locale/tr/LC_MESSAGES/amarok.mo share/locale/uk/LC_MESSAGES/amarok.mo share/locale/uz/LC_MESSAGES/amarok.mo share/locale/zh_CN/LC_MESSAGES/amarok.mo share/locale/zh_TW/LC_MESSAGES/amarok.mo %%GPOD%%share/services/amarok_ipod-mediadevice.desktop share/services/amarok_generic-mediadevice.desktop share/services/amarok_xine-engine.desktop share/services/amarok_void-engine_plugin.desktop +share/services/lastfm.protocol +share/servicetypes/amarok_codecinstall.desktop share/servicetypes/amarok_plugin.desktop @dirrmtry share/locale/km/LC_MESSAGES @dirrmtry share/locale/km @dirrmtry share/locale/uz/LC_MESSAGES @dirrmtry share/locale/uz @dirrm share/doc/HTML/sv/amarok @dirrm share/doc/HTML/ru/amarok @dirrm share/doc/HTML/pt_BR/amarok @dirrm share/doc/HTML/pt/amarok -@dirrm share/doc/HTML/pl/amarok @dirrm share/doc/HTML/nl/amarok @dirrm share/doc/HTML/it/amarok @dirrm share/doc/HTML/fr/amarok @dirrm share/doc/HTML/et/amarok @dirrm share/doc/HTML/es/amarok @dirrm share/doc/HTML/en/amarok @dirrm share/doc/HTML/de/amarok @dirrm share/doc/HTML/da/amarok @dirrm share/apps/amarok/themes/reinhardt/images @dirrm share/apps/amarok/themes/reinhardt @dirrm share/apps/amarok/themes/example @dirrm share/apps/amarok/themes @dirrm share/apps/amarok/scripts/webcontrol @dirrm share/apps/amarok/scripts/templates +@dirrm share/apps/amarok/scripts/score_impulsive +@dirrm share/apps/amarok/scripts/score_default @dirrm share/apps/amarok/scripts/ruby_debug @dirrm share/apps/amarok/scripts/playlist2html @dirrm share/apps/amarok/scripts/lyrics_lyrc @dirrm share/apps/amarok/scripts/lyrics_astraweb @dirrm share/apps/amarok/scripts/common -@dirrm share/apps/amarok/scripts/amarok_live @dirrm share/apps/amarok/scripts @dirrm share/apps/amarok/images -@dirrm share/apps/amarok/icons/crystalsvg/scalable/actions -@dirrm share/apps/amarok/icons/crystalsvg/scalable @dirrm share/apps/amarok/icons/crystalsvg/64x64/actions @dirrm share/apps/amarok/icons/crystalsvg/64x64 @dirrm share/apps/amarok/icons/crystalsvg/22x22/actions @dirrm share/apps/amarok/icons/crystalsvg/22x22 @dirrm share/apps/amarok/icons/crystalsvg/16x16/actions @dirrm share/apps/amarok/icons/crystalsvg/16x16 @dirrm share/apps/amarok/icons/crystalsvg @dirrm share/apps/amarok/icons/hicolor/64x64/actions @dirrm share/apps/amarok/icons/hicolor/64x64 @dirrm share/apps/amarok/icons/hicolor/48x48/actions @dirrm share/apps/amarok/icons/hicolor/48x48 @dirrm share/apps/amarok/icons/hicolor/32x32/actions @dirrm share/apps/amarok/icons/hicolor/32x32 @dirrm share/apps/amarok/icons/hicolor/22x22/actions @dirrm share/apps/amarok/icons/hicolor/22x22 @dirrm share/apps/amarok/icons/hicolor/16x16/actions @dirrm share/apps/amarok/icons/hicolor/16x16 @dirrm share/apps/amarok/icons/hicolor @dirrm share/apps/amarok/icons @dirrm share/apps/amarok/data @dirrm share/apps/amarok Property changes on: head/audio/amarok/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.18 \ No newline at end of property +1.19 \ No newline at end of property Index: head/audio/amarok-kde4/Makefile =================================================================== --- head/audio/amarok-kde4/Makefile (revision 169464) +++ head/audio/amarok-kde4/Makefile (revision 169465) @@ -1,112 +1,107 @@ # New ports collection makefile for: amarok # Date created: Tue Feb 24 02:21:14 CET 2004 # Whom: Markus Brueffer # # $FreeBSD$ PORTNAME= amarok -PORTVERSION= 1.4.0a +PORTVERSION= 1.4.1 CATEGORIES= audio kde MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED} MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= mich@FreeBSD.org COMMENT= Media player for KDE LIB_DEPENDS= tag.5:${PORTSDIR}/audio/taglib \ - tunepimp:${PORTSDIR}/audio/libtunepimp \ + tunepimp.3:${PORTSDIR}/audio/libtunepimp-old \ mp4v2:${PORTSDIR}/multimedia/mpeg4ip-libmp4v2 \ xine.15:${PORTSDIR}/multimedia/libxine -MIN_OPTIONS_VER= ${PORTNAME}-1.4.0a +MIN_OPTIONS_VER= ${PORTNAME}-1.4.1 USE_BZIP2= yes USE_KDEBASE_VER=3 USE_GMAKE= yes USE_AUTOTOOLS= libtool:15 USE_SDL= sdl USE_RUBY= yes -WRKSRC= ${WRKDIR}/${PORTNAME}-1.4.0 OPTIONS= GPOD "iPod support" on \ XMMS "XMMS visualizations" off \ - LIBVISUAL "libvisual support" off \ OPENGL "OpenGL support" on \ AMAZON "Amazon cover fetching support" on \ MYSQL "Use MySQL as collection backend" off \ POSTGRESQL "Use PostgreSQL as collection backend" off \ .include +.if ${OSVERSION} < 500000 +EXTRA_PATCHES+= ${PATCHDIR}/extra-amarok_src_expression.h +.endif + CONFIGURE_ARGS+=--without-exscalibar \ --with-mp4v2 \ - --with-mp4v2-dir=${PREFIX} + --with-mp4v2-dir=${PREFIX} \ + --without-libvisual .if !defined(WITH_GPOD) PLIST_SUB+= GPOD="@comment " .else LIB_DEPENDS+= gpod.302:${PORTSDIR}/audio/libgpod CONFIGURE_ARGS+=--with-libgpod PLIST_SUB+= GPOD="" .endif .if !defined(WITH_XMMS) PLIST_SUB+= XMMS="@comment " CONFIGURE_ARGS+=--without-xmms .else BUILD_DEPENDS+= xmms-config:${PORTSDIR}/multimedia/xmms LIB_DEPENDS+= xmms.4:${PORTSDIR}/multimedia/xmms PLIST_SUB+= XMMS="" -.endif - -.if !defined(WITH_LIBVISUAL) -PLIST_SUB+= LIBVISUAL="@comment " -CONFIGURE_ARGS+=--without-libvisual -.else -LIB_DEPENDS+= visual.0:${PORTSDIR}/graphics/libvisual -PLIST_SUB+= LIBVISUAL="" .endif .if defined(WITHOUT_OPENGL) CONFIGURE_ARGS+=--without-opengl .endif .if defined(WITHOUT_AMAZON) CONFIGURE_ARGS+=--disable-amazon .endif .if defined(WITH_MYSQL) USE_MYSQL= yes CONFIGURE_ARGS+=--enable-mysql .endif .if defined(WITH_POSTGRESQL) USE_PGSQL= yes CONFIGURE_ARGS+=--enable-postgresql .endif pre-extract: check-options-version post-patch: @${REINPLACE_CMD} -e 's|-O2||g' ${WRKSRC}/${CONFIGURE_SCRIPT} @${REINPLACE_CMD} -e 's|LIBS="-ltunepimp $$LIBS"|LIBS="-ltunepimp -liconv $$LIBS"|g' \ ${WRKSRC}/${CONFIGURE_SCRIPT} @${REINPLACE_CMD} -e 's|xx||g' ${WRKSRC}/po/Makefile.in @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${TOUCH} post-install: .if defined(WITH_LIBVISUAL) @${CAT} ${PKGMESSAGE} .endif check-options-version: .ifdef(_OPTIONS_READ) @(if ${PKG_VERSION} -t ${_OPTIONS_READ} ${MIN_OPTIONS_VER} | ${GREP} -q '<'; \ then ${ECHO_CMD} ""; \ ${ECHO_CMD} "===> You have unsupported (old) OPTIONS, please do a 'make rmconfig; make'"; \ ${ECHO_CMD} ""; \ exit 1; \ fi) .endif .include Property changes on: head/audio/amarok-kde4/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.49 \ No newline at end of property +1.50 \ No newline at end of property Index: head/audio/amarok-kde4/distinfo =================================================================== --- head/audio/amarok-kde4/distinfo (revision 169464) +++ head/audio/amarok-kde4/distinfo (revision 169465) @@ -1,3 +1,3 @@ -MD5 (amarok-1.4.0a.tar.bz2) = 3ceffe6465290eef618861cdb81b420a -SHA256 (amarok-1.4.0a.tar.bz2) = 46d298226ff855c68b1d179d900441fd3c2329f42a938c3fc842a218ab762344 -SIZE (amarok-1.4.0a.tar.bz2) = 13045009 +MD5 (amarok-1.4.1.tar.bz2) = 4ed6e766541c4227d1d8c8eb93d0b891 +SHA256 (amarok-1.4.1.tar.bz2) = dbe4397d041a77f7ded063f50d5cfd2faf0e9efce9b4483589f751c20ff89ccd +SIZE (amarok-1.4.1.tar.bz2) = 13509939 Property changes on: head/audio/amarok-kde4/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.15 \ No newline at end of property +1.16 \ No newline at end of property Index: head/audio/amarok-kde4/files/extra-amarok_src_expression.h =================================================================== --- head/audio/amarok-kde4/files/extra-amarok_src_expression.h (nonexistent) +++ head/audio/amarok-kde4/files/extra-amarok_src_expression.h (revision 169465) @@ -0,0 +1,16 @@ + +$FreeBSD$ + +--- amarok/src/expression.h.orig ++++ amarok/src/expression.h +@@ -27,8 +27,8 @@ + { + QString field; + QString text; +- bool negate: 1; +- enum { Contains, Less, More } match: 2; ++ bool negate; ++ enum { Contains, Less, More } match; + expression_element(): negate( false ), match( Contains ) { } + }; + typedef QValueVector or_list; Property changes on: head/audio/amarok-kde4/files/extra-amarok_src_expression.h ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/audio/amarok-kde4/files/patch-amarok_src_lastfm.cpp =================================================================== --- head/audio/amarok-kde4/files/patch-amarok_src_lastfm.cpp (nonexistent) +++ head/audio/amarok-kde4/files/patch-amarok_src_lastfm.cpp (revision 169465) @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- amarok/src/lastfm.cpp.orig ++++ amarok/src/lastfm.cpp +@@ -729,7 +729,7 @@ + + QCString md5pass = KMD5( KMD5( m_password.utf8() ).hexDigest() + currentTime ).hexDigest(); + +- QString token = QString( "user=%1&auth=%2&nonce=%3recipient=%4" ) ++ token = QString( "user=%1&auth=%2&nonce=%3recipient=%4" ) + .arg( QString( QUrl( currentUsername() ).encodedPathAndQuery() ) ) + .arg( QString( QUrl( md5pass ).encodedPathAndQuery() ) ) + .arg( QString( QUrl( challenge ).encodedPathAndQuery() ) ) Property changes on: head/audio/amarok-kde4/files/patch-amarok_src_lastfm.cpp ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/audio/amarok-kde4/pkg-plist =================================================================== --- head/audio/amarok-kde4/pkg-plist (revision 169464) +++ head/audio/amarok-kde4/pkg-plist (revision 169465) @@ -1,727 +1,948 @@ bin/amarok bin/amarokapp bin/amarokcollectionscanner +bin/amarok_proxy.rb lib/libamarok.so lib/libamarok.so.0 lib/libamarok.a lib/libamarok.la -%%LIBVISUAL%%bin/amarok_libvisual %%XMMS%%bin/amarok_xmmswrapper2 lib/kde3/konqsidebar_universalamarok.a lib/kde3/konqsidebar_universalamarok.la lib/kde3/konqsidebar_universalamarok.so %%GPOD%%lib/kde3/libamarok_ipod-mediadevice.so %%GPOD%%lib/kde3/libamarok_ipod-mediadevice.la %%GPOD%%lib/kde3/libamarok_ipod-mediadevice.a lib/kde3/libamarok_generic-mediadevice.so lib/kde3/libamarok_generic-mediadevice.la lib/kde3/libamarok_generic-mediadevice.a lib/kde3/libamarok_xine-engine.a lib/kde3/libamarok_xine-engine.la lib/kde3/libamarok_xine-engine.so lib/kde3/libamarok_void-engine_plugin.a lib/kde3/libamarok_void-engine_plugin.la lib/kde3/libamarok_void-engine_plugin.so share/applications/kde/amarok.desktop share/apps/amarok/amarokui.rc -share/apps/amarok/amarokui_xmms.rc +share/apps/amarok/data/Amarok_1.4_Welcome.ogg share/apps/amarok/data/Cool-Streams.xml -share/apps/amarok/data/amaroK_1.4_welcome.ogg share/apps/amarok/data/ball.png share/apps/amarok/data/dot.png share/apps/amarok/data/equalizer_presets.xml share/apps/amarok/data/firstrun.m3u share/apps/amarok/data/grid.png share/apps/amarok/data/wirl1.png share/apps/amarok/data/wirl2.png share/apps/amarok/icons/crystalsvg/16x16/actions/covermanager.png share/apps/amarok/icons/crystalsvg/16x16/actions/dynamic.png share/apps/amarok/icons/crystalsvg/16x16/actions/equalizer.png share/apps/amarok/icons/crystalsvg/16x16/actions/mini_dock.png share/apps/amarok/icons/crystalsvg/16x16/actions/player_playlist_2.png +share/apps/amarok/icons/crystalsvg/16x16/actions/podcast.png +share/apps/amarok/icons/crystalsvg/16x16/actions/podcast_new.png share/apps/amarok/icons/crystalsvg/16x16/actions/random.png share/apps/amarok/icons/crystalsvg/16x16/actions/repeat_playlist.png share/apps/amarok/icons/crystalsvg/16x16/actions/repeat_track.png share/apps/amarok/icons/crystalsvg/16x16/actions/visualizations.png share/apps/amarok/icons/crystalsvg/16x16/actions/wiki.png +share/apps/amarok/icons/crystalsvg/22x22/actions/amarok_podcast.png +share/apps/amarok/icons/crystalsvg/22x22/actions/amarok_podcast_new.png +share/apps/amarok/icons/crystalsvg/22x22/actions/babelfish.png share/apps/amarok/icons/crystalsvg/22x22/actions/dynamic.png share/apps/amarok/icons/crystalsvg/22x22/actions/player_playlist_2.png share/apps/amarok/icons/crystalsvg/22x22/actions/random.png share/apps/amarok/icons/crystalsvg/22x22/actions/repeat_playlist.png share/apps/amarok/icons/crystalsvg/64x64/actions/dynamic.png +share/apps/amarok/icons/crystalsvg/64x64/actions/podcast.png +share/apps/amarok/icons/crystalsvg/64x64/actions/podcast_new.png share/apps/amarok/icons/crystalsvg/64x64/actions/random.png share/apps/amarok/icons/crystalsvg/64x64/actions/repeat_playlist.png -share/apps/amarok/icons/crystalsvg/scalable/actions/dynamic.svg -share/apps/amarok/icons/crystalsvg/scalable/actions/player_playlist_2.svg +share/apps/amarok/icons/hicolor/16x16/actions/amarok_add_lyrics.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_add_playlist.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_album.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_artist.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_audioscrobbler.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_back.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_burn.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_change_language.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_circle.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_clock.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_collection.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_configure.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_covermanager.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_device.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_download.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_dynamic.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_edit.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_editcopy.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_equalizer.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_external.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_fastforward.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_favourite_genres.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_files.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_files2.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_info.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_love.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_lyrics.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_mostplayed.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_music.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_next.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_pause.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_play.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_playlist.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_playlist_clear.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_playlist_refresh.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_podcast.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_podcast2.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_queue.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_random.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_random_album.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_random_no.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_random_track.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_redo.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_refresh.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_remove.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_remove_from_playlist.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_repeat_album.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_repeat_no.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_repeat_playlist.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_repeat_track.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_rescan.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_rewind.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_save.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_scripts.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_search.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_settings_engine.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_settings_general.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_settings_indicator.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_settings_playback.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_settings_view.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_stop.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_track.png share/apps/amarok/icons/hicolor/16x16/actions/amarok_undo.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_visualizations.png +share/apps/amarok/icons/hicolor/16x16/actions/amarok_zoom.png share/apps/amarok/icons/hicolor/16x16/actions/collection.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_add_lyrics.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_add_playlist.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_album.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_artist.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_audioscrobbler.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_back.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_burn.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_change_language.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_circle.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_clock.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_collection.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_configure.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_covermanager.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_device.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_download.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_dynamic.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_edit.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_editcopy.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_equalizer.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_external.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_fastforward.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_favourite_genres.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_files.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_files2.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_info.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_love.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_lyrics.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_mostplayed.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_music.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_next.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_pause.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_play.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_playlist.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_playlist_clear.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_playlist_refresh.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_podcast.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_podcast2.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_queue.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_random.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_random_album.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_random_no.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_random_track.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_redo.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_refresh.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_remove.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_remove_from_playlist.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_repeat_album.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_repeat_no.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_repeat_playlist.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_repeat_track.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_rescan.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_rewind.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_save.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_scripts.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_search.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_settings_engine.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_settings_general.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_settings_indicator.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_settings_playback.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_settings_view.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_stop.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_track.png share/apps/amarok/icons/hicolor/22x22/actions/amarok_undo.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_visualizations.png +share/apps/amarok/icons/hicolor/22x22/actions/amarok_zoom.png share/apps/amarok/icons/hicolor/22x22/actions/collection.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_add_lyrics.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_add_playlist.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_album.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_artist.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_audioscrobbler.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_back.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_burn.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_change_language.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_circle.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_clock.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_collection.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_configure.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_covermanager.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_device.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_download.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_dynamic.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_edit.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_editcopy.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_equalizer.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_external.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_fastforward.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_favourite_genres.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_files.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_files2.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_info.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_love.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_lyrics.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_mostplayed.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_music.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_next.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_pause.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_play.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_playlist.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_playlist_clear.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_playlist_refresh.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_podcast.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_podcast2.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_queue.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_random.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_random_album.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_random_no.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_random_track.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_redo.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_refresh.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_remove.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_remove_from_playlist.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_repeat_album.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_repeat_no.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_repeat_playlist.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_repeat_track.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_rescan.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_rewind.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_save.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_scripts.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_search.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_settings_engine.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_settings_general.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_settings_indicator.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_settings_playback.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_settings_view.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_stop.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_track.png share/apps/amarok/icons/hicolor/32x32/actions/amarok_undo.png -share/apps/amarok/icons/hicolor/32x32/actions/collection.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_visualizations.png +share/apps/amarok/icons/hicolor/32x32/actions/amarok_zoom.png share/apps/amarok/icons/hicolor/32x32/actions/audioscrobbler.png +share/apps/amarok/icons/hicolor/32x32/actions/collection.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_add_lyrics.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_add_playlist.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_album.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_artist.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_audioscrobbler.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_back.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_burn.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_change_language.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_circle.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_clock.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_collection.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_configure.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_covermanager.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_device.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_download.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_dynamic.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_edit.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_editcopy.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_equalizer.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_external.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_fastforward.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_favourite_genres.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_files.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_files2.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_info.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_love.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_lyrics.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_mostplayed.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_music.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_next.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_pause.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_play.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_playlist.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_playlist_clear.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_playlist_refresh.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_podcast.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_podcast2.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_queue.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_random.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_random_album.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_random_no.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_random_track.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_redo.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_refresh.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_remove.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_remove_from_playlist.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_repeat_album.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_repeat_no.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_repeat_playlist.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_repeat_track.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_rescan.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_rewind.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_save.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_scripts.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_search.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_settings_engine.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_settings_general.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_settings_indicator.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_settings_playback.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_settings_view.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_stop.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_track.png share/apps/amarok/icons/hicolor/48x48/actions/amarok_undo.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_visualizations.png +share/apps/amarok/icons/hicolor/48x48/actions/amarok_zoom.png share/apps/amarok/icons/hicolor/48x48/actions/collection.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_add_lyrics.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_add_playlist.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_album.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_artist.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_audioscrobbler.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_back.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_burn.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_change_language.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_circle.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_clock.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_collection.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_configure.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_covermanager.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_device.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_download.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_dynamic.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_edit.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_editcopy.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_equalizer.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_external.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_fastforward.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_favourite_genres.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_files.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_files2.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_info.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_love.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_lyrics.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_mostplayed.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_music.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_next.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_pause.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_play.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_playlist.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_playlist_clear.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_playlist_refresh.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_podcast.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_podcast2.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_queue.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_random.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_random_album.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_random_no.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_random_track.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_redo.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_refresh.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_remove.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_remove_from_playlist.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_repeat_album.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_repeat_no.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_repeat_playlist.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_repeat_track.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_rescan.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_rewind.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_save.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_scripts.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_search.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_settings_engine.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_settings_general.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_settings_indicator.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_settings_playback.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_settings_view.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_stop.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_track.png share/apps/amarok/icons/hicolor/64x64/actions/amarok_undo.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_visualizations.png +share/apps/amarok/icons/hicolor/64x64/actions/amarok_zoom.png share/apps/amarok/icons/hicolor/64x64/actions/collection.png share/apps/amarok/images/amarok_cut.png share/apps/amarok/images/amarok_rocks.jpg share/apps/amarok/images/b_next.png share/apps/amarok/images/b_pause.png share/apps/amarok/images/b_play.png share/apps/amarok/images/b_prev.png share/apps/amarok/images/b_stop.png -share/apps/amarok/images/babelfish.png share/apps/amarok/images/back_stars_grey.png share/apps/amarok/images/currenttrack_bar_left.png share/apps/amarok/images/currenttrack_bar_mid.png share/apps/amarok/images/currenttrack_bar_right.png share/apps/amarok/images/currenttrack_pause.png share/apps/amarok/images/currenttrack_play.png share/apps/amarok/images/currenttrack_repeat.png share/apps/amarok/images/currenttrack_repeat_small.png share/apps/amarok/images/currenttrack_stop.png share/apps/amarok/images/currenttrack_stop_small.png share/apps/amarok/images/description.png share/apps/amarok/images/eq_active2.png share/apps/amarok/images/eq_inactive2.png +share/apps/amarok/images/lastfm.png share/apps/amarok/images/loading1.png share/apps/amarok/images/loading2.png share/apps/amarok/images/logo_web.png share/apps/amarok/images/menu_sidepixmap.png share/apps/amarok/images/more_albums.png share/apps/amarok/images/musicbrainz.png share/apps/amarok/images/nocover.png share/apps/amarok/images/pl_active2.png share/apps/amarok/images/pl_inactive2.png share/apps/amarok/images/sbinner_stars.png share/apps/amarok/images/shadow_albumcover.png share/apps/amarok/images/smallstar.png share/apps/amarok/images/splash_screen.jpg share/apps/amarok/images/star.png share/apps/amarok/images/time_minus.png share/apps/amarok/images/time_plus.png share/apps/amarok/images/vol_speaker.png share/apps/amarok/images/volumeslider-gradient.png share/apps/amarok/images/volumeslider-handle.png share/apps/amarok/images/volumeslider-inset.png share/apps/amarok/images/volumeslider-handle_glow.png share/apps/amarok/images/wizard_compact.png share/apps/amarok/images/wizard_xmms.png share/apps/amarok/images/xine_logo.png -share/apps/amarok/scripts/amarok_live/README -share/apps/amarok/scripts/amarok_live/amarok.live.remaster.part1.sh -share/apps/amarok/scripts/amarok_live/amarok.live.remaster.part2.sh -share/apps/amarok/scripts/amarok_live/amarok_live.py share/apps/amarok/scripts/common/Publisher.py share/apps/amarok/scripts/common/Zeroconf.py share/apps/amarok/scripts/lyrics_astraweb/COPYING share/apps/amarok/scripts/lyrics_astraweb/README share/apps/amarok/scripts/lyrics_astraweb/lyrics_astraweb.rb share/apps/amarok/scripts/lyrics_astraweb/lyrics_astraweb.spec share/apps/amarok/scripts/lyrics_lyrc/COPYING share/apps/amarok/scripts/lyrics_lyrc/README share/apps/amarok/scripts/lyrics_lyrc/lyrics_lyrc.rb share/apps/amarok/scripts/lyrics_lyrc/lyrics_lyrc.spec share/apps/amarok/scripts/playlist2html/Playlist.py share/apps/amarok/scripts/playlist2html/PlaylistServer.py share/apps/amarok/scripts/playlist2html/README share/apps/amarok/scripts/playlist2html/playlist2html.py share/apps/amarok/scripts/ruby_debug/debug.rb +share/apps/amarok/scripts/score_default/COPYING +share/apps/amarok/scripts/score_default/README +share/apps/amarok/scripts/score_default/score_default.spec +share/apps/amarok/scripts/score_default/score_default.rb +share/apps/amarok/scripts/score_impulsive/COPYING +share/apps/amarok/scripts/score_impulsive/README +share/apps/amarok/scripts/score_impulsive/score_impulsive.spec +share/apps/amarok/scripts/score_impulsive/score_impulsive.rb share/apps/amarok/scripts/templates/amarok.rb share/apps/amarok/scripts/templates/python_qt_template.py share/apps/amarok/scripts/templates/ruby_qt_template.rb share/apps/amarok/scripts/webcontrol/Globals.py share/apps/amarok/scripts/webcontrol/Playlist.py share/apps/amarok/scripts/webcontrol/README share/apps/amarok/scripts/webcontrol/RequestHandler.py share/apps/amarok/scripts/webcontrol/WebControl.py share/apps/amarok/scripts/webcontrol/WebControl.spec share/apps/amarok/scripts/webcontrol/WebPublisher.py share/apps/amarok/scripts/webcontrol/amarok_cut.png share/apps/amarok/scripts/webcontrol/controlbackground.png share/apps/amarok/scripts/webcontrol/main.css share/apps/amarok/scripts/webcontrol/main.js share/apps/amarok/scripts/webcontrol/player_end.png share/apps/amarok/scripts/webcontrol/player_pause.png share/apps/amarok/scripts/webcontrol/player_play.png share/apps/amarok/scripts/webcontrol/player_start.png share/apps/amarok/scripts/webcontrol/player_stop.png share/apps/amarok/scripts/webcontrol/template.thtml share/apps/amarok/scripts/webcontrol/smallstar.png share/apps/amarok/scripts/webcontrol/star.png share/apps/amarok/scripts/webcontrol/vol_speaker.png share/apps/amarok/themes/example/stylesheet.css share/apps/amarok/themes/reinhardt/images/background.png share/apps/amarok/themes/reinhardt/images/transparency.png share/apps/amarok/themes/reinhardt/stylesheet.css share/apps/konqsidebartng/add/amarok.desktop share/apps/konqsidebartng/entries/amarok.desktop share/apps/konqsidebartng/kicker_entries/amarok.desktop share/apps/konqueror/servicemenus/amarok_append.desktop share/apps/profiles/amarok.profile.xml share/config.kcfg/amarok.kcfg share/config.kcfg/xinecfg.kcfg share/config/amarokrc share/doc/HTML/da/amarok/advanced.docbook share/doc/HTML/da/amarok/common share/doc/HTML/da/amarok/config.docbook share/doc/HTML/da/amarok/faq.docbook share/doc/HTML/da/amarok/index.cache.bz2 share/doc/HTML/da/amarok/index.docbook share/doc/HTML/da/amarok/quick.docbook share/doc/HTML/da/amarok/requirements.docbook share/doc/HTML/da/amarok/using.docbook share/doc/HTML/de/amarok/add_dynamic.png share/doc/HTML/de/amarok/amarok_playlist.png share/doc/HTML/de/amarok/advanced.docbook share/doc/HTML/de/amarok/analyzer.png share/doc/HTML/de/amarok/buttons.png share/doc/HTML/de/amarok/collection.png share/doc/HTML/de/amarok/common share/doc/HTML/de/amarok/config.docbook share/doc/HTML/de/amarok/config_appearance.png share/doc/HTML/de/amarok/config_collection.png share/doc/HTML/de/amarok/config_engine.png share/doc/HTML/de/amarok/config_general.png share/doc/HTML/de/amarok/config_osd.png share/doc/HTML/de/amarok/config_playback.png share/doc/HTML/de/amarok/config_scrobbler.png share/doc/HTML/de/amarok/context.png share/doc/HTML/de/amarok/coverman.png share/doc/HTML/de/amarok/develop.docbook share/doc/HTML/de/amarok/dynamic_bar.png share/doc/HTML/de/amarok/dynamic_settings.png share/doc/HTML/de/amarok/equalizer.png share/doc/HTML/de/amarok/faq.docbook share/doc/HTML/de/amarok/file_browser.png share/doc/HTML/de/amarok/hidden.docbook share/doc/HTML/de/amarok/index.cache.bz2 share/doc/HTML/de/amarok/index.docbook share/doc/HTML/de/amarok/logo.png share/doc/HTML/de/amarok/media_device.png share/doc/HTML/de/amarok/menubar.png share/doc/HTML/de/amarok/musicbrainz.png share/doc/HTML/de/amarok/pl_browser.png share/doc/HTML/de/amarok/pl_tip1.png share/doc/HTML/de/amarok/play_list.png share/doc/HTML/de/amarok/player_window.png share/doc/HTML/de/amarok/playlist_browser.png share/doc/HTML/de/amarok/playlist_window.png share/doc/HTML/de/amarok/queue_manager.png share/doc/HTML/de/amarok/quick.docbook share/doc/HTML/de/amarok/requirements.docbook share/doc/HTML/de/amarok/rmb_menu.png share/doc/HTML/de/amarok/script_manager.png share/doc/HTML/de/amarok/status_bar.png share/doc/HTML/de/amarok/using.docbook share/doc/HTML/de/amarok/vis_window.png share/doc/HTML/en/amarok/add_dynamic.png share/doc/HTML/en/amarok/amarok_playlist.png share/doc/HTML/en/amarok/advanced.docbook share/doc/HTML/en/amarok/analyzer.png share/doc/HTML/en/amarok/buttons.png share/doc/HTML/en/amarok/collection.png share/doc/HTML/en/amarok/common share/doc/HTML/en/amarok/config.docbook share/doc/HTML/en/amarok/config_appearance.png share/doc/HTML/en/amarok/config_collection.png share/doc/HTML/en/amarok/config_engine.png share/doc/HTML/en/amarok/config_general.png share/doc/HTML/en/amarok/config_osd.png share/doc/HTML/en/amarok/config_playback.png share/doc/HTML/en/amarok/config_scrobbler.png share/doc/HTML/en/amarok/coverman.png share/doc/HTML/en/amarok/dynamic_bar.png share/doc/HTML/en/amarok/dynamic_settings.png share/doc/HTML/en/amarok/equalizer.png share/doc/HTML/en/amarok/faq.docbook share/doc/HTML/en/amarok/file_browser.png share/doc/HTML/en/amarok/index.cache.bz2 share/doc/HTML/en/amarok/index.docbook share/doc/HTML/en/amarok/logo.png share/doc/HTML/en/amarok/media_device.png share/doc/HTML/en/amarok/menubar.png share/doc/HTML/en/amarok/musicbrainz.png share/doc/HTML/en/amarok/pl_tip1.png share/doc/HTML/en/amarok/play_list.png share/doc/HTML/en/amarok/player_window.png share/doc/HTML/en/amarok/playlist_browser.png share/doc/HTML/en/amarok/playlist_window.png share/doc/HTML/en/amarok/queue_manager.png share/doc/HTML/en/amarok/quick.docbook share/doc/HTML/en/amarok/requirements.docbook share/doc/HTML/en/amarok/rmb_menu.png share/doc/HTML/en/amarok/script_manager.png share/doc/HTML/en/amarok/status_bar.png share/doc/HTML/en/amarok/tab_lyrics.png share/doc/HTML/en/amarok/tab_music.png share/doc/HTML/en/amarok/tab_wiki.png share/doc/HTML/en/amarok/using.docbook share/doc/HTML/en/amarok/vis_window.png share/doc/HTML/es/amarok/media_device.png share/doc/HTML/es/amarok/buttons.png share/doc/HTML/es/amarok/config_collection.png share/doc/HTML/es/amarok/script_manager.png share/doc/HTML/es/amarok/logo.png share/doc/HTML/es/amarok/play_list.png share/doc/HTML/es/amarok/equalizer.png share/doc/HTML/es/amarok/config_scrobbler.png share/doc/HTML/es/amarok/config_general.png share/doc/HTML/es/amarok/rmb_menu.png share/doc/HTML/es/amarok/status_bar.png share/doc/HTML/es/amarok/pl_tip1.png share/doc/HTML/es/amarok/dynamic_mode1.png share/doc/HTML/es/amarok/dynamic_mode2.png share/doc/HTML/es/amarok/coverman.png share/doc/HTML/es/amarok/config_osd.png share/doc/HTML/es/amarok/config_playback.png share/doc/HTML/es/amarok/pl_browser.png share/doc/HTML/es/amarok/queue_manager.png share/doc/HTML/es/amarok/quick.docbook share/doc/HTML/es/amarok/player_window.png share/doc/HTML/es/amarok/file_browser.png share/doc/HTML/es/amarok/musicbrainz.png share/doc/HTML/es/amarok/context.png share/doc/HTML/es/amarok/analyzer.png share/doc/HTML/es/amarok/config_appearance.png share/doc/HTML/es/amarok/playlist_window.png share/doc/HTML/es/amarok/vis_window.png share/doc/HTML/es/amarok/menubar.png share/doc/HTML/es/amarok/config_engine.png share/doc/HTML/es/amarok/collection.png share/doc/HTML/et/amarok/advanced.docbook share/doc/HTML/et/amarok/common share/doc/HTML/et/amarok/config.docbook share/doc/HTML/et/amarok/develop.docbook share/doc/HTML/et/amarok/faq.docbook share/doc/HTML/et/amarok/feature_guide.docbook share/doc/HTML/et/amarok/hidden.docbook share/doc/HTML/et/amarok/howto.docbook share/doc/HTML/et/amarok/index.cache.bz2 share/doc/HTML/et/amarok/index.docbook share/doc/HTML/et/amarok/plugin.docbook share/doc/HTML/et/amarok/quick.docbook share/doc/HTML/et/amarok/requirements.docbook share/doc/HTML/et/amarok/using.docbook share/doc/HTML/fr/amarok/advanced.docbook share/doc/HTML/fr/amarok/common share/doc/HTML/fr/amarok/config.docbook share/doc/HTML/fr/amarok/faq.docbook share/doc/HTML/fr/amarok/feature_guide.docbook share/doc/HTML/fr/amarok/index.cache.bz2 share/doc/HTML/fr/amarok/index.docbook share/doc/HTML/fr/amarok/quick.docbook share/doc/HTML/fr/amarok/requirements.docbook share/doc/HTML/fr/amarok/using.docbook share/doc/HTML/it/amarok/advanced.docbook share/doc/HTML/it/amarok/add_dynamic.png share/doc/HTML/it/amarok/amarok_playlist.png share/doc/HTML/it/amarok/analyzer.png share/doc/HTML/it/amarok/buttons.png share/doc/HTML/it/amarok/collection.png share/doc/HTML/it/amarok/common share/doc/HTML/it/amarok/completo.png share/doc/HTML/it/amarok/config.docbook share/doc/HTML/it/amarok/config_appearance.png share/doc/HTML/it/amarok/config_collection.png share/doc/HTML/it/amarok/config_engine.png share/doc/HTML/it/amarok/config_general.png share/doc/HTML/it/amarok/config_osd.png share/doc/HTML/it/amarok/config_playback.png share/doc/HTML/it/amarok/config_scrobbler.png share/doc/HTML/it/amarok/context.png share/doc/HTML/it/amarok/coverman.png share/doc/HTML/it/amarok/develop.docbook share/doc/HTML/it/amarok/dynamic_bar.png share/doc/HTML/it/amarok/dynamic_settings.png share/doc/HTML/it/amarok/equalizer.png share/doc/HTML/it/amarok/faq.docbook share/doc/HTML/it/amarok/feature_guide.docbook share/doc/HTML/it/amarok/file_browser.png share/doc/HTML/it/amarok/hidden.docbook share/doc/HTML/it/amarok/index.cache.bz2 share/doc/HTML/it/amarok/index.docbook share/doc/HTML/it/amarok/media_device.png share/doc/HTML/it/amarok/menubar.png share/doc/HTML/it/amarok/pl_browser.png share/doc/HTML/it/amarok/pl_tip1.png share/doc/HTML/it/amarok/play_list.png share/doc/HTML/it/amarok/player_window.png share/doc/HTML/it/amarok/playlist_browser.png share/doc/HTML/it/amarok/plugin.docbook share/doc/HTML/it/amarok/queue_manager.png share/doc/HTML/it/amarok/quick.docbook share/doc/HTML/it/amarok/requirements.docbook share/doc/HTML/it/amarok/rmb_menu.png share/doc/HTML/it/amarok/script_manager.png share/doc/HTML/it/amarok/status_bar.png share/doc/HTML/it/amarok/using.docbook share/doc/HTML/it/amarok/vis_window.png share/doc/HTML/nl/amarok/advanced.docbook share/doc/HTML/nl/amarok/analyzer.png share/doc/HTML/nl/amarok/buttons.png share/doc/HTML/nl/amarok/collection.png share/doc/HTML/nl/amarok/common share/doc/HTML/nl/amarok/config.docbook share/doc/HTML/nl/amarok/config_appearance.png share/doc/HTML/nl/amarok/config_collection.png share/doc/HTML/nl/amarok/config_colors.png share/doc/HTML/nl/amarok/config_engine.png share/doc/HTML/nl/amarok/config_fonts.png share/doc/HTML/nl/amarok/config_general.png share/doc/HTML/nl/amarok/config_osd.png share/doc/HTML/nl/amarok/config_playback.png share/doc/HTML/nl/amarok/config_scrobbler.png share/doc/HTML/nl/amarok/context.png share/doc/HTML/nl/amarok/coverman.png share/doc/HTML/nl/amarok/develop.docbook share/doc/HTML/nl/amarok/equalizer.png share/doc/HTML/nl/amarok/faq.docbook share/doc/HTML/nl/amarok/feature_guide.docbook share/doc/HTML/nl/amarok/file_browser.png share/doc/HTML/nl/amarok/hidden.docbook share/doc/HTML/nl/amarok/index.cache.bz2 share/doc/HTML/nl/amarok/index.docbook share/doc/HTML/nl/amarok/media_device.png share/doc/HTML/nl/amarok/menubar.png share/doc/HTML/nl/amarok/pl_browser.png share/doc/HTML/nl/amarok/pl_tip1.png share/doc/HTML/nl/amarok/play_list.png share/doc/HTML/nl/amarok/player_window.png share/doc/HTML/nl/amarok/playlist_window.png share/doc/HTML/nl/amarok/plugin.docbook share/doc/HTML/nl/amarok/quick.docbook share/doc/HTML/nl/amarok/requirements.docbook share/doc/HTML/nl/amarok/rmb_menu.png share/doc/HTML/nl/amarok/search.png share/doc/HTML/nl/amarok/status_bar.png share/doc/HTML/nl/amarok/using.docbook share/doc/HTML/nl/amarok/vis_window.png -share/doc/HTML/pl/amarok/advanced.docbook -share/doc/HTML/pl/amarok/common -share/doc/HTML/pl/amarok/config.docbook -share/doc/HTML/pl/amarok/faq.docbook -share/doc/HTML/pl/amarok/index.docbook -share/doc/HTML/pl/amarok/index.cache.bz2 -share/doc/HTML/pl/amarok/quick.docbook -share/doc/HTML/pl/amarok/requirements.docbook -share/doc/HTML/pl/amarok/using.docbook share/doc/HTML/pt/amarok/advanced.docbook share/doc/HTML/pt/amarok/common share/doc/HTML/pt/amarok/config.docbook share/doc/HTML/pt/amarok/develop.docbook share/doc/HTML/pt/amarok/faq.docbook share/doc/HTML/pt/amarok/feature_guide.docbook share/doc/HTML/pt/amarok/hidden.docbook share/doc/HTML/pt/amarok/index.cache.bz2 share/doc/HTML/pt/amarok/index.docbook share/doc/HTML/pt/amarok/plugin.docbook share/doc/HTML/pt/amarok/quick.docbook share/doc/HTML/pt/amarok/requirements.docbook share/doc/HTML/pt/amarok/using.docbook share/doc/HTML/pt_BR/amarok/advanced.docbook share/doc/HTML/pt_BR/amarok/common share/doc/HTML/pt_BR/amarok/config.docbook share/doc/HTML/pt_BR/amarok/faq.docbook share/doc/HTML/pt_BR/amarok/feature_guide.docbook share/doc/HTML/pt_BR/amarok/index.cache.bz2 share/doc/HTML/pt_BR/amarok/index.docbook share/doc/HTML/pt_BR/amarok/quick.docbook share/doc/HTML/pt_BR/amarok/requirements.docbook share/doc/HTML/pt_BR/amarok/using.docbook share/doc/HTML/ru/amarok/advanced.docbook share/doc/HTML/ru/amarok/collection.png share/doc/HTML/ru/amarok/common share/doc/HTML/ru/amarok/config.docbook share/doc/HTML/ru/amarok/config_appearance.png share/doc/HTML/ru/amarok/config_collection.png share/doc/HTML/ru/amarok/config_engine.png share/doc/HTML/ru/amarok/config_general.png share/doc/HTML/ru/amarok/config_osd.png share/doc/HTML/ru/amarok/config_playback.png share/doc/HTML/ru/amarok/config_scrobbler.png share/doc/HTML/ru/amarok/context.png share/doc/HTML/ru/amarok/coverman.png share/doc/HTML/ru/amarok/dynamic_mode1.png share/doc/HTML/ru/amarok/equalizer.png share/doc/HTML/ru/amarok/faq.docbook share/doc/HTML/ru/amarok/feature_guide.docbook share/doc/HTML/ru/amarok/file_browser.png share/doc/HTML/ru/amarok/index.cache.bz2 share/doc/HTML/ru/amarok/index.docbook share/doc/HTML/ru/amarok/menubar.png share/doc/HTML/ru/amarok/pl_browser.png share/doc/HTML/ru/amarok/pl_tip1.png share/doc/HTML/ru/amarok/play_list.png share/doc/HTML/ru/amarok/playlist_window.png share/doc/HTML/ru/amarok/queue_manager.png share/doc/HTML/ru/amarok/quick.docbook share/doc/HTML/ru/amarok/requirements.docbook share/doc/HTML/ru/amarok/rmb_menu.png share/doc/HTML/ru/amarok/status_bar.png share/doc/HTML/ru/amarok/using.docbook share/doc/HTML/sv/amarok/add_dynamic.png share/doc/HTML/sv/amarok/advanced.docbook share/doc/HTML/sv/amarok/amarok_playlist.png share/doc/HTML/sv/amarok/analyzer.png share/doc/HTML/sv/amarok/browser_choice.png share/doc/HTML/sv/amarok/buttons.png share/doc/HTML/sv/amarok/collection.png share/doc/HTML/sv/amarok/common share/doc/HTML/sv/amarok/config.docbook share/doc/HTML/sv/amarok/config_appearance.png share/doc/HTML/sv/amarok/config_collection.png share/doc/HTML/sv/amarok/config_colors.png share/doc/HTML/sv/amarok/config_engine.png share/doc/HTML/sv/amarok/config_fonts.png share/doc/HTML/sv/amarok/config_general.png share/doc/HTML/sv/amarok/config_mysql.png share/doc/HTML/sv/amarok/config_osd.png share/doc/HTML/sv/amarok/config_playback.png share/doc/HTML/sv/amarok/config_scrobbler.png share/doc/HTML/sv/amarok/context.png share/doc/HTML/sv/amarok/coverman.png share/doc/HTML/sv/amarok/develop.docbook share/doc/HTML/sv/amarok/dynamic_bar.png share/doc/HTML/sv/amarok/dynamic_settings.png share/doc/HTML/sv/amarok/equalizer.png share/doc/HTML/sv/amarok/faq.docbook share/doc/HTML/sv/amarok/feature_guide.docbook share/doc/HTML/sv/amarok/file_browser.png share/doc/HTML/sv/amarok/hidden.docbook share/doc/HTML/sv/amarok/index.cache.bz2 share/doc/HTML/sv/amarok/index.docbook share/doc/HTML/sv/amarok/media_device.png share/doc/HTML/sv/amarok/menubar.png share/doc/HTML/sv/amarok/pl_browser.png share/doc/HTML/sv/amarok/pl_tip1.png share/doc/HTML/sv/amarok/play_list.png share/doc/HTML/sv/amarok/player_window.png share/doc/HTML/sv/amarok/playlist_browser.png share/doc/HTML/sv/amarok/playlist_window.png share/doc/HTML/sv/amarok/plugin.docbook share/doc/HTML/sv/amarok/queue_manager.png share/doc/HTML/sv/amarok/quick.docbook share/doc/HTML/sv/amarok/requirements.docbook share/doc/HTML/sv/amarok/rmb_menu.png share/doc/HTML/sv/amarok/script_manager.png share/doc/HTML/sv/amarok/scripts_window.png share/doc/HTML/sv/amarok/search.png share/doc/HTML/sv/amarok/status_bar.png share/doc/HTML/sv/amarok/streams.png share/doc/HTML/sv/amarok/using.docbook share/doc/HTML/sv/amarok/vis_window.png share/doc/HTML/sv/amarok/welcome.png share/icons/hicolor/128x128/apps/amarok.png share/icons/hicolor/16x16/apps/amarok.png share/icons/hicolor/22x22/apps/amarok.png share/icons/hicolor/32x32/apps/amarok.png share/icons/hicolor/48x48/apps/amarok.png share/icons/hicolor/64x64/apps/amarok.png share/locale/az/LC_MESSAGES/amarok.mo share/locale/bg/LC_MESSAGES/amarok.mo share/locale/br/LC_MESSAGES/amarok.mo share/locale/ca/LC_MESSAGES/amarok.mo share/locale/cs/LC_MESSAGES/amarok.mo share/locale/cy/LC_MESSAGES/amarok.mo share/locale/da/LC_MESSAGES/amarok.mo share/locale/de/LC_MESSAGES/amarok.mo share/locale/el/LC_MESSAGES/amarok.mo share/locale/en_GB/LC_MESSAGES/amarok.mo share/locale/es/LC_MESSAGES/amarok.mo share/locale/et/LC_MESSAGES/amarok.mo share/locale/fi/LC_MESSAGES/amarok.mo share/locale/fr/LC_MESSAGES/amarok.mo share/locale/ga/LC_MESSAGES/amarok.mo share/locale/gl/LC_MESSAGES/amarok.mo share/locale/he/LC_MESSAGES/amarok.mo share/locale/hi/LC_MESSAGES/amarok.mo share/locale/hu/LC_MESSAGES/amarok.mo share/locale/is/LC_MESSAGES/amarok.mo share/locale/it/LC_MESSAGES/amarok.mo share/locale/ja/LC_MESSAGES/amarok.mo +share/locale/ka/LC_MESSAGES/amarok.mo share/locale/km/LC_MESSAGES/amarok.mo share/locale/ko/LC_MESSAGES/amarok.mo share/locale/lt/LC_MESSAGES/amarok.mo +share/locale/ms/LC_MESSAGES/amarok.mo share/locale/nb/LC_MESSAGES/amarok.mo share/locale/nl/LC_MESSAGES/amarok.mo share/locale/nn/LC_MESSAGES/amarok.mo share/locale/pa/LC_MESSAGES/amarok.mo share/locale/pl/LC_MESSAGES/amarok.mo share/locale/pt/LC_MESSAGES/amarok.mo share/locale/pt_BR/LC_MESSAGES/amarok.mo share/locale/ro/LC_MESSAGES/amarok.mo share/locale/ru/LC_MESSAGES/amarok.mo share/locale/rw/LC_MESSAGES/amarok.mo share/locale/sl/LC_MESSAGES/amarok.mo share/locale/sr/LC_MESSAGES/amarok.mo share/locale/sr@Latn/LC_MESSAGES/amarok.mo share/locale/sv/LC_MESSAGES/amarok.mo share/locale/ta/LC_MESSAGES/amarok.mo share/locale/tg/LC_MESSAGES/amarok.mo share/locale/th/LC_MESSAGES/amarok.mo share/locale/tr/LC_MESSAGES/amarok.mo share/locale/uk/LC_MESSAGES/amarok.mo share/locale/uz/LC_MESSAGES/amarok.mo share/locale/zh_CN/LC_MESSAGES/amarok.mo share/locale/zh_TW/LC_MESSAGES/amarok.mo %%GPOD%%share/services/amarok_ipod-mediadevice.desktop share/services/amarok_generic-mediadevice.desktop share/services/amarok_xine-engine.desktop share/services/amarok_void-engine_plugin.desktop +share/services/lastfm.protocol +share/servicetypes/amarok_codecinstall.desktop share/servicetypes/amarok_plugin.desktop @dirrmtry share/locale/km/LC_MESSAGES @dirrmtry share/locale/km @dirrmtry share/locale/uz/LC_MESSAGES @dirrmtry share/locale/uz @dirrm share/doc/HTML/sv/amarok @dirrm share/doc/HTML/ru/amarok @dirrm share/doc/HTML/pt_BR/amarok @dirrm share/doc/HTML/pt/amarok -@dirrm share/doc/HTML/pl/amarok @dirrm share/doc/HTML/nl/amarok @dirrm share/doc/HTML/it/amarok @dirrm share/doc/HTML/fr/amarok @dirrm share/doc/HTML/et/amarok @dirrm share/doc/HTML/es/amarok @dirrm share/doc/HTML/en/amarok @dirrm share/doc/HTML/de/amarok @dirrm share/doc/HTML/da/amarok @dirrm share/apps/amarok/themes/reinhardt/images @dirrm share/apps/amarok/themes/reinhardt @dirrm share/apps/amarok/themes/example @dirrm share/apps/amarok/themes @dirrm share/apps/amarok/scripts/webcontrol @dirrm share/apps/amarok/scripts/templates +@dirrm share/apps/amarok/scripts/score_impulsive +@dirrm share/apps/amarok/scripts/score_default @dirrm share/apps/amarok/scripts/ruby_debug @dirrm share/apps/amarok/scripts/playlist2html @dirrm share/apps/amarok/scripts/lyrics_lyrc @dirrm share/apps/amarok/scripts/lyrics_astraweb @dirrm share/apps/amarok/scripts/common -@dirrm share/apps/amarok/scripts/amarok_live @dirrm share/apps/amarok/scripts @dirrm share/apps/amarok/images -@dirrm share/apps/amarok/icons/crystalsvg/scalable/actions -@dirrm share/apps/amarok/icons/crystalsvg/scalable @dirrm share/apps/amarok/icons/crystalsvg/64x64/actions @dirrm share/apps/amarok/icons/crystalsvg/64x64 @dirrm share/apps/amarok/icons/crystalsvg/22x22/actions @dirrm share/apps/amarok/icons/crystalsvg/22x22 @dirrm share/apps/amarok/icons/crystalsvg/16x16/actions @dirrm share/apps/amarok/icons/crystalsvg/16x16 @dirrm share/apps/amarok/icons/crystalsvg @dirrm share/apps/amarok/icons/hicolor/64x64/actions @dirrm share/apps/amarok/icons/hicolor/64x64 @dirrm share/apps/amarok/icons/hicolor/48x48/actions @dirrm share/apps/amarok/icons/hicolor/48x48 @dirrm share/apps/amarok/icons/hicolor/32x32/actions @dirrm share/apps/amarok/icons/hicolor/32x32 @dirrm share/apps/amarok/icons/hicolor/22x22/actions @dirrm share/apps/amarok/icons/hicolor/22x22 @dirrm share/apps/amarok/icons/hicolor/16x16/actions @dirrm share/apps/amarok/icons/hicolor/16x16 @dirrm share/apps/amarok/icons/hicolor @dirrm share/apps/amarok/icons @dirrm share/apps/amarok/data @dirrm share/apps/amarok Property changes on: head/audio/amarok-kde4/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.18 \ No newline at end of property +1.19 \ No newline at end of property