diff options
author | miwi <miwi@FreeBSD.org> | 2007-12-31 08:22:57 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2007-12-31 08:22:57 +0800 |
commit | 67eb8d0c939d18698ced55fec30de519623c5a22 (patch) | |
tree | 9c58b89a4b2ff9a3e69a97368dab626385ef6389 /audio | |
parent | b29644d248c5ffcecf5af7b9ea734f0193a0f72d (diff) | |
download | freebsd-ports-gnome-67eb8d0c939d18698ced55fec30de519623c5a22.tar.gz freebsd-ports-gnome-67eb8d0c939d18698ced55fec30de519623c5a22.tar.zst freebsd-ports-gnome-67eb8d0c939d18698ced55fec30de519623c5a22.zip |
Ampache is a Web-based Audio file manager. It is implemented with MySQL,
and PHP. It allows you to view, edit, and play your audio files via the
web. It has support for playlists, artist and album views, album art,
random play, playback via Http/On the Fly Transcoding and Downsampling,
Vote based playback, Mpd and Icecast, Integrated Flash Player, as well
as per user themes and song play tracking.
WWW: http://ampache.org/
PR: ports/119093
Submitted by: Philippe Audeoud <jadawin at tuxaco.net>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/Makefile | 1 | ||||
-rw-r--r-- | audio/ampache/Makefile | 34 | ||||
-rw-r--r-- | audio/ampache/distinfo | 3 | ||||
-rw-r--r-- | audio/ampache/files/pkg-deinstall.in | 12 | ||||
-rw-r--r-- | audio/ampache/files/pkg-message.in | 16 | ||||
-rw-r--r-- | audio/ampache/pkg-descr | 8 | ||||
-rw-r--r-- | audio/ampache/pkg-plist | 477 |
7 files changed, 551 insertions, 0 deletions
diff --git a/audio/Makefile b/audio/Makefile index 103c385db296..e6d3a8b667fe 100644 --- a/audio/Makefile +++ b/audio/Makefile @@ -28,6 +28,7 @@ SUBDIR += amarok-fs SUBDIR += amb-plugins SUBDIR += amp + SUBDIR += ampache SUBDIR += ample SUBDIR += amrcoder SUBDIR += aqualung diff --git a/audio/ampache/Makefile b/audio/ampache/Makefile new file mode 100644 index 000000000000..a7846129b105 --- /dev/null +++ b/audio/ampache/Makefile @@ -0,0 +1,34 @@ +# New ports collection makefile for: ampache +# Date created: 28 December 2007 +# Whom: Philippe Audeoud <jadawin@tuxaco.net> +# $FreeBSD$ + +PORTNAME= ampache +PORTVERSION= 3.3.3.5 +CATEGORIES= audio www +MASTER_SITES= http://ampache.org/downloads/ + +MAINTAINER= jadawin@tuxaco.net +COMMENT= A Web-based Audio file manager + +USE_PHP= mysql pcre session iconv +WANT_PHP_WEB= yes + +NO_BUILD= yes +USE_GETTEXT= yes + +PKGDEINSTALL= ${WRKDIR}/pkg-deinstall +PKGMESSAGE= ${WRKDIR}/pkg-message +SUB_FILES= pkg-message pkg-deinstall +SUB_LIST= PORTNAME=${PORTNAME} \ + WWWDIR=${WWWDIR} + +do-install: + ${MKDIR} ${WWWDIR} + @(cd ${WRKSRC} && ${COPYTREE_SHARE} \* ${WWWDIR}) + ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR} + +post-install: + @${CAT} ${PKGMESSAGE} + +.include <bsd.port.mk> diff --git a/audio/ampache/distinfo b/audio/ampache/distinfo new file mode 100644 index 000000000000..b50913e5e0a5 --- /dev/null +++ b/audio/ampache/distinfo @@ -0,0 +1,3 @@ +MD5 (ampache-3.3.3.5.tar.gz) = caec287d813bb303701ed7ac523e8152 +SHA256 (ampache-3.3.3.5.tar.gz) = 3968ff3efcdbb11fb87ea68d06a722ebef8c59b616a4dacdefd5eaa8588627b4 +SIZE (ampache-3.3.3.5.tar.gz) = 1820523 diff --git a/audio/ampache/files/pkg-deinstall.in b/audio/ampache/files/pkg-deinstall.in new file mode 100644 index 000000000000..afe6450ba342 --- /dev/null +++ b/audio/ampache/files/pkg-deinstall.in @@ -0,0 +1,12 @@ +#! /bin/sh +# $FreeBSD$ +# + +PATH=/bin:/usr/bin:/usr/sbin + +if [ "$2" != "POST-DEINSTALL" ]; then + exit 0 +fi +if [ -d %%WWWDIR%% ]; then + echo "===> You may delete '%%WWWDIR%%' if you want to really delete your ampache." +fi diff --git a/audio/ampache/files/pkg-message.in b/audio/ampache/files/pkg-message.in new file mode 100644 index 000000000000..1661f19099ff --- /dev/null +++ b/audio/ampache/files/pkg-message.in @@ -0,0 +1,16 @@ +--------------------------------------------------------------------------- + +Browse http://localhost/%%PORTNAME%%/ to configure your ampache + +--------------------------------------------------------------------------- +To make ampache available through your web site, I suggest +that you add something like the following to httpd.conf: + + Alias /ampache/ "%%WWWDIR%%/" + + <Directory "%%WWWDIR%%/"> + Options none + AllowOverride Limit + Order Deny,Allow + Allow from all + </Directory> diff --git a/audio/ampache/pkg-descr b/audio/ampache/pkg-descr new file mode 100644 index 000000000000..5bc1e9147006 --- /dev/null +++ b/audio/ampache/pkg-descr @@ -0,0 +1,8 @@ +Ampache is a Web-based Audio file manager. It is implemented with MySQL, +and PHP. It allows you to view, edit, and play your audio files via the +web. It has support for playlists, artist and album views, album art, +random play, playback via Http/On the Fly Transcoding and Downsampling, +Vote based playback, Mpd and Icecast, Integrated Flash Player, as well +as per user themes and song play tracking. + +WWW: http://ampache.org/ diff --git a/audio/ampache/pkg-plist b/audio/ampache/pkg-plist new file mode 100644 index 000000000000..1620357b24d4 --- /dev/null +++ b/audio/ampache/pkg-plist @@ -0,0 +1,477 @@ +%%WWWDIR%%/activate.php +%%WWWDIR%%/admin/access.php +%%WWWDIR%%/admin/catalog.php +%%WWWDIR%%/admin/duplicates.php +%%WWWDIR%%/admin/flag.php +%%WWWDIR%%/admin/index.php +%%WWWDIR%%/admin/mail.php +%%WWWDIR%%/admin/modules.php +%%WWWDIR%%/admin/preferences.php +%%WWWDIR%%/admin/system.php +%%WWWDIR%%/admin/users.php +%%WWWDIR%%/albums.php +%%WWWDIR%%/artists.php +%%WWWDIR%%/batch.php +%%WWWDIR%%/bin/.htaccess +%%WWWDIR%%/bin/catalog_update.inc +%%WWWDIR%%/bin/delete_disabled.inc +%%WWWDIR%%/bin/dump_album_art.inc +%%WWWDIR%%/bin/print_tags.inc +%%WWWDIR%%/bin/sort_files.inc +%%WWWDIR%%/bin/write_tags.inc +%%WWWDIR%%/browse.php +%%WWWDIR%%/config/.htaccess +%%WWWDIR%%/config/ampache.cfg.php.dist +%%WWWDIR%%/config/motd.php.dist +%%WWWDIR%%/config/registration_agreement.php.dist +%%WWWDIR%%/docs/CHANGELOG +%%WWWDIR%%/docs/GPL-LICENSE +%%WWWDIR%%/docs/INSTALL +%%WWWDIR%%/docs/MIGRATION +%%WWWDIR%%/docs/README +%%WWWDIR%%/download/index.php +%%WWWDIR%%/favicon.ico +%%WWWDIR%%/flag.php +%%WWWDIR%%/genre.php +%%WWWDIR%%/image.php +%%WWWDIR%%/images/ampache-dark-bg.gif +%%WWWDIR%%/images/ampache-light-bg.gif +%%WWWDIR%%/images/ampache-mid.gif +%%WWWDIR%%/images/ampache.gif +%%WWWDIR%%/images/blank-pixel.gif +%%WWWDIR%%/images/blankalbum.gif +%%WWWDIR%%/images/icon_add_user.png +%%WWWDIR%%/images/icon_all.png +%%WWWDIR%%/images/icon_batch_download.png +%%WWWDIR%%/images/icon_delete.png +%%WWWDIR%%/images/icon_disable.png +%%WWWDIR%%/images/icon_disable_hover.png +%%WWWDIR%%/images/icon_download.png +%%WWWDIR%%/images/icon_edit.png +%%WWWDIR%%/images/icon_enable.png +%%WWWDIR%%/images/icon_enable_hover.png +%%WWWDIR%%/images/icon_flag.png +%%WWWDIR%%/images/icon_flag_off.png +%%WWWDIR%%/images/icon_link.png +%%WWWDIR%%/images/icon_next.png +%%WWWDIR%%/images/icon_next_hover.png +%%WWWDIR%%/images/icon_pause.png +%%WWWDIR%%/images/icon_pause_hover.png +%%WWWDIR%%/images/icon_play.png +%%WWWDIR%%/images/icon_play_hover.png +%%WWWDIR%%/images/icon_preferences.png +%%WWWDIR%%/images/icon_prev.png +%%WWWDIR%%/images/icon_prev_hover.png +%%WWWDIR%%/images/icon_random.png +%%WWWDIR%%/images/icon_statistics.png +%%WWWDIR%%/images/icon_stop.png +%%WWWDIR%%/images/icon_stop_hover.png +%%WWWDIR%%/images/icon_view.png +%%WWWDIR%%/images/icon_volumedn.png +%%WWWDIR%%/images/icon_volumemute.png +%%WWWDIR%%/images/icon_volumeup.png +%%WWWDIR%%/images/ratings/star_rating.gif +%%WWWDIR%%/images/ratings/x.gif +%%WWWDIR%%/images/ratings/x_off.gif +%%WWWDIR%%/images/top_bg.jpg +%%WWWDIR%%/index.php +%%WWWDIR%%/install.php +%%WWWDIR%%/lib/album.lib.php +%%WWWDIR%%/lib/artist.lib.php +%%WWWDIR%%/lib/batch.lib.php +%%WWWDIR%%/lib/class/access.class.php +%%WWWDIR%%/lib/class/album.class.php +%%WWWDIR%%/lib/class/artist.class.php +%%WWWDIR%%/lib/class/audioscrobbler.class.php +%%WWWDIR%%/lib/class/catalog.class.php +%%WWWDIR%%/lib/class/error.class.php +%%WWWDIR%%/lib/class/flag.class.php +%%WWWDIR%%/lib/class/genre.class.php +%%WWWDIR%%/lib/class/localplay.class.php +%%WWWDIR%%/lib/class/playlist.class.php +%%WWWDIR%%/lib/class/plugin.class.php +%%WWWDIR%%/lib/class/rating.class.php +%%WWWDIR%%/lib/class/song.class.php +%%WWWDIR%%/lib/class/stats.class.php +%%WWWDIR%%/lib/class/stream.class.php +%%WWWDIR%%/lib/class/tmp_playlist.class.php +%%WWWDIR%%/lib/class/update.class.php +%%WWWDIR%%/lib/class/user.class.php +%%WWWDIR%%/lib/class/view.class.php +%%WWWDIR%%/lib/debug.lib.php +%%WWWDIR%%/lib/democratic.lib.php +%%WWWDIR%%/lib/duplicates.php +%%WWWDIR%%/lib/flag.php +%%WWWDIR%%/lib/general.lib.php +%%WWWDIR%%/lib/gettext.php +%%WWWDIR%%/lib/init.php +%%WWWDIR%%/lib/install.php +%%WWWDIR%%/lib/javascript-base.js +%%WWWDIR%%/lib/localplay.lib.php +%%WWWDIR%%/lib/log.lib.php +%%WWWDIR%%/lib/playlist.lib.php +%%WWWDIR%%/lib/preferences.php +%%WWWDIR%%/lib/rating.lib.php +%%WWWDIR%%/lib/rss.php +%%WWWDIR%%/lib/search.php +%%WWWDIR%%/lib/song.php +%%WWWDIR%%/lib/stream.lib.php +%%WWWDIR%%/lib/themes.php +%%WWWDIR%%/lib/ui.lib.php +%%WWWDIR%%/lib/xmlrpc.php +%%WWWDIR%%/locale/base/TRANSLATIONS +%%WWWDIR%%/locale/base/gather-messages.sh +%%WWWDIR%%/locale/base/merge-messages.sh +%%WWWDIR%%/locale/base/messages.po +%%WWWDIR%%/locale/de_DE/LC_MESSAGES/messages.mo +%%WWWDIR%%/locale/de_DE/LC_MESSAGES/messages.po +%%WWWDIR%%/locale/en_GB/LC_MESSAGES/messages.mo +%%WWWDIR%%/locale/en_GB/LC_MESSAGES/messages.po +%%WWWDIR%%/locale/es_ES/LC_MESSAGES/messages.mo +%%WWWDIR%%/locale/es_ES/LC_MESSAGES/messages.po +%%WWWDIR%%/locale/fr_FR/LC_MESSAGES/messages.mo +%%WWWDIR%%/locale/fr_FR/LC_MESSAGES/messages.po +%%WWWDIR%%/locale/is_IS/LC_MESSAGES/messages.po +%%WWWDIR%%/locale/it_IT/LC_MESSAGES/messages.mo +%%WWWDIR%%/locale/it_IT/LC_MESSAGES/messages.po +%%WWWDIR%%/locale/nl_NL/LC_MESSAGES/messages.mo +%%WWWDIR%%/locale/nl_NL/LC_MESSAGES/messages.po +%%WWWDIR%%/locale/ru_RU/LC_MESSAGES/messages.mo +%%WWWDIR%%/locale/ru_RU/LC_MESSAGES/messages.po +%%WWWDIR%%/locale/tr_TR/LC_MESSAGES/messages.mo +%%WWWDIR%%/locale/tr_TR/LC_MESSAGES/messages.po +%%WWWDIR%%/locale/zh_CN/LC_MESSAGES/messages.mo +%%WWWDIR%%/locale/zh_CN/LC_MESSAGES/messages.po +%%WWWDIR%%/localplay.php +%%WWWDIR%%/login.php +%%WWWDIR%%/logout.php +%%WWWDIR%%/modules/archive/archive.lib.php +%%WWWDIR%%/modules/captcha/COLLEGE.ttf +%%WWWDIR%%/modules/captcha/captcha.php +%%WWWDIR%%/modules/catalog.php +%%WWWDIR%%/modules/flash/FMP3.swf +%%WWWDIR%%/modules/flash/license.txt +%%WWWDIR%%/modules/flash/readme.txt +%%WWWDIR%%/modules/flash/swfobject.js +%%WWWDIR%%/modules/flash/xspf_player.php +%%WWWDIR%%/modules/flash/xspf_player.swf +%%WWWDIR%%/modules/horde/Browser.php +%%WWWDIR%%/modules/httpq/httpqplayer.class.php +%%WWWDIR%%/modules/id3/changelog.txt +%%WWWDIR%%/modules/id3/dependencies.txt +%%WWWDIR%%/modules/id3/getid3/extension.cache.dbm.php +%%WWWDIR%%/modules/id3/getid3/extension.cache.mysql.php +%%WWWDIR%%/modules/id3/getid3/getid3.lib.php +%%WWWDIR%%/modules/id3/getid3/getid3.php +%%WWWDIR%%/modules/id3/getid3/helperapps/readme.txt +%%WWWDIR%%/modules/id3/getid3/module.archive.gzip.php +%%WWWDIR%%/modules/id3/getid3/module.archive.rar.php +%%WWWDIR%%/modules/id3/getid3/module.archive.szip.php +%%WWWDIR%%/modules/id3/getid3/module.archive.tar.php +%%WWWDIR%%/modules/id3/getid3/module.archive.zip.php +%%WWWDIR%%/modules/id3/getid3/module.audio-video.asf.php +%%WWWDIR%%/modules/id3/getid3/module.audio-video.bink.php +%%WWWDIR%%/modules/id3/getid3/module.audio-video.flv.php +%%WWWDIR%%/modules/id3/getid3/module.audio-video.matroska.php +%%WWWDIR%%/modules/id3/getid3/module.audio-video.mpeg.php +%%WWWDIR%%/modules/id3/getid3/module.audio-video.nsv.php +%%WWWDIR%%/modules/id3/getid3/module.audio-video.quicktime.php +%%WWWDIR%%/modules/id3/getid3/module.audio-video.real.php +%%WWWDIR%%/modules/id3/getid3/module.audio-video.riff.php +%%WWWDIR%%/modules/id3/getid3/module.audio-video.swf.php +%%WWWDIR%%/modules/id3/getid3/module.audio.aac.php +%%WWWDIR%%/modules/id3/getid3/module.audio.ac3.php +%%WWWDIR%%/modules/id3/getid3/module.audio.au.php +%%WWWDIR%%/modules/id3/getid3/module.audio.avr.php +%%WWWDIR%%/modules/id3/getid3/module.audio.bonk.php +%%WWWDIR%%/modules/id3/getid3/module.audio.flac.php +%%WWWDIR%%/modules/id3/getid3/module.audio.la.php +%%WWWDIR%%/modules/id3/getid3/module.audio.lpac.php +%%WWWDIR%%/modules/id3/getid3/module.audio.midi.php +%%WWWDIR%%/modules/id3/getid3/module.audio.mod.php +%%WWWDIR%%/modules/id3/getid3/module.audio.monkey.php +%%WWWDIR%%/modules/id3/getid3/module.audio.mp3.php +%%WWWDIR%%/modules/id3/getid3/module.audio.mpc.php +%%WWWDIR%%/modules/id3/getid3/module.audio.ogg.php +%%WWWDIR%%/modules/id3/getid3/module.audio.optimfrog.php +%%WWWDIR%%/modules/id3/getid3/module.audio.rkau.php +%%WWWDIR%%/modules/id3/getid3/module.audio.shorten.php +%%WWWDIR%%/modules/id3/getid3/module.audio.tta.php +%%WWWDIR%%/modules/id3/getid3/module.audio.voc.php +%%WWWDIR%%/modules/id3/getid3/module.audio.vqf.php +%%WWWDIR%%/modules/id3/getid3/module.audio.wavpack.php +%%WWWDIR%%/modules/id3/getid3/module.graphic.bmp.php +%%WWWDIR%%/modules/id3/getid3/module.graphic.gif.php +%%WWWDIR%%/modules/id3/getid3/module.graphic.jpg.php +%%WWWDIR%%/modules/id3/getid3/module.graphic.pcd.php +%%WWWDIR%%/modules/id3/getid3/module.graphic.png.php +%%WWWDIR%%/modules/id3/getid3/module.graphic.svg.php +%%WWWDIR%%/modules/id3/getid3/module.graphic.tiff.php +%%WWWDIR%%/modules/id3/getid3/module.misc.exe.php +%%WWWDIR%%/modules/id3/getid3/module.misc.iso.php +%%WWWDIR%%/modules/id3/getid3/module.tag.apetag.php +%%WWWDIR%%/modules/id3/getid3/module.tag.id3v1.php +%%WWWDIR%%/modules/id3/getid3/module.tag.id3v2.php +%%WWWDIR%%/modules/id3/getid3/module.tag.lyrics3.php +%%WWWDIR%%/modules/id3/getid3/write.apetag.php +%%WWWDIR%%/modules/id3/getid3/write.id3v1.php +%%WWWDIR%%/modules/id3/getid3/write.id3v2.php +%%WWWDIR%%/modules/id3/getid3/write.lyrics3.php +%%WWWDIR%%/modules/id3/getid3/write.metaflac.php +%%WWWDIR%%/modules/id3/getid3/write.php +%%WWWDIR%%/modules/id3/getid3/write.real.php +%%WWWDIR%%/modules/id3/getid3/write.vorbiscomment.php +%%WWWDIR%%/modules/id3/helperapps/cygwin1.dll +%%WWWDIR%%/modules/id3/helperapps/head.exe +%%WWWDIR%%/modules/id3/helperapps/md5sum.exe +%%WWWDIR%%/modules/id3/helperapps/metaflac.exe +%%WWWDIR%%/modules/id3/helperapps/readme.txt +%%WWWDIR%%/modules/id3/helperapps/sha1sum.exe +%%WWWDIR%%/modules/id3/helperapps/shorten.exe +%%WWWDIR%%/modules/id3/helperapps/tail.exe +%%WWWDIR%%/modules/id3/helperapps/vorbiscomment.exe +%%WWWDIR%%/modules/id3/license.txt +%%WWWDIR%%/modules/id3/readme.txt +%%WWWDIR%%/modules/id3/structure.txt +%%WWWDIR%%/modules/id3/vainfo.class.php +%%WWWDIR%%/modules/infotools/AmazonSearchEngine.class.php +%%WWWDIR%%/modules/infotools/Snoopy.class.php +%%WWWDIR%%/modules/infotools/jamendoSearch.class.php +%%WWWDIR%%/modules/infotools/lastfm.class.php +%%WWWDIR%%/modules/kajax/README +%%WWWDIR%%/modules/kajax/ajax.js +%%WWWDIR%%/modules/lib.php +%%WWWDIR%%/modules/localplay/httpq.controller.php +%%WWWDIR%%/modules/localplay/icecast.controller.php +%%WWWDIR%%/modules/localplay/mpd.controller.php +%%WWWDIR%%/modules/localplay/xbmc.controller.php +%%WWWDIR%%/modules/mpd/CHANGELOG +%%WWWDIR%%/modules/mpd/README +%%WWWDIR%%/modules/mpd/USAGE +%%WWWDIR%%/modules/mpd/mpd-class-example.php +%%WWWDIR%%/modules/mpd/mpd.class.php +%%WWWDIR%%/modules/plugins/Lastfm.plugin.php +%%WWWDIR%%/modules/plugins/RioPlayer.plugin.php +%%WWWDIR%%/modules/validatemail/validateEmail.php +%%WWWDIR%%/modules/validatemail/validateEmailFormat.php +%%WWWDIR%%/modules/vauth/auth.lib.php +%%WWWDIR%%/modules/vauth/dbh.lib.php +%%WWWDIR%%/modules/vauth/init.php +%%WWWDIR%%/modules/vauth/session.lib.php +%%WWWDIR%%/modules/xmlrpc/ChangeLog +%%WWWDIR%%/modules/xmlrpc/README +%%WWWDIR%%/modules/xmlrpc/xmlrpc.inc +%%WWWDIR%%/modules/xmlrpc/xmlrpcs.inc +%%WWWDIR%%/play/index.php +%%WWWDIR%%/playlist.php +%%WWWDIR%%/preferences.php +%%WWWDIR%%/randomplay.php +%%WWWDIR%%/ratings.php +%%WWWDIR%%/register.php +%%WWWDIR%%/rss.php +%%WWWDIR%%/search.php +%%WWWDIR%%/server/ajax.server.php +%%WWWDIR%%/server/xml.server.php +%%WWWDIR%%/server/xmlrpc.server.php +%%WWWDIR%%/song.php +%%WWWDIR%%/sql/ampache.sql +%%WWWDIR%%/stats.php +%%WWWDIR%%/templates/footer.inc +%%WWWDIR%%/templates/handheld.css +%%WWWDIR%%/templates/header.inc +%%WWWDIR%%/templates/install.css +%%WWWDIR%%/templates/javascript_refresh.inc.php +%%WWWDIR%%/templates/list_header.inc +%%WWWDIR%%/templates/print.css +%%WWWDIR%%/templates/show_access_list.inc +%%WWWDIR%%/templates/show_add_access.inc +%%WWWDIR%%/templates/show_add_catalog.inc.php +%%WWWDIR%%/templates/show_add_playlist.inc.php +%%WWWDIR%%/templates/show_add_user.inc.php +%%WWWDIR%%/templates/show_admin_info.inc.php +%%WWWDIR%%/templates/show_admin_tools.inc.php +%%WWWDIR%%/templates/show_album.inc +%%WWWDIR%%/templates/show_album_art.inc.php +%%WWWDIR%%/templates/show_albums.inc +%%WWWDIR%%/templates/show_albums.inc.php +%%WWWDIR%%/templates/show_all_popular.inc.php +%%WWWDIR%%/templates/show_all_recent.inc.php +%%WWWDIR%%/templates/show_alphabet_form.inc.php +%%WWWDIR%%/templates/show_artist.inc +%%WWWDIR%%/templates/show_artist_box.inc.php +%%WWWDIR%%/templates/show_artists.inc +%%WWWDIR%%/templates/show_artists.inc.php +%%WWWDIR%%/templates/show_big_art.inc +%%WWWDIR%%/templates/show_box.inc.php +%%WWWDIR%%/templates/show_box_bottom.inc.php +%%WWWDIR%%/templates/show_box_top.inc.php +%%WWWDIR%%/templates/show_confirm_action.inc.php +%%WWWDIR%%/templates/show_confirmation.inc.php +%%WWWDIR%%/templates/show_disabled_songs.inc +%%WWWDIR%%/templates/show_duplicates.inc.php +%%WWWDIR%%/templates/show_edit_access.inc +%%WWWDIR%%/templates/show_edit_album.inc.php +%%WWWDIR%%/templates/show_edit_artist.inc.php +%%WWWDIR%%/templates/show_edit_catalog.inc.php +%%WWWDIR%%/templates/show_edit_song.inc.php +%%WWWDIR%%/templates/show_edit_user.inc.php +%%WWWDIR%%/templates/show_embed_xspf.inc.php +%%WWWDIR%%/templates/show_flag.inc.php +%%WWWDIR%%/templates/show_flagged.inc.php +%%WWWDIR%%/templates/show_genre.inc.php +%%WWWDIR%%/templates/show_genres.inc.php +%%WWWDIR%%/templates/show_get_albumart.inc.php +%%WWWDIR%%/templates/show_import_playlist.inc.php +%%WWWDIR%%/templates/show_index.inc.php +%%WWWDIR%%/templates/show_install.inc +%%WWWDIR%%/templates/show_install_account.inc.php +%%WWWDIR%%/templates/show_install_config.inc +%%WWWDIR%%/templates/show_install_lang.inc.php +%%WWWDIR%%/templates/show_ip_history.inc.php +%%WWWDIR%%/templates/show_list_duplicates.inc.php +%%WWWDIR%%/templates/show_local_catalog_info.inc.php +%%WWWDIR%%/templates/show_localplay.inc.php +%%WWWDIR%%/templates/show_localplay_control.inc.php +%%WWWDIR%%/templates/show_localplay_playlist.inc.php +%%WWWDIR%%/templates/show_localplay_status.inc.php +%%WWWDIR%%/templates/show_login_form.inc +%%WWWDIR%%/templates/show_mail_users.inc.php +%%WWWDIR%%/templates/show_modules.inc.php +%%WWWDIR%%/templates/show_now_playing.inc +%%WWWDIR%%/templates/show_now_playing_row.inc.php +%%WWWDIR%%/templates/show_object_rating.inc.php +%%WWWDIR%%/templates/show_object_rating_static.inc.php +%%WWWDIR%%/templates/show_play_selected.inc.php +%%WWWDIR%%/templates/show_playlist_box.inc.php +%%WWWDIR%%/templates/show_playlist_edit.inc.php +%%WWWDIR%%/templates/show_playlists.inc.php +%%WWWDIR%%/templates/show_playtype_switch.inc.php +%%WWWDIR%%/templates/show_preference_admin.inc.php +%%WWWDIR%%/templates/show_preference_box.inc.php +%%WWWDIR%%/templates/show_preferences.inc +%%WWWDIR%%/templates/show_random_albums.inc.php +%%WWWDIR%%/templates/show_random_play.inc +%%WWWDIR%%/templates/show_recently_played.inc.php +%%WWWDIR%%/templates/show_rename_artist.inc.php +%%WWWDIR%%/templates/show_search.inc +%%WWWDIR%%/templates/show_search_bar.inc +%%WWWDIR%%/templates/show_similar_artists.inc +%%WWWDIR%%/templates/show_songs.inc +%%WWWDIR%%/templates/show_test.inc +%%WWWDIR%%/templates/show_tv.inc.php +%%WWWDIR%%/templates/show_tv_adminctl.inc.php +%%WWWDIR%%/templates/show_tv_nowplaying.inc.php +%%WWWDIR%%/templates/show_tv_playlist.inc.php +%%WWWDIR%%/templates/show_user.inc.php +%%WWWDIR%%/templates/show_user_recommendations.inc.php +%%WWWDIR%%/templates/show_user_registration.inc.php +%%WWWDIR%%/templates/show_user_stats.inc.php +%%WWWDIR%%/templates/show_users.inc +%%WWWDIR%%/templates/show_users.inc.php +%%WWWDIR%%/templates/show_xspf_player.inc.php +%%WWWDIR%%/templates/sidebar.inc.php +%%WWWDIR%%/templates/subnavbar.inc.php +%%WWWDIR%%/test.php +%%WWWDIR%%/themes/burgundy/images/ampache-dark-bg.gif +%%WWWDIR%%/themes/burgundy/images/ampache-light-bg.gif +%%WWWDIR%%/themes/burgundy/images/ampache-mid.gif +%%WWWDIR%%/themes/burgundy/images/ampache.gif +%%WWWDIR%%/themes/burgundy/images/blank-pixel.gif +%%WWWDIR%%/themes/burgundy/images/blankalbum.gif +%%WWWDIR%%/themes/burgundy/images/blankalbum.jpg +%%WWWDIR%%/themes/burgundy/templates/default.css +%%WWWDIR%%/themes/burgundy/theme.cfg.php +%%WWWDIR%%/themes/classic/images/ampache-dark-bg.gif +%%WWWDIR%%/themes/classic/images/ampache-light-bg.gif +%%WWWDIR%%/themes/classic/images/ampache-mid.gif +%%WWWDIR%%/themes/classic/images/ampache.gif +%%WWWDIR%%/themes/classic/images/bg_login_0.jpg +%%WWWDIR%%/themes/classic/images/bg_login_1.jpg +%%WWWDIR%%/themes/classic/images/blank-pixel.gif +%%WWWDIR%%/themes/classic/images/blankalbum.gif +%%WWWDIR%%/themes/classic/images/bottom.gif +%%WWWDIR%%/themes/classic/images/bottomleft.gif +%%WWWDIR%%/themes/classic/images/bottomright.gif +%%WWWDIR%%/themes/classic/images/left.gif +%%WWWDIR%%/themes/classic/images/right.gif +%%WWWDIR%%/themes/classic/images/sidebar_top.jpg +%%WWWDIR%%/themes/classic/images/top.gif +%%WWWDIR%%/themes/classic/images/topleft.gif +%%WWWDIR%%/themes/classic/images/topright.gif +%%WWWDIR%%/themes/classic/templates/default.css +%%WWWDIR%%/themes/classic/theme.cfg.php +%%WWWDIR%%/themes/greyblock/images/ampache-dark-bg.gif +%%WWWDIR%%/themes/greyblock/images/ampache-light-bg.gif +%%WWWDIR%%/themes/greyblock/images/ampache-mid.gif +%%WWWDIR%%/themes/greyblock/images/ampache.gif +%%WWWDIR%%/themes/greyblock/images/blank-pixel.gif +%%WWWDIR%%/themes/greyblock/images/blankalbum.gif +%%WWWDIR%%/themes/greyblock/templates/default.css +%%WWWDIR%%/themes/greyblock/theme.cfg.php +%%WWWDIR%%/tv.php +%%WWWDIR%%/update.php +@dirrm %%WWWDIR%%/themes/greyblock/templates +@dirrm %%WWWDIR%%/themes/greyblock/images +@dirrm %%WWWDIR%%/themes/greyblock +@dirrm %%WWWDIR%%/themes/classic/templates +@dirrm %%WWWDIR%%/themes/classic/images +@dirrm %%WWWDIR%%/themes/classic +@dirrm %%WWWDIR%%/themes/burgundy/templates +@dirrm %%WWWDIR%%/themes/burgundy/images +@dirrm %%WWWDIR%%/themes/burgundy +@dirrm %%WWWDIR%%/themes +@dirrm %%WWWDIR%%/templates +@dirrm %%WWWDIR%%/sql +@dirrm %%WWWDIR%%/server +@dirrm %%WWWDIR%%/play +@dirrm %%WWWDIR%%/modules/xmlrpc +@dirrm %%WWWDIR%%/modules/vauth +@dirrm %%WWWDIR%%/modules/validatemail +@dirrm %%WWWDIR%%/modules/plugins +@dirrm %%WWWDIR%%/modules/mpd +@dirrm %%WWWDIR%%/modules/localplay +@dirrm %%WWWDIR%%/modules/kajax +@dirrm %%WWWDIR%%/modules/infotools +@dirrm %%WWWDIR%%/modules/id3/helperapps +@dirrm %%WWWDIR%%/modules/id3/getid3/helperapps +@dirrm %%WWWDIR%%/modules/id3/getid3 +@dirrm %%WWWDIR%%/modules/id3 +@dirrm %%WWWDIR%%/modules/httpq +@dirrm %%WWWDIR%%/modules/horde +@dirrm %%WWWDIR%%/modules/flash +@dirrm %%WWWDIR%%/modules/captcha +@dirrm %%WWWDIR%%/modules/archive +@dirrm %%WWWDIR%%/modules +@dirrm %%WWWDIR%%/locale/zh_CN/LC_MESSAGES +@dirrm %%WWWDIR%%/locale/zh_CN +@dirrm %%WWWDIR%%/locale/tr_TR/LC_MESSAGES +@dirrm %%WWWDIR%%/locale/tr_TR +@dirrm %%WWWDIR%%/locale/ru_RU/LC_MESSAGES +@dirrm %%WWWDIR%%/locale/ru_RU +@dirrm %%WWWDIR%%/locale/nl_NL/LC_MESSAGES +@dirrm %%WWWDIR%%/locale/nl_NL +@dirrm %%WWWDIR%%/locale/it_IT/LC_MESSAGES +@dirrm %%WWWDIR%%/locale/it_IT +@dirrm %%WWWDIR%%/locale/is_IS/LC_MESSAGES +@dirrm %%WWWDIR%%/locale/is_IS +@dirrm %%WWWDIR%%/locale/fr_FR/LC_MESSAGES +@dirrm %%WWWDIR%%/locale/fr_FR +@dirrm %%WWWDIR%%/locale/es_ES/LC_MESSAGES +@dirrm %%WWWDIR%%/locale/es_ES +@dirrm %%WWWDIR%%/locale/en_GB/LC_MESSAGES +@dirrm %%WWWDIR%%/locale/en_GB +@dirrm %%WWWDIR%%/locale/de_DE/LC_MESSAGES +@dirrm %%WWWDIR%%/locale/de_DE +@dirrm %%WWWDIR%%/locale/base +@dirrm %%WWWDIR%%/locale +@dirrm %%WWWDIR%%/lib/class +@dirrm %%WWWDIR%%/lib +@dirrm %%WWWDIR%%/images/ratings +@dirrm %%WWWDIR%%/images +@dirrm %%WWWDIR%%/download +@dirrm %%WWWDIR%%/docs +@dirrmtry %%WWWDIR%%/config +@dirrm %%WWWDIR%%/bin +@dirrm %%WWWDIR%%/admin +@dirrmtry %%WWWDIR%% +@exec chown -R %%WWWOWN%%:%%WWWGRP%% %D/%%WWWDIR%% |