forked-daapd: update to 23.2
authorejurgensen <redacted>
Thu, 25 Jun 2015 20:40:46 +0000 (22:40 +0200)
committerejurgensen <redacted>
Thu, 25 Jun 2015 20:40:46 +0000 (22:40 +0200)
Signed-off-by: Espen Jürgensen <redacted>
sound/forked-daapd/Makefile
sound/forked-daapd/files/forked-daapd.conf

index 8599c3831051699b72ca3ee91a6d2789e1b0a541..51f459f0f4703f0429acfe7604ec8e41604c5ba1 100644 (file)
@@ -8,9 +8,9 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=forked-daapd
-PKG_VERSION:=22.3
-PKG_RELEASE:=20150222
-PKG_REV:=81b0d330691ce22879514af04c7d831bca8a6e19
+PKG_VERSION:=23.2
+PKG_RELEASE:=20150622
+PKG_REV:=227017ef5ba8df921b2f1db681a46494ec296b8b
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
@@ -35,29 +35,36 @@ CATEGORY:=Sound
 TITLE:=iTunes (DAAP) server for Apple Remote and AirPlay
 URL:=https://github.com/ejurgensen/forked-daapd
 DEPENDS:=+libgpg-error +libgcrypt +libgdbm +zlib +libexpat +libunistring \
-       +libevent2 +libdaemon +libantlr3c +confuse +glib2 +alsa-lib +libffmpeg-full \
+       +libevent2 +libdaemon +libantlr3c +confuse +alsa-lib +libffmpeg-full \
        +mxml +libavahi-client +sqlite3-cli +libplist +libcurl
 endef
 
+define Package/forked-daapd/description
+  forked-daapd is a Linux/FreeBSD DAAP (iTunes), MPD (Music Player Daemon) and
+  RSP (Roku) media server. It has support for AirPlay devices/speakers, Apple
+  Remote (and compatibles), MPD clients, internet radio and LastFM. It does not
+  support AirPlay video.
+endef
+
 define Package/forked-daapd/conffiles
 /etc/forked-daapd.conf
 endef
 
 CONFIGURE_ARGS += \
        --enable-itunes \
-       --enable-lastfm
+       --enable-lastfm \
+       --enable-mpd
 
 TARGET_CFLAGS += $(FPIC)
 TARGET_LDFLAGS += -Wl,-rpath-link,$(STAGING_DIR)/usr/lib
 
 define Package/forked-daapd/install
+       $(INSTALL_DIR) $(1)/usr/sbin
+       $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/forked-daapd $(1)/usr/sbin/
        $(INSTALL_DIR) $(1)/etc
-       $(INSTALL_DATA) ./files/forked-daapd.conf $(1)/etc/
-       $(INSTALL_DIR) $(1)/usr/lib
+       $(INSTALL_CONF) ./files/forked-daapd.conf $(1)/etc/forked-daapd.conf
        $(INSTALL_DIR) $(1)/usr/lib/forked-daapd
        $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/forked-daapd/* $(1)/usr/lib/forked-daapd/
-       $(INSTALL_DIR) $(1)/usr/sbin
-       $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/forked-daapd $(1)/usr/sbin/
        $(INSTALL_DIR) $(1)/etc/init.d
        $(INSTALL_BIN) ./files/forked-daapd.init $(1)/etc/init.d/forked-daapd
 endef
index 63c0ac3db5c32d4605ed4c6d0b8845e0f2c2583c..0f756e0f8a8c22a822a7165a283f619a498cae41 100644 (file)
@@ -14,7 +14,7 @@ general {
        uid = "daapd"
 
        # Database location
-#      db_path = "/var/cache/forked-daapd/songs3.db"
+       db_path = "/var/cache/forked-daapd/songs3.db"
 
        # Log file and level
        # Available levels: fatal, log, warning, info, debug, spam
@@ -28,7 +28,7 @@ general {
        ipv6 = no
 
        # Location of cache database
-#      cache_path = "/var/cache/forked-daapd/cache.db"
+       cache_path = "/var/cache/forked-daapd/cache.db"
 
        # DAAP requests that take longer than this threshold (in msec) get their
        # replies cached for next time. Set to 0 to disable caching.
@@ -78,6 +78,12 @@ library {
        # (changing this setting only takes effect after rescan, see the README)
        compilation_artist = "Various artists"
 
+       # Internet streams in your playlists will by default be shown in the
+       # "Radio" library, like iTunes does. However, some clients (like
+       # TunesRemote+) won't show the "Radio" library. If you would also like
+       # to have them shown like normal playlists, you can enable this option.
+#      radio_playlists = false
+
        # There are 5 default playlists: "Library", "Music", "Movies", "TV Shows"
        # and "Podcasts". Here you can change the names of these playlists.
 #      name_library    = "Library"
@@ -86,6 +92,7 @@ library {
 #      name_tvshows    = "TV Shows"
 #      name_podcasts   = "Podcasts"
 #      name_audiobooks = "Audiobooks"
+#      name_radio      = "Radio"
 
        # Artwork file names (without file type extension)
        # forked-daapd will look for jpg and png files with these base names
@@ -152,19 +159,6 @@ audio {
 #      password = "s1kr3t"
 #}
 
-# Spotify settings (only have effect if Spotify enabled - see README/INSTALL)
-spotify {
-       # Directory where user settings should be stored (credentials)
-#      settings_dir = "/var/cache/forked-daapd/libspotify"
-
-       # Cache directory
-#      cache_dir = "/tmp"
-
-       # Set preferred bitrate for music streaming
-       # 0: No preference (default), 1: 96kbps, 2: 160kbps, 3: 320kbps
-#      bitrate = 0
-}
-
 # SQLite configuration (allows to modify the operation of the SQLite databases)
 # Make sure to read the SQLite documentation for the corresponding PRAGMA statements as
 # changing them from the defaults may increase the possibility of database corruptions!
git clone https://git.99rst.org/PROJECT