notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

Port details
libresonic-standalone Subsonic streaming media server, standalone version
6.2_4 www on this many watch lists=0 search for ports that depend on this port Find issues related to this port Report an issue related to this port View this port on Repology. pkg-fallout 6.2_4Version of this port present on the latest quarterly branch.
Maintainer: jlh@FreeBSD.org search for ports maintained by this maintainer
Port Added: 2017-11-09 21:17:25
Last Update: 2023-04-25 15:17:15
Commit Hash: feb1fa3
Also Listed In: java
License: GPLv3
WWW:
https://www.libresonic.org
Description:
Libresonic is a web-based media streamer and jukebox fork of Subsonic. Libresonic instantly transports your media to any HTTP connected device regardless of bitrate. You can stream to multiple players simultaneously. Libresonic is designed to handle very large music collections. By using transcoder plug-ins, Libresonic supports on-the-fly conversion and streaming of virtually any audio format, including MP3, OGG, WMA, FLAC, APE and more.
Homepage    cgit ¦ Codeberg ¦ GitHub ¦ GitLab ¦ SVNWeb

Manual pages:
FreshPorts has no man page information for this port.
pkg-plist: as obtained via: make generate-plist
Expand this list (13 items)
Collapse this list.
  1. /usr/local/share/licenses/libresonic-standalone-6.2_4/catalog.mk
  2. /usr/local/share/licenses/libresonic-standalone-6.2_4/LICENSE
  3. /usr/local/share/licenses/libresonic-standalone-6.2_4/GPLv3
  4. share/libresonic/libresonic.war
  5. /var/libresonic/transcode/ffmpeg
  6. @comment /var/libresonic/transcode/flac
  7. @comment /var/libresonic/transcode/lame
  8. @postunexec test -d /var/libresonic && (echo "Configuration information and database saved." && echo "If you you are permanently uninstalling this package" && echo "please remove /var/libresonic and its contents manually.") || true
  9. @dir(subsonic,subsonic,750) /var/libresonic/transcode
  10. @dir(subsonic,subsonic,750) /var/libresonic
  11. @owner
  12. @group
  13. @mode
Collapse this list.
Dependency lines:
  • libresonic-standalone>0:www/libresonic-standalone
To install the port:
cd /usr/ports/www/libresonic-standalone/ && make install clean
To add the package, run one of these commands:
  • pkg install www/libresonic-standalone
  • pkg install libresonic-standalone
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.
PKGNAME: libresonic-standalone
Flavors: there is no flavor information for this port.
distinfo:
TIMESTAMP = 1507218527 SHA256 (libresonic-v6.2.war) = 458249eda3f105c0023c7b51d5983ed71a2cb6a3d3a22dd39be656ee359fab99 SIZE (libresonic-v6.2.war) = 61674004

Packages (timestamps in pop-ups are UTC):
libresonic-standalone
ABIaarch64amd64armv6armv7i386powerpcpowerpc64powerpc64le
FreeBSD:13:latest6.2_46.2_4-6.2_46.2_4---
FreeBSD:13:quarterly6.2_46.2_4-6.2_46.2_4-6.2_4-
FreeBSD:14:latest6.2_46.2_4--6.2_4--6.2_4
FreeBSD:14:quarterly6.2_46.2_4--6.2_4-6.2_4-
FreeBSD:15:latest6.2_46.2_4n/a-n/a---
FreeBSD:15:quarterly--n/a-n/a---
Dependencies
NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
Runtime dependencies:
  1. ffmpeg : multimedia/ffmpeg
  2. java : java/openjdk8
There are no ports dependent upon this port

