blob: d78cd9f2e1334c57fbcd931b0c827175ce26286c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
DESCRIPTION = "Music Player Daemon (mpd). This version is configured for alsa support"
HOMEPAGE = "http://www.musicpd.org"
LICENSE = "GPLv2"
SECTION = "console/multimedia"
#DEPENDS = "libvorbis libogg libid3tag libao-alsa zlib libmikmod libmad flac audiofile virtual/libiconv"
DEPENDS = "zlib libmad"
#RDEPENDS = "libao-alsa"
PR = "r4"
SRC_URI = "${SOURCEFORGE_MIRROR}/musicpd/mpd-${PV}.tar.gz \
file://mpd/save-volume-state.patch;patch=1 file://mpd/mpd.init"
S = "${WORKDIR}/mpd-${PV}"
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-ao \
--disable-shout \
--disable-iconv \
--disable-ipv6 \
--disable-sun \
--disable-oss \
--disable-alsa \
--disable-pulse \
--enable-mvp \
--disable-oggvorbis \
--disable-oggflac \
--disable-flac \
--enable-mp3 \
--disable-aac \
--disable-audiofile \
--disable-mod \
--disable-mpc \
--disable-id3 \
--disable-aotest \
--disable-alsatest \
--disable-oggtest \
--disable-vorbistest \
--disable-libFLACtest \
--disable-libOggFLACtest \
--disable-audiofiletest \
--disable-libmikmodtest \
--with-mad-libraries=${STAGING_LIBDIR} \
--with-mad-includes=${STAGING_INCDIR} \
--without-faad"
# --with-iconv-libraries=${STAGING_LIBDIR} \
# --with-iconv-includes=${STAGING_INCDIR} \
# --with-vorbis-libraries=${STAGING_LIBDIR} \
# --with-vorbis-includes=${STAGING_INCDIR} \
# --with-ogg-libraries=${STAGING_LIBDIR} \
# --with-ogg-includes=${STAGING_INCDIR} \
# --with-ao-libraries=${STAGING_LIBDIR} \
# --with-ao-includes=${STAGING_INCDIR} \
# --with-id3tag-libraries=${STAGING_LIBDIR} \
# --with-id3tag-includes=${STAGING_INCDIR} \
do_install_append() {
install -d ${D}${sysconfdir}/init.d
install -m 755 ${WORKDIR}/mpd/mpd.init ${D}${sysconfdir}/init.d/mpd
}
|