Commit graph

43 commits

Author SHA1 Message Date
Rosen Penev
9b0e858c0e mpd: update to 0.21.25
pulseaudio-daemon depends on alsa-lib, which depends on @AUDIO_SUPPORT.
Enables -full on platforms lacking AUDIO_SUPPORT.

Simplified LDFLAGS slighly.

Removed pointless ICU dependency. I managed to patch meson.build to fix
iconv compilation. The original error was that without the header, it
was prefixing the iconv check with __buildin_ , which does not work
with uClibc-ng.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-07-20 23:21:40 -07:00
Rosen Penev
0ff5cb54e5
mpd: update to 0.21.24
Signed-off-by: Rosen Penev <rosenp@gmail.com>
(cherry picked from commit d7b593f695)
2020-06-11 16:33:53 -07:00
Rosen Penev
3efdcd8089
mpd: enable id3tag for all builds
2cedae0aa9 enabled mp3 support for mini,
while keeping id3tag for full. This makes no sense as id3tag is used
specifically for mp3 files.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
(cherry picked from commit 4ed61c1f68)
2020-06-03 13:05:26 -07:00
Rosen Penev
411633e52f mpd: update to 0.21.23
Signed-off-by: Rosen Penev <rosenp@gmail.com>
(cherry picked from commit 332e6d4e26)
2020-04-26 20:06:14 -07:00
Rosen Penev
2a5a89bcc2 mpd: update to 0.21.22
Removed upstreamed patches. Only the first was really needed.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
(cherry picked from commit 5e0264be7d)
2020-04-12 19:29:10 -07:00
Rosen Penev
5f7f5a205f mpd: allow AAC decoding with mini variant
This is possible as libfaad no longer has patented functionality based on
BUILD_PATENTED.

AAC is a very popular format, so it makes sense to have some kind of
version included.

The ffmpeg package does not provide and cannot provide AAC decoding
without BUILD_PATENTED, therefore enabled FAAD for all variants.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
(cherry picked from commit c7d98c3626)
2020-04-12 19:29:01 -07:00
Rosen Penev
eda73f9279 mpd: link against libpthread under glibc
Fixes compilation.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
(cherry picked from commit 2b0b0ab7f5)
2020-04-12 19:28:49 -07:00
Rosen Penev
10ddb21781 mpd: update to 0.21.20
Updated patches to latest patchset and removed upstreamed ones.

Ran init script through shellcheck. Restart using SIGHUP.

Added logging from stderr as any kind of logging is missing in --no-daemon
mode.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
(cherry picked from commit 3be4778840)
2020-04-12 19:28:32 -07:00
Rosen Penev
debe4d4d9c mpd: fix ffmpeg AIFF and AMR support
Signed-off-by: Rosen Penev <rosenp@gmail.com>
(cherry picked from commit 96521b6a8d)
2020-04-12 19:28:25 -07:00
Rosen Penev
ab7ae0a657 mpd: replace mpg123 with libmad
libmad is almost half the size of libmpg123. The docoding is done with
integers instead of floats.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
(cherry picked from commit 5bd4ef4035)
2020-04-12 19:28:16 -07:00
Rosen Penev
8346ace9a6 mpd: fix compilation with uClibc-ng
With mpd's build system, it requires either an iconv built into the libc
or icu. Since uClibc-ng as configured by OpenWrt currently has no iconv,
use icu for it to work around the problem. This is the simplest solution.

Added a patch to use boost's rounding functions. They are more appropriate
and work with uClibc-ng.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
(cherry picked from commit c00f83241b)
2020-04-12 19:27:25 -07:00
Rosen Penev
b061fc6bee mpd: update to 0.21.19
Changed URLs to HTTPS.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
(cherry picked from commit 41834a33ac)
2020-04-12 19:27:17 -07:00
Andre Heider
82ae5f3bc4 mpd: update to v0.21.16 and build with meson
One patch was dropped (probably not required anymore).