Configuration Options:
===> The following configuration options are available for libresonic-standalone-6.2_4: ====> Transcoding support FFMPEG=on: Depend on FFmpeg for audio and video transcoding FLAC=off: Depend on FLAC for transcoding LAME=off: Depend on LAME for MP3 transcoding VORBIS=off: Depend on oggenc/oggdec for Vorbis transcoding FAAC=off: Depend on FAAD for AAC/M4A transcoding FAAD=off: Depend on FAAC for AAC/M4A transcoding XMP=off: Depend on XMP for module file transcoding MPC=off: Depend on mpcdec for MPC transcoding APE=off: Depend on mac for Monkey's Audio transcoding ===> Use 'make config' to modify these settings
Options name:
www_libresonic-standalone
pkg-message:
For install:
Enable Libresonic by putting the following line in /etc/rc.conf libresonic_enable="YES" See /usr/local/etc/rc.d/libresonic for all the options. Transcoding in Libresonic is a way to re-encode music on the fly to a format your listening device supports. A common use is transcoding FLAC, WMA, and Vorbis audio to MP3 for devices supporting only that codec. Configuring transcoding uses up to three commands one would use on a normal command line pipe but with a whitelist of executables installed or linked into /var/libresonic/transcode. The transcoding configuration page takes transcoding rules in the form of: [rule name] [convert from] [convert to] [command 1] [command 2] [command 3] The most compatible single audio transcoding command is with FFmpeg, transcoding any input to MP3, mapping all streams to output, and limiting metadata to the more-compatible ID3v2.3: [All to MP3] [ogg flac wma aiff m4a] [mp3] ... [ffmpeg -i %s -ab %bk -id3v2_version 3 -map_metadata 0 -map 0:0 -ar 44100 -ac 2 -v 0 -f mp3 -] You can also transcode with multiple single-codec commands to avoid the heavy FFmpeg dependency: [FLAC to MP3] [flac] [mp3] ... [flac --silent --decode --stdout %s] [lame --silent -h -b %b -] [AAC to MP3] [m4a] [mp3] ... [faad -s -o - %s] [lame --silent -h -b %b -] [Vorbis to MP3] [ogg] [mp3] ... [oggdec -Q -o /dev/stdout %s] [lame --silent -h -b %b -] [MPC to MP3] [mpc] [mp3] ... [mpcdec %s -] [lame --silent -h -b %b -] [APE to MP3] [ape] [mp3] ... [mac %s - -d] [lame --silent -h -b %b -] [Trackers to MP3] [mod s3m xm it] [mp3] ... [xmp -q -c %s] [lame --silent -h -b %b -]
Master Sites:
Expand this list (1 items)
Collapse this list.
  1. https://github.com/Libresonic/libresonic/releases/download/v6.2/
Collapse this list.

Number of commits found: 14

