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
I started running short on disk space for the non-production FreshPorts hosts. This time, I have decided to ask for donations. See my recent blog post which points to my Patreon account.
Port details on branch 2016Q4
libgroove Audio dispatching library
4.3.0_1 audio 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 4.3.0_1Version of this port present on the latest quarterly branch.
There is no maintainer for this port.
Any concerns regarding this port should be directed to the FreeBSD Ports mailing list via ports@FreeBSD.org search for ports maintained by this maintainer
Port Added: 2016-11-04 07:40:15
Last Update: 2016-11-04 07:40:08
Commit Hash: 970aa68
License: MIT
WWW:
https://github.com/andrewrk/libgroove
Description:
This library provides decoding and encoding of audio on a playlist. It is intended to be used as a backend for music player applications. That said, it is also generic enough to be used as a backend for any streaming audio processing utility. It provides decoding, encoding, resampling, and gain adjustment. WWW: https://github.com/andrewrk/libgroove
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 (27 items)
Collapse this list.
  1. /usr/local/share/licenses/libgroove-4.3.0_1/catalog.mk
  2. /usr/local/share/licenses/libgroove-4.3.0_1/LICENSE
  3. /usr/local/share/licenses/libgroove-4.3.0_1/MIT
  4. include/groove/encoder.h
  5. include/groove/groove.h
  6. include/groove/queue.h
  7. include/groovefingerprinter/fingerprinter.h
  8. include/grooveloudness/loudness.h
  9. include/grooveplayer/player.h
  10. lib/libgroove.a
  11. lib/libgroove.so
  12. lib/libgroove.so.4
  13. lib/libgroove.so.4.3.0
  14. lib/libgroovefingerprinter.a
  15. lib/libgroovefingerprinter.so
  16. lib/libgroovefingerprinter.so.4
  17. lib/libgroovefingerprinter.so.4.3.0
  18. lib/libgrooveloudness.a
  19. lib/libgrooveloudness.so
  20. lib/libgrooveloudness.so.4
  21. lib/libgrooveloudness.so.4.3.0
  22. lib/libgrooveplayer.a
  23. lib/libgrooveplayer.so
  24. lib/libgrooveplayer.so.4
  25. lib/libgrooveplayer.so.4.3.0
  26. @postexec /sbin/ldconfig -m /usr/local/lib
  27. @postunexec /sbin/ldconfig -R
Collapse this list.
USE_RC_SUBR (Service Scripts)
  • no SUBR information found for this port
Dependency lines:
  • libgroove>0:audio/libgroove
To install the port:
cd /usr/ports/audio/libgroove/ && make install clean
To add the package, run one of these commands:
  • pkg install audio/libgroove
  • pkg install libgroove
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.
PKGNAME: libgroove
Flavors: there is no flavor information for this port.
distinfo:
SHA256 (andrewrk-libgroove-4.3.0_GH0.tar.gz) = 76f68896f078a9613d420339ef887ca8293884ad2cd0fbc031d89a6af2993636 SIZE (andrewrk-libgroove-4.3.0_GH0.tar.gz) = 48857

No package information for this port in our database
Sometimes this happens. Not all ports have packages. Perhaps there is a build error. Check the fallout link: pkg-fallout
Dependencies
NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
Build dependencies:
  1. sdl2-config : devel/sdl20
  2. cmake : devel/cmake
Library dependencies:
  1. libavcodec.so : multimedia/ffmpeg
  2. libchromaprint.so : audio/chromaprint
  3. libebur128.so : audio/libebur128
  4. libspeexdsp.so : audio/speexdsp
  5. libSDL2.so : devel/sdl20
There are no ports dependent upon this port

Configuration Options:
No options to configure
Options name:
audio_libgroove
USES:
cmake:outsource
FreshPorts was unable to extract/find any pkg message
Master Sites:
Expand this list (1 items)
Collapse this list.
  1. https://codeload.github.com/andrewrk/libgroove/tar.gz/4.3.0?dummy=/
Collapse this list.

Number of commits found: 2

Commit History - (may be incomplete: for full details, see links to repositories near top of page)
CommitCreditsLog message
4.3.0_1
04 Nov 2016 07:40:08
commit hash: 970aa6860f2b5fc5573a43d63a16d7ae4ccce4e2commit hash: 970aa6860f2b5fc5573a43d63a16d7ae4ccce4e2commit hash: 970aa6860f2b5fc5573a43d63a16d7ae4ccce4e2commit hash: 970aa6860f2b5fc5573a43d63a16d7ae4ccce4e2 files touched by this commit
Jan Beich (jbeich) search for other commits by this committer
MFH: r425298

audio/libgroove: unbreak build with ffmpeg 3.x

groove/encoder.c:84:19: error:
      'avcodec_encode_audio2' is deprecated [-Werror,-Wdeprecated-declarations]
    int errcode = avcodec_encode_audio2(e->stream->codec, &e->pkt, frame,
&got_packet);
                  ^
/usr/local/include/libavcodec/avcodec.h:5283:5: note: 'avcodec_encode_audio2'
has been explicitly
      marked deprecated here
int avcodec_encode_audio2(AVCodecContext *avctx, AVPacket *avpkt,
    ^
groove/encoder.c:84:52: error: 'codec'
      is deprecated [-Werror,-Wdeprecated-declarations]
    int errcode = avcodec_encode_audio2(e->stream->codec, &e->pkt, frame,
&got_packet);
(Only the first 15 lines of the commit message are shown above View all of this commit message)
4.3.0_1
04 Nov 2016 07:40:08
Revision:425300Original commit files touched by this commit
jbeich search for other commits by this committer
MFH: r425298

audio/libgroove: unbreak build with ffmpeg 3.x

groove/encoder.c:84:19: error:
      'avcodec_encode_audio2' is deprecated [-Werror,-Wdeprecated-declarations]
    int errcode = avcodec_encode_audio2(e->stream->codec, &e->pkt, frame,
&got_packet);
                  ^
/usr/local/include/libavcodec/avcodec.h:5283:5: note: 'avcodec_encode_audio2'
has been explicitly
      marked deprecated here
int avcodec_encode_audio2(AVCodecContext *avctx, AVPacket *avpkt,
    ^
groove/encoder.c:84:52: error: 'codec'
      is deprecated [-Werror,-Wdeprecated-declarations]
    int errcode = avcodec_encode_audio2(e->stream->codec, &e->pkt, frame,
&got_packet);
(Only the first 15 lines of the commit message are shown above View all of this commit message)

Number of commits found: 2