X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=blobdiff_plain;f=sound%2Fmpd%2FMakefile;h=3727c3af7d03221ed7980387ad49da9868e5108f;hp=4ae9fbfdc8323337c4fb878bfd12c959720bd19b;hb=a40ab77af3b9d187693c1974e15de77ac043e58d;hpb=13fb59dd0549e4f09ae3600298eda16396cb95f1 diff --git a/sound/mpd/Makefile b/sound/mpd/Makefile index 4ae9fbfdc8..3727c3af7d 100644 --- a/sound/mpd/Makefile +++ b/sound/mpd/Makefile @@ -1,79 +1,110 @@ -# -# Copyright (C) 2007 OpenWrt.org +# +# Copyright (C) 2007-2010 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # -# $Id$ include $(TOPDIR)/rules.mk PKG_NAME:=mpd -PKG_VERSION:=0.13.0 -PKG_RELEASE:=1 +PKG_VERSION:=0.15.8 +PKG_RELEASE:=3 -PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -PKG_SOURCE_URL:=http://www.musicpd.org/uploads/files/ -PKG_MD5SUM:=0b33bdb9d706439949344073e90f812a +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 +PKG_SOURCE_URL:=@SF/musicpd +PKG_MD5SUM:=824e1ce46c0f468865d9e5e403cdaf5d -PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) -PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install +PKG_INSTALL:=1 include $(INCLUDE_DIR)/package.mk define Package/mpd SECTION:=sound CATEGORY:=Sound - DEPENDS:=+libflac +libid3tag +libmad +libvorbisidec +libpthread +alsa-lib TITLE:=Music Player Daemon URL:=http://www.musicpd.org/ +# libvorbis and therewith libogg are needed for shout support + DEPENDS:= \ + +AUDIO_SUPPORT:alsa-lib \ + +BUILD_PATENTED:libfaad2 +BUILD_PATENTED:libmad \ + +glib2 +libcurl +libflac +libmms +libpthread +libshout \ + +libvorbis +libvorbisidec endef define Package/mpd/description - MPD is a music player supporting flac, mp3 and ogg files. - It is typically controlled over a network using one of it's many - clients including mpc(console), gmpc(gnome), phpmp(php) etc. + MPD is a music player supporting flac, mp3 and ogg files. It is + typically controlled over a network using one of it's many clients + including mpc(console), gmpc(gnome), phpmp(php), etc... endef define Package/mpd/conffiles +/etc/avahi/services/mpd.service /etc/mpd.conf endef -ifndef CONFIG_PACKAGE_kmod-soundcore - EXTRA_CONFIG_PARAM:=--disable-alsa -endif +# oggflac is not compatible with tremor +CONFIGURE_ARGS += \ + $(call autoconf_bool,CONFIG_BUILD_PATENTED,mad) \ + $(call autoconf_bool,CONFIG_AUDIO_SUPPORT,alsa) \ + --enable-audiofile \ + --disable-mpc \ + $(call autoconf_bool,CONFIG_BUILD_PATENTED,aac) \ + --disable-lsr \ + --disable-ao \ + --disable-mvp \ + --disable-lame-encoder \ + --disable-ffmpeg \ + --enable-flac \ + --enable-vorbis \ + --disable-oggflac \ + --disable-cue \ + --disable-jack \ + --disable-modplug \ + --disable-pulse \ + --disable-sidplay \ + --disable-sqlite \ + --enable-shout \ + --enable-id3 \ + --enable-lastfm \ + --enable-mms \ + --enable-curl \ + --disable-oss \ + --enable-aac \ + --with-zeroconf=no \ + --disable-libOggFLACtest \ + --disable-test \ + --with-tremor=yes \ + --with-faad="$(STAGING_DIR)/usr" \ -define Build/Configure - $(call Build/Configure/Default, \ - $(EXTRA_CONFIG_PARAM) \ - --disable-shout \ - --disable-mod \ - --disable-audiofile \ - --disable-iconv \ - --disable-mpc \ - --disable-aac \ - --disable-oggvorbis \ - --disable-oggflac \ - --with-id3tag-includes="$(STAGING_DIR)/usr/include" \ - --with-id3tag-libraries="$(STAGING_DIR)/usr/lib" \ - --with-libFLAC-includes="$(STAGING_DIR)/usr/include" \ - --with-libFLAC-libraries="$(STAGING_DIR)/usr/lib" \ - --with-mad-includes="$(STAGING_DIR)/usr/include" \ - --with-mad-libraries="$(STAGING_DIR)/usr/lib" \ - ) -endef +CONFIGURE_VARS += \ + FLAC_CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include/FLAC" \ + FLAC_LIBS="$(TARGET_LDFLAGS) -lFLAC" \ + $(if $(CONFIG_BUILD_PATENTED),MAD_CFLAGS="$(TARGET_CFLAGS)") \ + $(if $(CONFIG_BUILD_PATENTED),MAD_LIBS="$(TARGET_LDFLAGS) -lmad") \ -define Build/Compile - $(MAKE) -C $(PKG_BUILD_DIR) \ - DESTDIR="$(PKG_INSTALL_DIR)" \ - all install -endef +TARGET_CFLAGS += \ + -std=gnu99 \ + -I$(STAGING_DIR)/usr/lib/libintl/include/ \ + -I$(STAGING_DIR)/usr/lib/libiconv/include/ \ + +TARGET_LDFLAGS += \ + -Wl,-rpath-link=$(STAGING_DIR)/usr/lib \ + -L$(STAGING_DIR)/usr/lib/libintl/lib/ \ + -L$(STAGING_DIR)/usr/lib/libiconv/lib/ \ + +# use gcc instead of g++ to avoid unnecessary linking against libstdc++ +TARGET_CXX:=$(TARGET_CC) define Package/mpd/install $(INSTALL_DIR) $(1)/etc $(CP) $(PKG_BUILD_DIR)/doc/mpdconf.example $(1)/etc/mpd.conf $(INSTALL_DIR) $(1)/usr/bin $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/mpd $(1)/usr/bin/ + $(INSTALL_DIR) $(1)/etc/init.d + $(INSTALL_BIN) ./files/mpd.init $(1)/etc/init.d/mpd + $(INSTALL_DIR) $(1)/etc/avahi/services + $(INSTALL_DATA) ./files/mpd.service $(1)/etc/avahi/services/ endef $(eval $(call BuildPackage,mpd))