Commit History - (may be incomplete: for full details, see links to repositories near top of page)
CommitCreditsLog message
6.2_4
25 Apr 2023 15:17:15
commit hash: feb1fa34f58ea796656b86a81c2a2996b0b03c96commit hash: feb1fa34f58ea796656b86a81c2a2996b0b03c96commit hash: feb1fa34f58ea796656b86a81c2a2996b0b03c96commit hash: feb1fa34f58ea796656b86a81c2a2996b0b03c96 files touched by this commit
Christian Weisgerber (naddy) search for other commits by this committer
audio/opus: bump consumers after update to 1.4
6.2_3
04 Apr 2023 18:10:53
commit hash: 4cda17ab14588e6e4fdac7f697e246554ce82af3commit hash: 4cda17ab14588e6e4fdac7f697e246554ce82af3commit hash: 4cda17ab14588e6e4fdac7f697e246554ce82af3commit hash: 4cda17ab14588e6e4fdac7f697e246554ce82af3 files touched by this commit
Muhammad Moinur Rahman (bofh) search for other commits by this committer
*/*: Refactor java/openjdk7 removal

- java/openjdk7* has been removed from the tree since 2022-09-03 however
  the relevant codebases in bsd.java.mk has not been removed and the
  consumers has also not been updated to use the next jdk version. This
  commit updates all relevant consumers to use JAVA_VERSION=8 instead of
  JAVA_VERSION=1.7
- Since the introduction of jdk version 18 it looks like similar with
  jdk version 8(java version string 1.8). This is prone to error as it
  looks similar and is only seperated by a '.'. Remove using
  JAVA_VERSION with dotted fomat of java version string and update all
  consumers to utilize version 8 instead of 1.8.

Approved by:	portmgr (blanket)
07 Sep 2022 21:58:51
commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4commit hash: fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4 files touched by this commit
Stefan Eßer (se) search for other commits by this committer
Remove WWW entries moved into port Makefiles

Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.

This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.

Approved by:		portmgr (tcberner)
6.2_3
07 Sep 2022 21:10:59
commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 files touched by this commit
Stefan Eßer (se) search for other commits by this committer
Add WWW entries to port Makefiles

It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.

Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.

There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above View all of this commit message)
6.2_3
20 Jul 2022 14:23:26
commit hash: e915e756715f12e5e0e46993b1265f44690b4a90commit hash: e915e756715f12e5e0e46993b1265f44690b4a90commit hash: e915e756715f12e5e0e46993b1265f44690b4a90commit hash: e915e756715f12e5e0e46993b1265f44690b4a90 files touched by this commit
Tobias C. Berner (tcberner) search for other commits by this committer
www: remove 'Created by' lines

A big Thank You to the original contributors of these ports:

  *
  *  <hvo.pm@xs4all.nl>
  *  Aaron Dalton <aaron@FreeBSD.org>
  *  Aaron Dalton <aaron@daltons.ca>
  *  Aaron LI <aly@aaronly.me>
  *  Aaron Zauner <az_mail@gmx.at>
  *  Abel Chow <achow@transoft.net>
  *  Adam Weinberger <adamw@FreeBSD.org>
  *  Ade Lovett <ade@FreeBSD.org>
  *  Adrian Steinmann <ast@marabu.ch>
  *  Akinori MUSHA aka knu <knu@idaemons.org>
(Only the first 15 lines of the commit message are shown above View all of this commit message)
6.2_3
06 Apr 2021 14:31:13
commit hash: 135fdeebb99c3569e42d8162b265e15d29bd937dcommit hash: 135fdeebb99c3569e42d8162b265e15d29bd937dcommit hash: 135fdeebb99c3569e42d8162b265e15d29bd937dcommit hash: 135fdeebb99c3569e42d8162b265e15d29bd937d files touched by this commit
Mathieu Arnold (mat) search for other commits by this committer
all: Remove all other $FreeBSD keywords.
6.2_3
06 Apr 2021 14:31:07
commit hash: 305f148f482daf30dcf728039d03d019f88344ebcommit hash: 305f148f482daf30dcf728039d03d019f88344ebcommit hash: 305f148f482daf30dcf728039d03d019f88344ebcommit hash: 305f148f482daf30dcf728039d03d019f88344eb files touched by this commit
Mathieu Arnold (mat) search for other commits by this committer
Remove # $FreeBSD$ from Makefiles.
6.2_3
14 Aug 2019 12:25:09
Revision:508913Original commit files touched by this commit
mat search for other commits by this committer
Convert to UCL & cleanup pkg-message (categories w)
6.2_3
06 Nov 2018 01:50:27
Revision:484273Original commit files touched by this commit
jbeich search for other commits by this committer
multimedia/ffmpeg: update to 4.1

Changes:	https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n4.1:/Changelog
ABI:		https://abi-laboratory.pro/tracker/timeline/ffmpeg/
6.2_2
24 Sep 2018 21:30:58
Revision:480631Original commit files touched by this commit
jlh search for other commits by this committer
Bump PORTREVISION.

I did this initially but then I pulled the latest version from SVN before
committing and didn't realize PORTREVISION was already 1.

Approved by:	des@ (implicit)
6.2_1
24 Sep 2018 21:27:07
Revision:480630Original commit files touched by this commit
jlh search for other commits by this committer
Remove https support and fix Sprint Boot properties in
www/libresonic-standalnone.

HTTPS support will be removed upstream:
https://github.com/Libresonic/libresonic/issues/125#issuecomment-256227104

Sprint Boot properties use the "server" prefix. They are documented here:
https://docs.spring.io/spring-boot/docs/1.4.5.RELEASE/reference/htmlsingle/#boot-features-customizing-embedded-containers

Reported by:	chronic at chronic se (Sprint Boot properties)
Reviewed by:	des@
Approved by:	des@
6.2_1
02 May 2018 15:07:27
Revision:468844Original commit files touched by this commit
jbeich search for other commits by this committer
multimedia/ffmpeg: update to 4.0

- FFSERVER support was removed upstream
- libressl now uses libtls backend instead of patching openssl one
- Clang i386 no longer uses 16-byte aligned stack

Changes:	https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n4.0:/Changelog
ABI:		https://abi-laboratory.pro/tracker/timeline/ffmpeg/
PR:		227726
Exp-run by:	antoine
Differential Revision:	https://reviews.freebsd.org/D15175
6.2
10 Nov 2017 07:47:15
Revision:453886Original commit files touched by this commit
jlh search for other commits by this committer
Fix a typo: s/UERS/USERS/.
6.2
09 Nov 2017 21:17:14
Revision:453870Original commit files touched by this commit
jlh search for other commits by this committer
Add www/libresonic-standalone port.

Libresonic is a fork of Subsonic under GPLv3.

Reviewed by:	mat
Approved by:	mat
Differential Revision:	https://reviews.freebsd.org/D12597

Number of commits found: 14