mpd: Added mpd-alsa from SVN. Builds, but needs configuration love.
authorLeon Woestenberg <leon.woestenberg@gmail.com>
Sun, 7 Oct 2007 00:02:01 +0000 (00:02 +0000)
committerLeon Woestenberg <leon.woestenberg@gmail.com>
Sun, 7 Oct 2007 00:02:01 +0000 (00:02 +0000)
packages/musicpd/mpd-alsa_svn.bb [new file with mode: 0644]

diff --git a/packages/musicpd/mpd-alsa_svn.bb b/packages/musicpd/mpd-alsa_svn.bb
new file mode 100644 (file)
index 0000000..932295c
--- /dev/null
@@ -0,0 +1,50 @@
+DESCRIPTION = "Music Player Daemon (mpd). This version is configured for alsa support"
+HOMEPAGE = "http://www.musicpd.org"
+SECTION = "console/multimedia"
+LICENSE = "GPLv2"
+DEPENDS = "libvorbis libogg libid3tag libao-alsa zlib libmikmod libmad flac audiofile virtual/libiconv"
+RDEPENDS = "libao-alsa"
+PR = "r0"
+
+SRC_URI = "svn://svn.musicpd.org/mpd;module=trunk;proto=https \
+               file://mpd/mpd.init"
+#           file://mpd/save-volume-state.patch;patch=1 \
+
+S = "${WORKDIR}/trunk"
+
+inherit autotools update-rc.d
+INITSCRIPT_NAME = "mpd"
+
+# Setting --enable-mpd-{mad,id3tag} causes local caches of the libraries to
+# be built, instead we use the OE built versions which should be installed
+# in staging - remove the --with and replace with --enable to use the local
+# versions.
+
+EXTRA_OECONF = "\
+--disable-ogg \
+--disable-oggvorbis \
+--disable-oggflac \  
+--disable-flac \ 
+--without-faad \
+--with-iconv-libraries=${STAGING_LIBDIR} \
+--with-iconv-includes=${STAGING_INCDIR} \
+--with-ao-libraries=${STAGING_LIBDIR} \
+--with-ao-includes=${STAGING_INCDIR} \
+--with-id3tag-libraries=${STAGING_LIBDIR} \
+--with-id3tag-includes=${STAGING_INCDIR} \
+--with-mad-libraries=${STAGING_LIBDIR} \
+--with-mad-includes=${STAGING_INCDIR} \
+--disable-aotest \      
+--disable-alsatest \   
+--disable-oggtest \    
+--disable-vorbistest \      
+--disable-libFLACtest \      
+--disable-libOggFLACtest  \    
+--disable-audiofiletest  \     
+--disable-libmikmodtest \
+"
+
+do_install_append() {
+       install -d ${D}${sysconfdir}/init.d
+       install -m 755 ${WORKDIR}/mpd/mpd.init ${D}${sysconfdir}/init.d/mpd
+}