Old options have been dropped and new ones added. The order is as found
in meson_options.txt. mpd-mini and mpd-full retained their feature sets.

Signed-off-by: Andre Heider <a.heider@gmail.com>
(cherry picked from commit 5aaa1e7da4)
2020-04-12 19:27:06 -07:00
Jeffery To
fc2a591b53 treewide: Use default PKG_BUILD_DIR when possible
This removes lines that set PKG_BUILD_DIR when the set value is no
different from the default value.

Specifically, the line is removed if the assigned value is:

* $(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)

  The default PKG_BUILD_DIR was updated[1] to incorporate BUILD_VARIANT
  if it is set, so now this is identical to the default value.

* $(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_SOURCE_SUBDIR)

  if PKG_SOURCE_SUBDIR is set to $(PKG_NAME)-$(PKG_VERSION), making it
  the same as the previous case

* $(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)

  This is the same as the default PKG_BUILD_DIR when there is no
  BUILD_VARIANT.

* $(BUILD_DIR)/[name]-$(PKG_VERSION)

  where [name] is a string that is identical to PKG_NAME

[1]: https://git.openwrt.org/?p=openwrt/openwrt.git;a=commit;h=e545fac8d968864a965edb9e50c6f90940b0a6c9

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
(cherry picked from commit 53e1692ae9)
2020-04-12 19:24:15 -07:00
Rosen Penev
154e0c40cd
mpd: Add SoundCloud support for full variant
The libyajl cleanup commit revealed that it was not being installed
correctly. Now that it is, mpd picks it up properly.

Enabled SoundCloud support for the full variant. Disabled for the mini.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
(cherry-picked from 835bc1df03)
2019-09-27 12:56:20 -07:00
Michal Čihař
3efd435bc6
mpd: enable pulseaudio in full package
Signed-off-by: Michal Čihař <michal@cihar.com>
(cherry-picked from 2ed62adc59)
2019-09-27 12:55:53 -07:00
Daniel Engberg
cd98819f2e
sound/mpd: Update to 0.20.23
Update to mpd to 0.20.23
Remove old compiler workarounds

Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
2018-12-26 23:06:08 +01:00
Ted Hess
864fd2bfee mpd: Update to 0.20.21. Enable WebDAV storage support.
Signed-off-by: Ted Hess <thess@kitschensync.net>
2018-08-28 09:39:40 -04:00
Ted Hess
91171954ea mpd: Update to 0.20.20. Re-enable flac encoder for mpd-full
Signed-off-by: Ted Hess <thess@kitschensync.net>
2018-07-25 11:47:21 -04:00
Ted Hess
3710a4787f mpd: Remove glib2 dependency
Signed-off-by: Ted Hess <thess@kitschensync.net>
2017-08-29 12:11:29 -04:00
Ted Hess
2cedae0aa9 sound/mpd: Update to 0.20.9, work-around libiconv-stub link problem
Rearrange dependencies
General cleanup of Makefile
Fix compilation and linking problems

Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
Signed-off-by: Ted Hess <thess@kitschensync.net>
2017-08-08 13:36:48 -04:00
Ted Hess
5a0236af95 mpd: Set USE_MIPS16=0. Workaround compiler error (Error: branch to a symbol in another ISA mode) on mips_24k
Signed-off-by: Ted Hess <thess@kitschensync.net>
2017-06-05 13:24:57 -04:00
Ted Hess
50d84f13a2 mpd: Upgrade Music Player Daemon to 0.20.8
Signed-off-by: Ted Hess <thess@kitschensync.net>
2017-05-20 11:40:28 -04:00
Ted Hess
4b5577016c mpd: Add procd mdns definition from MPD config file
Signed-off-by: Ted Hess <thess@kitschensync.net>
2016-11-11 16:36:58 -05:00
Ted Hess
b49b2836bb mpd: Update to 0.19.19, update config options
Signed-off-by: Ted Hess <thess@kitschensync.net>
2016-10-07 09:31:01 -04:00
Ted Hess
2a19c21422 mpd: Update to 0.19.17, refresh patches
Signed-off-by: Ted Hess <thess@kitschensync.net>
2016-07-20 10:54:46 -04:00
Ted Hess
99a49889a1 mpd: Update to 0.19.14, disable soxr
Signed-off-by: Ted Hess <thess@kitschensync.net>
2016-03-25 17:22:43 -04:00
Ted Hess
e8bd00dd39 mpd: Update to 0.19.11, fix gcc5 builds
Add a patch from the Alpine Linux project to fix a musl build issue with gcc 5:

Signed-off-by: Ted Hess <thess@kitschensync.net>
2015-11-23 08:57:18 -05:00
Ted Hess
7bf829e657 mpd: Fix BUILD_NLS=y full language support (regression)
Signed-off-by: Ted Hess <thess@kitschensync.net>
2015-08-21 17:59:39 -04:00
Ted Hess
8b09195b2b mpd: Upgrade to 0.19.10, refresh patches
Signed-off-by: Ted Hess <thess@kitschensync.net>
2015-06-26 16:46:05 -04:00
Ted Hess
934b9a60ca mpd: Update to 0.18.23, fix ALSA support in mpd-mini, refresh patches
Signed-off-by: Ted Hess <thess@kitschensync.net>
2015-05-12 15:16:07 -04:00
Ted Hess
c55ce0bdfd mpd: Update to latest (0.18.21)
Signed-off-by: Ted Hess <thess@kitschensync.net>
2015-01-07 11:45:10 -05:00
Ted Hess
0da4eeaeee mpd: Update to 0.18.20
Signed-off-by: Ted Hess <thess@kitschensync.net>
2014-12-18 13:55:30 -05:00
Michael Heimpold
2f3cfb9c2d mpd: factor out avahi service file
As discussed in #543 provide the avahi service file within its own
tiny package to allow the user to choose which services are
announced.

Signed-off-by: Michael Heimpold <mhei@heimpold.de>

---

The former avahi service file was only installed for mpd-full. Does
the mpd-mini does not support network functionality?

Then we should adjust deps here...
2014-12-08 23:15:25 +01:00
Ian Leonard
ac7cd4c6e6 misc: correct typo in Makefiles for PKG_LICENSE_FILES
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2014-11-24 23:43:37 -08:00
Ted Hess
224eb43231 mpd: update to 0.18.16
Signed-off-by: Ted Hess <thess@kitschensync.net>
2014-09-26 13:24:26 -04:00
John Crispin
0f52b1ff77 mpd: disable libsoup
this showed up during the BB build

Signed-off-by: John Crispin <blogic@openwrt.org>
2014-09-02 16:01:28 +02:00
Nicolas Thill
d6560317c4 mpd: disable Opus codec support
Signed-off-by: Nicolas Thill <nico@openwrt.org>
2014-08-28 10:01:58 +02:00
Ted Hess
4f3e455a89 mpd: fix mpd-mini build dependencies
Signed-off-by: Ted Hess <thess@kitschensync.net>
2014-08-01 09:07:48 -04:00
Ted Hess
a3255798d7 MPD: Upgrade to 0.18.11, convert to procd, refresh patches
Signed-off-by: Ted Hess <thess@kitschensync.net>
2014-07-30 11:40:21 -04:00
John Crispin
4fb546380f mpd: force zeroconf to no
without this we get missing dependecy errors if avahi is staged.

Signed-off-by: John Crispin <blogic@openwrt.org>
2014-07-17 17:49:53 +01:00
thess
13aa784f69 Update MPD to 0.17.6, refresh patches, add myself as pkg maintainer, pkg update copyright
Add some new options and fix BUILD_NLS (full language support) failures

Signed-off-by: Ted Hess <thess@kitschensync.net>
2014-07-16 15:30:13 -04:00
Ted Hess
b495ccc053 Import mpd from oldpackages 2014-07-16 12:31:58 -04:00