diff options
Diffstat (limited to 'audio/squeezeboxserver')
-rw-r--r-- | audio/squeezeboxserver/Makefile | 141 | ||||
-rw-r--r-- | audio/squeezeboxserver/distinfo | 2 | ||||
-rw-r--r-- | audio/squeezeboxserver/files/CPANfiles | 304 | ||||
-rw-r--r-- | audio/squeezeboxserver/files/patch-Slim_Music_Info.pm | 14 | ||||
-rw-r--r-- | audio/squeezeboxserver/files/patch-Slim_Utils_Prefs.pm | 32 | ||||
-rw-r--r-- | audio/squeezeboxserver/files/pm2port | 41 | ||||
-rw-r--r-- | audio/squeezeboxserver/files/slimserver.sh | 68 | ||||
-rw-r--r-- | audio/squeezeboxserver/files/slimserver.sh.in | 68 | ||||
-rw-r--r-- | audio/squeezeboxserver/files/softsqueeze.sh | 10 | ||||
-rw-r--r-- | audio/squeezeboxserver/files/softsqueeze.sh.in | 10 | ||||
-rw-r--r-- | audio/squeezeboxserver/files/squeezecenter.sh.in | 68 | ||||
-rw-r--r-- | audio/squeezeboxserver/pkg-descr | 18 | ||||
-rw-r--r-- | audio/squeezeboxserver/pkg-install | 65 | ||||
-rw-r--r-- | audio/squeezeboxserver/pkg-message | 9 |
14 files changed, 0 insertions, 850 deletions
diff --git a/audio/squeezeboxserver/Makefile b/audio/squeezeboxserver/Makefile deleted file mode 100644 index b04d2d204202..000000000000 --- a/audio/squeezeboxserver/Makefile +++ /dev/null @@ -1,141 +0,0 @@ -# Ports collection makefile for: slimserver -# Date created: Wed Apr 14, 2004 -# Whom: Brooks Davis <brooks@freebsd.org> -# -# $FreeBSD$ -# - -PORTNAME= slimserver -PORTVERSION?= 5.4.0 -PORTREVISION= 1 -CATEGORIES= audio -MASTER_SITES= http://www.slimdevices.com/downloads/${NIGHTLY}SlimServer_v${DISTVERSION}/ -DISTNAME= SlimServer_v${DISTVERSION} - -MAINTAINER= brooks@FreeBSD.org -COMMENT= Slim Devices audio streaming server - -DISTVERSION?= ${PORTVERSION} - - -RUN_DEPENDS+= ${LOCALBASE}/bin/mDNSResponderPosix:${PORTSDIR}/net/mDNSResponder - -.include <bsd.port.pre.mk> - -SLIM_CPAN_DEPS!= cut -f 2 -d, ${FILESDIR}/pm2port | grep -v ^_builtin -RUN_DEPENDS+= ${SLIM_CPAN_DEPS:S|^|${SITE_PERL}/|:S|:|:${PORTSDIR}/|} - -.if ${PERL_LEVEL} < 500800 -IGNORE= "Perl 5.8 or newer required. Install lang/perl5.8 and try again." -.endif - -.if ${OSVERSION} < 502110 -RUN_DEPENDS+= ${LOCALBASE}/bin/pgrep:${PORTSDIR}/sysutils/pkill -PGREPBASE= ${LOCALBASE} -.else -PGREPBASE= /usr -.endif - -USE_RC_SUBR= yes -TMP_SLIMDIR= ${WRKDIR}/slimserver -TMP_DOCSDIR= ${WRKDIR}/doc -DOCFILES= Changelog.html Installation.txt -EXCEPTFILES= ${DOCFILES} \ - CPAN/File/.exists \ - CPAN/MP3/.exists -EXCEPTDIRS= Bin \ - CPAN/arch - -CPIOARGS= --quiet -pdum -R -PLIST= ${WRKDIR}/pkg-plist -PLIST_SUB= SLIMDIR=${SLIMDIR} - -SED_SCRIPT+= -e 's,%%LOCALBASE%%,${LOCALBASE},g' \ - -e 's,%%PREFIX%%,${PREFIX},g' \ - -e 's,%%PGREPBASE%%,${PGREPBASE},g' \ - -e 's,%%RC_SUBR%%,${RC_SUBR},g' \ - -e 's,%%SLIMDIR%%,${SLIMDIR},g' - -pre-fetch: -.if !defined(SLIMDIR) - @${ECHO_MSG} "" - @${ECHO_MSG} "Define SLIMDIR to override default of 'slimserver'." - @${ECHO_MSG} "" -.endif - -post-patch: - @${SED} ${SED_SCRIPT} <${FILESDIR}/slimserver.sh >${WRKDIR}/slimserver.sh - @${SED} ${SED_SCRIPT} <${FILESDIR}/softsqueeze.sh >${WRKDIR}/softsqueeze.sh - -SLIMDIR?= slimserver - -do-build: - @${MKDIR} -m 0755 ${TMP_SLIMDIR} - @cd ${WRKSRC} && \ - ${FIND} . -name \*.orig ${EXCEPTFILES:S|^|-o -path ./|} \ - ${EXCEPTDIRS:S/$/\*/:S/^/-o -path .\//} -o -print | \ - ${CPIO} ${CPIOARGS} ${BINOWN}:${BINGRP} ${TMP_SLIMDIR} - @cd ${TMP_SLIMDIR}/CPAN && \ - for pm in `egrep -v ,$$ ${FILESDIR}/pm2port | cut -f 1 -d,`; do \ - grep "$${pm}:" ${FILESDIR}/CPANfiles | cut -f2 -d: | xargs rm; \ - done - @find ${TMP_SLIMDIR}/CPAN -depth -type d -empty -delete -.if defined(PORTDEV) - @echo "Checking for unexpected files in CPAN" - @cd ${TMP_SLIMDIR}/CPAN && \ - for file in `find . -type f | sed -e 's|^\./||'`; do \ - egrep -q ":$${file}\$$" ${FILESDIR}/CPANfiles || \ - echo $${file} ; \ - done - @echo -.endif -.if !defined(NOPORTDOCS) - @${MKDIR} ${TMP_DOCSDIR} - @cd ${WRKSRC} && ${INSTALL_DATA} ${DOCFILES} ${TMP_DOCSDIR} -.endif - @${ECHO} "etc/rc.d/slimserver${PKGNAMESUFFIX}.sh" > ${PLIST} - @${ECHO} "bin/softsqueeze" >> ${PLIST} -.if !defined(NOPORTDOCS) - @${FIND} ${TMP_DOCSDIR} -type f | \ - ${SED} -e 's|${TMP_DOCSDIR}|%%DOCSDIR%%|' | \ - ${SORT} >> ${PLIST} -.endif - @${FIND} ${TMP_SLIMDIR}/* -type f | \ - ${SED} -e 's|${TMP_SLIMDIR}|%%SLIMDIR%%|' | \ - ${SORT} >> ${PLIST} - @${ECHO} "${SLIMDIR}/Cache" >> ${PLIST} - @${FIND} ${TMP_SLIMDIR} -type d | \ - ${SED} -e 's|${TMP_SLIMDIR}|@dirrm %%SLIMDIR%%|' | \ - ${SORT} -r >> ${PLIST} -.if !defined(NOPORTDOCS) - @${FIND} ${TMP_DOCSDIR} -type d | \ - ${SED} -e 's|${TMP_DOCSDIR}|@dirrm %%DOCSDIR%%|' | \ - ${SORT} -r >> ${PLIST} -.endif - @${ECHO} '@unexec rmdir /var/db/slimserver 2>/dev/null || (echo "Configuration information saved. If you will *NOT* use this package anymore," && echo "please remove /var/db/slimserver and its contents manually.")' >> ${PLIST} - -pre-install: - @${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL - -do-install: - @${MKDIR} -m 0755 ${PREFIX}/${SLIMDIR} - @${LN} -s /var/db/slimserver/cache ${PREFIX}/${SLIMDIR}/Cache - @cd ${TMP_SLIMDIR} && \ - ${FIND} . | \ - ${CPIO} ${CPIOARGS} ${BINOWN}:${BINGRP} ${PREFIX}/${SLIMDIR} - @${INSTALL_SCRIPT} ${WRKDIR}/slimserver.sh \ - ${PREFIX}/etc/rc.d/slimserver${PKGNAMESUFFIX}.sh - @${INSTALL_SCRIPT} ${WRKDIR}/softsqueeze.sh ${PREFIX}/bin/softsqueeze -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - @cd ${TMP_DOCSDIR} && \ - ${FIND} . | \ - ${CPIO} ${CPIOARGS} ${BINOWN}:${BINGRP} ${DOCSDIR} -.endif - -post-install: - @${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL - @${ECHO} - @${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> diff --git a/audio/squeezeboxserver/distinfo b/audio/squeezeboxserver/distinfo deleted file mode 100644 index 130a4b382a58..000000000000 --- a/audio/squeezeboxserver/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (SlimServer_v5.4.0.tar.gz) = 9aad99106636baf6b7fdb5225aa10a22 -SIZE (SlimServer_v5.4.0.tar.gz) = 9511288 diff --git a/audio/squeezeboxserver/files/CPANfiles b/audio/squeezeboxserver/files/CPANfiles deleted file mode 100644 index a902f8c8e743..000000000000 --- a/audio/squeezeboxserver/files/CPANfiles +++ /dev/null @@ -1,304 +0,0 @@ -Audio-Musepack:Audio/APETags.pm -Audio-Musepack:Audio/Musepack.pm -Audio-WMA:Audio/WMA.pm -Audio-Wav:Audio/Wav.pm -Audio-Wav:Audio/Wav/Changes -Audio-Wav:Audio/Wav/MANIFEST -Audio-Wav:Audio/Wav/Makefile.PL -Audio-Wav:Audio/Wav/README -Audio-Wav:Audio/Wav/Read.pm -Audio-Wav:Audio/Wav/Tools.pm -Audio-Wav:Audio/Wav/Write.pm -Audio-Wav:Audio/Wav/Write/Header.pm -Audio-Wav:Audio/Wav/test.pl -Audio-Wav:Audio/Wav/test_tone.wav -Class-Accessor-Chained:Class/Accessor/Chained.pm -Class-Accessor-Chained:Class/Accessor/Chained/Fast.pm -Class-Accessor:Class/Accessor.pm -Class-Accessor:Class/Accessor/Fast.pm -Class-DBI-AbstractSearch:Class/DBI/AbstractSearch.pm -Class-DBI-Cacheable:Class/DBI/Cacheable.pm -Class-DBI-Cacheable:Class/DBI/ObjectCache.pm -Class-DBI-Pager:Class/DBI/Pager.pm -Class-DBI-Plugin-AbstractCount:Class/DBI/Plugin/AbstractCount.pm -Class-DBI-Plugin-CountSearch:Class/DBI/Plugin/CountSearch.pm -Class-DBI-Plugin-RetrieveAll:Class/DBI/Plugin/RetrieveAll.pm -Class-DBI-Plugin:Class/DBI/Plugin.pm -Class-DBI:Class/DBI.pm -Class-DBI:Class/DBI/Column.pm -Class-DBI:Class/DBI/ColumnGrouper.pm -Class-DBI:Class/DBI/Iterator.pm -Class-DBI:Class/DBI/Query.pm -Class-Data-Inheritable:Class/Data/Inheritable.pm -Class-Trigger:Class/Trigger.pm -Class-WhiteHole:Class/WhiteHole.pm -DBIx-ContextualFetch:DBIx/ContextualFetch.pm -Date-Page:Data/Page.pm -File-Spec:File/Spec.pm -File-Spec:File/Spec/Functions.pm -File-Spec:File/Spec/Mac.pm -File-Spec:File/Spec/OS2.pm -File-Spec:File/Spec/Unix.pm -File-Spec:File/Spec/VMS.pm -File-Spec:File/Spec/Win32.pm -File-Temp:File/Temp.pm -File-Which:File/Which.pm -HTML-Parser:HTML/Entities.pm -IO-String:IO/String.pm -Ima-DBI:Ima/DBI.pm -LWP:Bundle/LWP.pm -LWP:File/Listing.pm -LWP:HTML/Form.pm -LWP:HTTP/Cookies.pm -LWP:HTTP/Cookies/Microsoft.pm -LWP:HTTP/Cookies/Netscape.pm -LWP:HTTP/Daemon.pm -LWP:HTTP/Date.pm -LWP:HTTP/Headers.pm -LWP:HTTP/Headers/Auth.pm -LWP:HTTP/Headers/ETag.pm -LWP:HTTP/Headers/Util.pm -LWP:HTTP/Message.pm -LWP:HTTP/Negotiate.pm -LWP:HTTP/Request.pm -LWP:HTTP/Request/Common.pm -LWP:HTTP/Response.pm -LWP:HTTP/Status.pm -LWP:LWP.pm -LWP:LWP/Authen/Basic.pm -LWP:LWP/Authen/Digest.pm -LWP:LWP/Authen/Ntlm.pm -LWP:LWP/ConnCache.pm -LWP:LWP/Debug.pm -LWP:LWP/DebugFile.pm -LWP:LWP/MediaTypes.pm -LWP:LWP/MemberMixin.pm -LWP:LWP/Protocol.pm -LWP:LWP/Protocol/GHTTP.pm -LWP:LWP/Protocol/cpan.pm -LWP:LWP/Protocol/data.pm -LWP:LWP/Protocol/file.pm -LWP:LWP/Protocol/ftp.pm -LWP:LWP/Protocol/gopher.pm -LWP:LWP/Protocol/http.pm -LWP:LWP/Protocol/http10.pm -LWP:LWP/Protocol/https.pm -LWP:LWP/Protocol/https10.pm -LWP:LWP/Protocol/loopback.pm -LWP:LWP/Protocol/mailto.pm -LWP:LWP/Protocol/nntp.pm -LWP:LWP/Protocol/nogo.pm -LWP:LWP/RobotUA.pm -LWP:LWP/Simple.pm -LWP:LWP/UserAgent.pm -LWP:LWP/media.types -LWP:Net/HTTP.pm -LWP:Net/HTTP/Methods.pm -LWP:Net/HTTP/NB.pm -LWP:Net/HTTPS.pm -LWP:WWW/RobotRules.pm -LWP:WWW/RobotRules/AnyDBM_File.pm -MIME-Base64:MIME/Base64.pm -MP3-Info:MP3/Info.pm -MP4-Info:MP4/Info.pm -Net-DNS:Net/DNS.pm -Net-DNS:Net/DNS/FAQ.pod -Net-DNS:Net/DNS/Header.pm -Net-DNS:Net/DNS/Nameserver.pm -Net-DNS:Net/DNS/Packet.pm -Net-DNS:Net/DNS/Question.pm -Net-DNS:Net/DNS/RR.pm -Net-DNS:Net/DNS/RR/A.pm -Net-DNS:Net/DNS/RR/AAAA.pm -Net-DNS:Net/DNS/RR/AFSDB.pm -Net-DNS:Net/DNS/RR/CERT.pm -Net-DNS:Net/DNS/RR/CNAME.pm -Net-DNS:Net/DNS/RR/DNAME.pm -Net-DNS:Net/DNS/RR/EID.pm -Net-DNS:Net/DNS/RR/HINFO.pm -Net-DNS:Net/DNS/RR/ISDN.pm -Net-DNS:Net/DNS/RR/LOC.pm -Net-DNS:Net/DNS/RR/MB.pm -Net-DNS:Net/DNS/RR/MG.pm -Net-DNS:Net/DNS/RR/MINFO.pm -Net-DNS:Net/DNS/RR/MR.pm -Net-DNS:Net/DNS/RR/MX.pm -Net-DNS:Net/DNS/RR/NAPTR.pm -Net-DNS:Net/DNS/RR/NIMLOC.pm -Net-DNS:Net/DNS/RR/NS.pm -Net-DNS:Net/DNS/RR/NSAP.pm -Net-DNS:Net/DNS/RR/NULL.pm -Net-DNS:Net/DNS/RR/OPT.pm -Net-DNS:Net/DNS/RR/PTR.pm -Net-DNS:Net/DNS/RR/PX.pm -Net-DNS:Net/DNS/RR/RP.pm -Net-DNS:Net/DNS/RR/RT.pm -Net-DNS:Net/DNS/RR/SOA.pm -Net-DNS:Net/DNS/RR/SRV.pm -Net-DNS:Net/DNS/RR/TKEY.pm -Net-DNS:Net/DNS/RR/TSIG.pm -Net-DNS:Net/DNS/RR/TXT.pm -Net-DNS:Net/DNS/RR/Unknown.pm -Net-DNS:Net/DNS/RR/X25.pm -Net-DNS:Net/DNS/Resolver.pm -Net-DNS:Net/DNS/Resolver/Base.pm -Net-DNS:Net/DNS/Resolver/Cygwin.pm -Net-DNS:Net/DNS/Resolver/Recurse.pm -Net-DNS:Net/DNS/Resolver/UNIX.pm -Net-DNS:Net/DNS/Resolver/Win32.pm -Net-DNS:Net/DNS/Select.pm -Net-DNS:Net/DNS/Update.pm -Ogg-Vorbis-Header-PurePerl:Ogg/Vorbis/Header/PurePerl.pm -SQL-Abstract:SQL/Abstract.pm -SQL-Statement:SQL/Dialects/ANSI.pm -SQL-Statement:SQL/Dialects/AnyData.pm -SQL-Statement:SQL/Dialects/CSV.pm -SQL-Statement:SQL/Eval.pm -SQL-Statement:SQL/Parser.pm -SQL-Statement:SQL/Statement.pm -SQL-Statement:SQL/Statement/GetInfo.pm -Template-Toolkit:Template.pm -Template-Toolkit:Template/Base.pm -Template-Toolkit:Template/Config.pm -Template-Toolkit:Template/Constants.pm -Template-Toolkit:Template/Context.pm -Template-Toolkit:Template/Directive.pm -Template-Toolkit:Template/Document.pm -Template-Toolkit:Template/Exception.pm -Template-Toolkit:Template/Filters.pm -Template-Toolkit:Template/Grammar.pm -Template-Toolkit:Template/Iterator.pm -Template-Toolkit:Template/Namespace/Constants.pm -Template-Toolkit:Template/Parser.pm -Template-Toolkit:Template/Plugin.pm -Template-Toolkit:Template/Plugin/Autoformat.pm -Template-Toolkit:Template/Plugin/CGI.pm -Template-Toolkit:Template/Plugin/DBI.pm -Template-Toolkit:Template/Plugin/Datafile.pm -Template-Toolkit:Template/Plugin/Date.pm -Template-Toolkit:Template/Plugin/Directory.pm -Template-Toolkit:Template/Plugin/Dumper.pm -Template-Toolkit:Template/Plugin/File.pm -Template-Toolkit:Template/Plugin/Filter.pm -Template-Toolkit:Template/Plugin/Format.pm -Template-Toolkit:Template/Plugin/GD/Constants.pm -Template-Toolkit:Template/Plugin/GD/Graph/area.pm -Template-Toolkit:Template/Plugin/GD/Graph/bars.pm -Template-Toolkit:Template/Plugin/GD/Graph/bars3d.pm -Template-Toolkit:Template/Plugin/GD/Graph/lines.pm -Template-Toolkit:Template/Plugin/GD/Graph/lines3d.pm -Template-Toolkit:Template/Plugin/GD/Graph/linespoints.pm -Template-Toolkit:Template/Plugin/GD/Graph/mixed.pm -Template-Toolkit:Template/Plugin/GD/Graph/pie.pm -Template-Toolkit:Template/Plugin/GD/Graph/pie3d.pm -Template-Toolkit:Template/Plugin/GD/Graph/points.pm -Template-Toolkit:Template/Plugin/GD/Image.pm -Template-Toolkit:Template/Plugin/GD/Polygon.pm -Template-Toolkit:Template/Plugin/GD/Text.pm -Template-Toolkit:Template/Plugin/GD/Text/Align.pm -Template-Toolkit:Template/Plugin/GD/Text/Wrap.pm -Template-Toolkit:Template/Plugin/HTML.pm -Template-Toolkit:Template/Plugin/Image.pm -Template-Toolkit:Template/Plugin/Iterator.pm -Template-Toolkit:Template/Plugin/Pod.pm -Template-Toolkit:Template/Plugin/Procedural.pm -Template-Toolkit:Template/Plugin/String.pm -Template-Toolkit:Template/Plugin/Table.pm -Template-Toolkit:Template/Plugin/URL.pm -Template-Toolkit:Template/Plugin/View.pm -Template-Toolkit:Template/Plugin/Wrap.pm -Template-Toolkit:Template/Plugin/XML/DOM.pm -Template-Toolkit:Template/Plugin/XML/RSS.pm -Template-Toolkit:Template/Plugin/XML/Simple.pm -Template-Toolkit:Template/Plugin/XML/Style.pm -Template-Toolkit:Template/Plugin/XML/XPath.pm -Template-Toolkit:Template/Plugins.pm -Template-Toolkit:Template/Provider.pm -Template-Toolkit:Template/Service.pm -Template-Toolkit:Template/Stash.pm -Template-Toolkit:Template/Stash/Context.pm -Template-Toolkit:Template/Stash/XS.pm -Template-Toolkit:Template/Test.pm -Template-Toolkit:Template/View.pm -Tie-RegexpHash:Tie/RegexpHash.pm -UNIVERSAL-moniker:Universal/moniker.pm -URI:URI.pm -URI:URI/Escape.pm -URI:URI/Heuristic.pm -URI:URI/QueryParam.pm -URI:URI/Split.pm -URI:URI/URL.pm -URI:URI/WithBase.pm -URI:URI/_foreign.pm -URI:URI/_generic.pm -URI:URI/_ldap.pm -URI:URI/_login.pm -URI:URI/_query.pm -URI:URI/_segment.pm -URI:URI/_server.pm -URI:URI/_userpass.pm -URI:URI/data.pm -URI:URI/file.pm -URI:URI/file/Base.pm -URI:URI/file/FAT.pm -URI:URI/file/Mac.pm -URI:URI/file/OS2.pm -URI:URI/file/QNX.pm -URI:URI/file/Unix.pm -URI:URI/file/Win32.pm -URI:URI/ftp.pm -URI:URI/gopher.pm -URI:URI/http.pm -URI:URI/https.pm -URI:URI/ldap.pm -URI:URI/ldapi.pm -URI:URI/ldaps.pm -URI:URI/mailto.pm -URI:URI/mms.pm -URI:URI/news.pm -URI:URI/nntp.pm -URI:URI/pop.pm -URI:URI/rlogin.pm -URI:URI/rsync.pm -URI:URI/rtsp.pm -URI:URI/rtspu.pm -URI:URI/sip.pm -URI:URI/sips.pm -URI:URI/snews.pm -URI:URI/ssh.pm -URI:URI/telnet.pm -URI:URI/tn3270.pm -URI:URI/urn.pm -URI:URI/urn/isbn.pm -URI:URI/urn/oid.pm -XML-NamespaceSupport:XML/NamespaceSupport.pm -XML-SAX:XML/SAX.pm -XML-SAX:XML/SAX/Base.pm -XML-SAX:XML/SAX/DocumentLocator.pm -XML-SAX:XML/SAX/Exception.pm -XML-SAX:XML/SAX/Intro.pod -XML-SAX:XML/SAX/ParserDetails.ini -XML-SAX:XML/SAX/ParserFactory.pm -XML-SAX:XML/SAX/PurePerl.pm -XML-SAX:XML/SAX/PurePerl/DTDDecls.pm -XML-SAX:XML/SAX/PurePerl/DebugHandler.pm -XML-SAX:XML/SAX/PurePerl/DocType.pm -XML-SAX:XML/SAX/PurePerl/EncodingDetect.pm -XML-SAX:XML/SAX/PurePerl/Exception.pm -XML-SAX:XML/SAX/PurePerl/NoUnicodeExt.pm -XML-SAX:XML/SAX/PurePerl/Productions.pm -XML-SAX:XML/SAX/PurePerl/Reader.pm -XML-SAX:XML/SAX/PurePerl/Reader/NoUnicodeExt.pm -XML-SAX:XML/SAX/PurePerl/Reader/Stream.pm -XML-SAX:XML/SAX/PurePerl/Reader/String.pm -XML-SAX:XML/SAX/PurePerl/Reader/URI.pm -XML-SAX:XML/SAX/PurePerl/Reader/UnicodeExt.pm -XML-SAX:XML/SAX/PurePerl/UnicodeExt.pm -XML-SAX:XML/SAX/PurePerl/XMLDecl.pm -XML-SAX:XML/SAX/placeholder.pl -XML-Simple:XML/Simple.pm -_slim:Audio/FLAC.pm -_slim:QuickTime/Movie.pm -_slim:URI/icy.pm -_slim:URI/itunesplaylist.pm -_slim:URI/moodlogicplaylist.pm diff --git a/audio/squeezeboxserver/files/patch-Slim_Music_Info.pm b/audio/squeezeboxserver/files/patch-Slim_Music_Info.pm deleted file mode 100644 index 4e319721b072..000000000000 --- a/audio/squeezeboxserver/files/patch-Slim_Music_Info.pm +++ /dev/null @@ -1,14 +0,0 @@ - -$FreeBSD$ - ---- Slim/Music/Info.pm.orig Fri Jul 2 18:46:03 2004 -+++ Slim/Music/Info.pm Sun Aug 15 15:06:37 2004 -@@ -312,7 +312,7 @@ - # Setup $dbname regardless of if we're caching as cache could be turned on later - - if (Slim::Utils::OSDetect::OS() eq 'unix') { -- $dbname = '.slimserver.db'; -+ $dbname = 'slimserver.db'; - } else { - $dbname ='slimserver.db'; - } diff --git a/audio/squeezeboxserver/files/patch-Slim_Utils_Prefs.pm b/audio/squeezeboxserver/files/patch-Slim_Utils_Prefs.pm deleted file mode 100644 index 866f1c52387a..000000000000 --- a/audio/squeezeboxserver/files/patch-Slim_Utils_Prefs.pm +++ /dev/null @@ -1,32 +0,0 @@ - -$FreeBSD$ - ---- Slim/Utils/Prefs.pm.orig -+++ Slim/Utils/Prefs.pm -@@ -59,6 +59,8 @@ - $path = $ENV{'HOME'} . '/Music/Playlists'; - } elsif (Slim::Utils::OSDetect::OS() eq 'win') { - $path = $Bin . '/Playlists'; -+ } elsif (Slim::Utils::OSDetect::OS() eq 'unix') { -+ $path = "/var/db/slimserver/playlists"; - } else { - $path = ''; - } -@@ -72,7 +74,7 @@ - if ($os eq 'mac') { - $CacheDir = catdir($ENV{'HOME'}, '/Library/Caches/SlimServer'); - } elsif ($os eq 'unix') { -- $CacheDir = $ENV{'HOME'}; -+ $CacheDir = "/var/db/slimserver/cache"; - } - my @CacheDirs = splitdir($CacheDir); - pop @CacheDirs; -@@ -605,7 +607,7 @@ - } elsif (Slim::Utils::OSDetect::OS() eq 'win') { - $prefsPath = $Bin; - } else { -- $prefsPath = $ENV{'HOME'}; -+ $prefsPath = "/var/db/slimserver"; - } - - $::d_prefs && msg("The default prefs directory is $prefsPath\n"); diff --git a/audio/squeezeboxserver/files/pm2port b/audio/squeezeboxserver/files/pm2port deleted file mode 100644 index 9e586a503bbd..000000000000 --- a/audio/squeezeboxserver/files/pm2port +++ /dev/null @@ -1,41 +0,0 @@ -Audio-Musepack, -Audio-WMA,Audio/WMA.pm:audio/p5-Audio-WMA -Audio-Wav,Audio/Wav.pm:audio/p5-Audio-Wav -Class-Accessor,Class/Accessor.pm:devel/p5-Class-Accessor -Class-Accessor-Chained,Class/Accessor/Chained.pm:devel/p5-Class-Accessor-Chained -Class-DBI,Class/DBI.pm:databases/p5-Class-DBI -Class-DBI-AbstractSearch,Class/DBI/AbstractSearch.pm:databases/p5-Class-DBI-AbstractSearch -Class-DBI-Pager,Class/DBI/Pager.pm:databases/p5-Class-DBI-Pager -Class-DBI-Plugin, -Class-DBI-Plugin-AbstractCount, -Class-DBI-Plugin-CountSearch, -Class-DBI-Plugin-RetrieveAll,Class/DBI/Plugin/RetrieveAll.pm:databases/p5-Class-DBI-Plugin-RetrieveAll -Class-DBI-Cacheable, -Class-Data-Inheritable,Class/Data/Inheritable.pm:devel/p5-Class-Data-Inheritable -Class-Trigger,Class/Trigger.pm:devel/p5-Class-Trigger -Class-WhiteHole,Class/WhiteHole.pm:devel/p5-Class-WhiteHole -DBIx-ContextualFetch,DBIx/ContextualFetch.pm:databases/p5-DBIx-ContextualFetch -Date-Page,Data/Page.pm:databases/p5-Data-Page -File-Spec,File/Spec.pm:devel/p5-File-Spec -File-Temp,_builtin -File-Which,File/Which.pm:sysutils/p5-File-Which -HTML-Parser,${PERL_ARCH}/HTML/Parser.pm:www/p5-HTML-Parser -IO-String,IO/String.pm:devel/p5-IO-String -Ima-DBI,Ima/DBI.pm:databases/p5-Ima-DBI -LWP,Bundle/LWP.pm:www/p5-libwww -MIME-Base64,${PERL_ARCH}/MIME/Base64.pm:converters/p5-MIME-Base64 -MP3-Info,MP3/Info.pm:audio/p5-MP3-Info -MP4-Info, -Net-DNS,Net/DNS/ZoneFile/Fast.pm:dns/p5-Net-DNS-ZoneFile-Fast -Ogg-Vorbis-Header-PurePerl, -SQL-Abstract,SQL/Abstract.pm:databases/p5-SQL-Abstract -SQL-Statement,SQL/Statement.pm:databases/p5-SQL-Statement -Template-Toolkit,${PERL_ARCH}/Template.pm:www/p5-Template-Toolkit -Tie-RegexpHash, -Time-HiRes,${PERL_ARCH}/Time/HiRes.pm:devel/p5-Time-HiRes -UNIVERSAL-moniker,UNIVERSAL/moniker.pm:devel/p5-UNIVERSAL-moniker -URI,URI.pm:net/p5-URI -XML-NamespaceSupport,XML/NamespaceSupport.pm:textproc/p5-XML-NamespaceSupport -XML-SAX,XML/SAX.pm:textproc/p5-XML-SAX -XML-Simple,XML/Simple.pm:textproc/p5-XML-Simple -_slim, diff --git a/audio/squeezeboxserver/files/slimserver.sh b/audio/squeezeboxserver/files/slimserver.sh deleted file mode 100644 index 18f2381edf9f..000000000000 --- a/audio/squeezeboxserver/files/slimserver.sh +++ /dev/null @@ -1,68 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -# PROVIDE: slimserver -# REQUIRE: LOGIN -# KEYWORD: FreeBSD shutdown - -# -# Add the following lines to /etc/rc.conf to enable slimserver: -# -#slimserver_enable="YES" -# - -. %%RC_SUBR%% - -name=slimserver -start_precmd="slimserver_start_precmd" -stop_cmd="slimserver_stop" -rcvar=`set_rcvar` - -command=%%PREFIX%%/%%SLIMDIR%%/slimserver.pl -pidfile=/var/run/${name}.pid -conffile=/var/db/slimserver/slimserver.conf -logfile=/var/log/slimserver.log -u=slimserv -g=slimserv -command_args="--daemon --prefsfile=${conffile} --logfile=${logfile} --user=${u} --group=${g} --pidfile=${pidfile}" - -PGREP=%%PGREPBASE%%/bin/pgrep - -slimserver_start_precmd() -{ - if [ ! -f ${conffile} ]; then - touch ${conffile} - chown slimserv:slimserv ${conffile} - fi -} - -slimserver_stop() -{ - if [ ! -f ${pidfile} ]; then - exit - fi - echo 'Stopping SlimServer.' - rc_pid=`cat ${pidfile}` - rc_pid=`${PGREP} -u ${u} | grep ${rc_pid}` - if [ -n "${rc_pid}" ]; then - # Should be mDNSResponderPosix, but the port truncates - rc_pids="${rc_pid} `${PGREP} -u ${u} mDNSResponderPos`" - - kill $sig_stop $rc_pids - wait_for_pids $rc_pids - else - echo "${name} not running? (check ${pidfile})" - fi - - rm -f ${pidfile} -} - -# set defaults - -slimserver_enable=${slimserver_enable:-"NO"} -slimserver_flags=${slimserver_flags:-""} - -load_rc_config ${name} -run_rc_command "$1" diff --git a/audio/squeezeboxserver/files/slimserver.sh.in b/audio/squeezeboxserver/files/slimserver.sh.in deleted file mode 100644 index 18f2381edf9f..000000000000 --- a/audio/squeezeboxserver/files/slimserver.sh.in +++ /dev/null @@ -1,68 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -# PROVIDE: slimserver -# REQUIRE: LOGIN -# KEYWORD: FreeBSD shutdown - -# -# Add the following lines to /etc/rc.conf to enable slimserver: -# -#slimserver_enable="YES" -# - -. %%RC_SUBR%% - -name=slimserver -start_precmd="slimserver_start_precmd" -stop_cmd="slimserver_stop" -rcvar=`set_rcvar` - -command=%%PREFIX%%/%%SLIMDIR%%/slimserver.pl -pidfile=/var/run/${name}.pid -conffile=/var/db/slimserver/slimserver.conf -logfile=/var/log/slimserver.log -u=slimserv -g=slimserv -command_args="--daemon --prefsfile=${conffile} --logfile=${logfile} --user=${u} --group=${g} --pidfile=${pidfile}" - -PGREP=%%PGREPBASE%%/bin/pgrep - -slimserver_start_precmd() -{ - if [ ! -f ${conffile} ]; then - touch ${conffile} - chown slimserv:slimserv ${conffile} - fi -} - -slimserver_stop() -{ - if [ ! -f ${pidfile} ]; then - exit - fi - echo 'Stopping SlimServer.' - rc_pid=`cat ${pidfile}` - rc_pid=`${PGREP} -u ${u} | grep ${rc_pid}` - if [ -n "${rc_pid}" ]; then - # Should be mDNSResponderPosix, but the port truncates - rc_pids="${rc_pid} `${PGREP} -u ${u} mDNSResponderPos`" - - kill $sig_stop $rc_pids - wait_for_pids $rc_pids - else - echo "${name} not running? (check ${pidfile})" - fi - - rm -f ${pidfile} -} - -# set defaults - -slimserver_enable=${slimserver_enable:-"NO"} -slimserver_flags=${slimserver_flags:-""} - -load_rc_config ${name} -run_rc_command "$1" diff --git a/audio/squeezeboxserver/files/softsqueeze.sh b/audio/squeezeboxserver/files/softsqueeze.sh deleted file mode 100644 index c33b7161cc82..000000000000 --- a/audio/squeezeboxserver/files/softsqueeze.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh -# This script requires that that java/javavmwrapper port and a JDK -# version 1.4 or greater be installed. -# -# The javavmwrapper port is not installed by default lest the JDK -# requirement drag this port down into oblivion. Perhaps someday Sun -# will release the JDK under a license that makes dependencies on the -# JDK reasionable. -# -%%LOCALBASE%%/bin/javavm -jar /usr/local/slimserver/HTML/EN/html/softsqueeze/SoftSqueeze.jar diff --git a/audio/squeezeboxserver/files/softsqueeze.sh.in b/audio/squeezeboxserver/files/softsqueeze.sh.in deleted file mode 100644 index c33b7161cc82..000000000000 --- a/audio/squeezeboxserver/files/softsqueeze.sh.in +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh -# This script requires that that java/javavmwrapper port and a JDK -# version 1.4 or greater be installed. -# -# The javavmwrapper port is not installed by default lest the JDK -# requirement drag this port down into oblivion. Perhaps someday Sun -# will release the JDK under a license that makes dependencies on the -# JDK reasionable. -# -%%LOCALBASE%%/bin/javavm -jar /usr/local/slimserver/HTML/EN/html/softsqueeze/SoftSqueeze.jar diff --git a/audio/squeezeboxserver/files/squeezecenter.sh.in b/audio/squeezeboxserver/files/squeezecenter.sh.in deleted file mode 100644 index 18f2381edf9f..000000000000 --- a/audio/squeezeboxserver/files/squeezecenter.sh.in +++ /dev/null @@ -1,68 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -# PROVIDE: slimserver -# REQUIRE: LOGIN -# KEYWORD: FreeBSD shutdown - -# -# Add the following lines to /etc/rc.conf to enable slimserver: -# -#slimserver_enable="YES" -# - -. %%RC_SUBR%% - -name=slimserver -start_precmd="slimserver_start_precmd" -stop_cmd="slimserver_stop" -rcvar=`set_rcvar` - -command=%%PREFIX%%/%%SLIMDIR%%/slimserver.pl -pidfile=/var/run/${name}.pid -conffile=/var/db/slimserver/slimserver.conf -logfile=/var/log/slimserver.log -u=slimserv -g=slimserv -command_args="--daemon --prefsfile=${conffile} --logfile=${logfile} --user=${u} --group=${g} --pidfile=${pidfile}" - -PGREP=%%PGREPBASE%%/bin/pgrep - -slimserver_start_precmd() -{ - if [ ! -f ${conffile} ]; then - touch ${conffile} - chown slimserv:slimserv ${conffile} - fi -} - -slimserver_stop() -{ - if [ ! -f ${pidfile} ]; then - exit - fi - echo 'Stopping SlimServer.' - rc_pid=`cat ${pidfile}` - rc_pid=`${PGREP} -u ${u} | grep ${rc_pid}` - if [ -n "${rc_pid}" ]; then - # Should be mDNSResponderPosix, but the port truncates - rc_pids="${rc_pid} `${PGREP} -u ${u} mDNSResponderPos`" - - kill $sig_stop $rc_pids - wait_for_pids $rc_pids - else - echo "${name} not running? (check ${pidfile})" - fi - - rm -f ${pidfile} -} - -# set defaults - -slimserver_enable=${slimserver_enable:-"NO"} -slimserver_flags=${slimserver_flags:-""} - -load_rc_config ${name} -run_rc_command "$1" diff --git a/audio/squeezeboxserver/pkg-descr b/audio/squeezeboxserver/pkg-descr deleted file mode 100644 index 6d2328746359..000000000000 --- a/audio/squeezeboxserver/pkg-descr +++ /dev/null @@ -1,18 +0,0 @@ -An audio streaming server with many features including: - -- Web Interface--control the player and manage MP3 Internet radio -- MP3 Internet radio -- Alarm clock -- Automatically imports ID3 tags -- Browse and search by title, artist, album or genre -- Shuffle and repeat albums or songs -- Create, save, and import .pls, .cue and .m3u playlist files -- Displays current date and time when not playing -- Open protocol and command line API--easy to control from other - applications -- Expandable through 3rd party plug-ins and skins -- Supports multiple synchronized players -- Cross platform Open Source software, written in Perl (GPL) -- Listen from any computer using an MP3 software player (Winamp or iTunes) - -WWW: http://www.slimdevices.com/pi_features.html diff --git a/audio/squeezeboxserver/pkg-install b/audio/squeezeboxserver/pkg-install deleted file mode 100644 index a4141e4262fa..000000000000 --- a/audio/squeezeboxserver/pkg-install +++ /dev/null @@ -1,65 +0,0 @@ -#!/bin/sh -# $FreeBSD$ - -name=slimserver -u=slimserv -g=slimserv -ugid=104 -homedir=/nonexistent -shell=/sbin/nologin -comment="Slim Devices SlimServer pseudo-user" -statedir=/var/db/slimserver -cachedir=${statedir}/cache -playlistdir=${statedir}/playlists -pidfile=/var/run/${name}.pid -newsyslogfile=/etc/newsyslog.conf -logfile=/var/log/slimserver.log -logcomment="# added by audio/slimserver port" -logline="${logfile} ${u}:${g} 644 3 100 * Z ${pidfile}" - -case $2 in -PRE-INSTALL) - if pw group show "${g}" >/dev/null 2>&1; then - echo "Using existing group \"${g}\"." - else - echo "Creating group \"${g}\", (gid: ${ugid})." - pw groupadd ${g} -g ${ugid} - if [ $? != 0 ]; then - echo "Failed to add group \"${g}\"." - exit 1 - fi - fi - if pw user show "${u}" >/dev/null 2>&1; then - echo "Using existing user \"${u}\"." - else - echo "Creating user \"${u}\", (uid: ${ugid})." - pw useradd ${u} -u ${ugid} -g ${ugid} -h - \ - -d ${homedir} -s ${shell} -c "${comment}" - if [ $? != 0 ]; then - echo "Failed to add user \"${u}\"." - exit 1 - fi - fi - ;; -POST-INSTALL) - if [ ! -d ${statedir} ]; then - mkdir -p ${statedir} - chown -R ${u}:${g} ${statedir} - fi - if [ ! -d ${cachedir} ]; then - mkdir -p ${cachedir} - chown -R ${u}:${g} ${cachedir} - fi - if [ ! -d ${playlistdir} ]; then - mkdir -p ${playlistdir} - chown -R ${u}:${g} ${playlistdir} - fi - if egrep -q "^${logfile}\>" ${newsyslogfile}; then - echo "Using existing ${newsyslogfile} entry." - else - echo "Adding slimserver log entry to ${newsyslogfile}." - echo "$logcomment" >> ${newsyslogfile} - echo "$logline" >> ${newsyslogfile} - fi - ;; -esac diff --git a/audio/squeezeboxserver/pkg-message b/audio/squeezeboxserver/pkg-message deleted file mode 100644 index cdd27b7b7e82..000000000000 --- a/audio/squeezeboxserver/pkg-message +++ /dev/null @@ -1,9 +0,0 @@ -************************************************************************* -Note on security settings: - -The slimserver service is wide open, and by default there is no password. -You can control access to your music collection by pointing your web -browser to http://localhost:9000/, and then choosing: - -Server Settings -> Additional Server Settings -> Security -************************************************************************* |