diff options
-rw-r--r-- | meta-multimedia/recipes-multimedia/musicpd/mpd_0.20.21.bb | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/meta-multimedia/recipes-multimedia/musicpd/mpd_0.20.21.bb b/meta-multimedia/recipes-multimedia/musicpd/mpd_0.20.21.bb index 67a0c9ff8f..ebae8a521e 100644 --- a/meta-multimedia/recipes-multimedia/musicpd/mpd_0.20.21.bb +++ b/meta-multimedia/recipes-multimedia/musicpd/mpd_0.20.21.bb | |||
@@ -6,37 +6,15 @@ HOMEPAGE ="http://www.musicpd.org" | |||
6 | inherit autotools useradd systemd pkgconfig | 6 | inherit autotools useradd systemd pkgconfig |
7 | 7 | ||
8 | DEPENDS += " \ | 8 | DEPENDS += " \ |
9 | alsa-lib \ | ||
10 | libsamplerate0 \ | ||
11 | libsndfile1 \ | ||
12 | libvorbis \ | ||
13 | libogg \ | ||
14 | faad2 \ | ||
15 | ffmpeg \ | ||
16 | curl \ | 9 | curl \ |
17 | sqlite \ | 10 | sqlite \ |
18 | bzip2 \ | ||
19 | ${@bb.utils.filter('DISTRO_FEATURES', 'pulseaudio', d)} \ | 11 | ${@bb.utils.filter('DISTRO_FEATURES', 'pulseaudio', d)} \ |
20 | tcp-wrappers \ | 12 | tcp-wrappers \ |
21 | openal-soft \ | ||
22 | yajl \ | 13 | yajl \ |
23 | jack \ | ||
24 | faad2 \ | ||
25 | flac \ | ||
26 | libao \ | ||
27 | fluidsynth \ | ||
28 | libcdio \ | ||
29 | wavpack \ | ||
30 | libopus \ | ||
31 | mpg123 \ | ||
32 | libmms \ | ||
33 | libmodplug \ | ||
34 | boost \ | 14 | boost \ |
35 | icu \ | 15 | icu \ |
36 | dbus \ | 16 | dbus \ |
37 | expat \ | 17 | expat \ |
38 | zlib \ | ||
39 | libupnp \ | ||
40 | " | 18 | " |
41 | 19 | ||
42 | # While this item does not require it, it depends on mpg123 which does | 20 | # While this item does not require it, it depends on mpg123 which does |
@@ -52,12 +30,34 @@ SRC_URI[sha256sum] = "8322764dc265c20f05c8c8fdfdd578b0722e74626bef56fcd8eebfb01a | |||
52 | EXTRA_OECONF = "enable_bzip2=yes" | 30 | EXTRA_OECONF = "enable_bzip2=yes" |
53 | EXTRA_OECONF += "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', '--with-systemdsystemunitdir=${systemd_unitdir}/system/', '--without-systemdsystemunitdir', d)}" | 31 | EXTRA_OECONF += "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', '--with-systemdsystemunitdir=${systemd_unitdir}/system/', '--without-systemdsystemunitdir', d)}" |
54 | 32 | ||
33 | PACKAGECONFIG ??= "aac alsa ao bzip2 ffmpeg flac fluidsynth iso9660 jack libsamplerate mms mpg123 modplug sndfile upnp openal opus vorbis wavpack zlib" | ||
34 | |||
35 | PACKAGECONFIG[aac] = "--enable-aac,--disable-aac,faad2" | ||
36 | PACKAGECONFIG[alsa] = "--enable-alsa,--disable-alsa,alsa-lib" | ||
37 | PACKAGECONFIG[ao] = "--enable-ao,--disable-ao,libao" | ||
55 | PACKAGECONFIG[audiofile] = "--enable-audiofile,--disable-audiofile,audiofile" | 38 | PACKAGECONFIG[audiofile] = "--enable-audiofile,--disable-audiofile,audiofile" |
39 | PACKAGECONFIG[bzip2] = "--enable-bzip2,--disable-bzip2,bzip2" | ||
56 | PACKAGECONFIG[cdioparanoia] = "--enable-cdio-paranoia,--disable-cdio-paranoia,libcdio-paranoia" | 40 | PACKAGECONFIG[cdioparanoia] = "--enable-cdio-paranoia,--disable-cdio-paranoia,libcdio-paranoia" |
41 | PACKAGECONFIG[ffmpeg] = "--enable-ffmpeg,--disable-ffmpeg,ffmpeg" | ||
42 | PACKAGECONFIG[flac] = "--enable-flac,--disable-flac,flac" | ||
43 | PACKAGECONFIG[fluidsynth] = "--enable-fluidsynth,--disable-fluidsynth,fluidsynth" | ||
57 | PACKAGECONFIG[id3tag] = "--enable-id3,--disable-id3,libid3tag" | 44 | PACKAGECONFIG[id3tag] = "--enable-id3,--disable-id3,libid3tag" |
45 | PACKAGECONFIG[iso9660] = "--enable-iso9660,--disable-iso9660,libcdio" | ||
46 | PACKAGECONFIG[jack] = "--enable-jack,--disable-jack,jack" | ||
58 | PACKAGECONFIG[lame] = "--enable-lame-encoder,--disable-lame-encoder,lame" | 47 | PACKAGECONFIG[lame] = "--enable-lame-encoder,--disable-lame-encoder,lame" |
48 | PACKAGECONFIG[libsamplerate] = "--enable-lsr,--disable-lsr,libsamplerate0" | ||
59 | PACKAGECONFIG[mad] = "--enable-mad,--disable-mad,libmad" | 49 | PACKAGECONFIG[mad] = "--enable-mad,--disable-mad,libmad" |
50 | PACKAGECONFIG[mms] = "--enable-mms,--disable-mms,libmms" | ||
51 | PACKAGECONFIG[mpg123] = "--enable-mpg123,--disable-mpg123,mpg123" | ||
52 | PACKAGECONFIG[modplug] = "--enable-modplug,--disable-modplug,libmodplug" | ||
60 | PACKAGECONFIG[smb] = "--enable-smbclient,--disable-smbclient,samba" | 53 | PACKAGECONFIG[smb] = "--enable-smbclient,--disable-smbclient,samba" |
54 | PACKAGECONFIG[sndfile] = "--enable-sndfile,--disable-sndfile,libsndfile1" | ||
55 | PACKAGECONFIG[upnp] = "--enable-upnp,--disable-upnp,libupnp" | ||
56 | PACKAGECONFIG[openal] = "--enable-openal,--disable-openal,openal-soft" | ||
57 | PACKAGECONFIG[opus] = "--enable-opus,--disable-opus,libopus libogg" | ||
58 | PACKAGECONFIG[vorbis] = "--enable-vorbis,--disable-vorbis,libvorbis libogg" | ||
59 | PACKAGECONFIG[wavpack] = "--enable-wavpack,--disable-wavpack,wavpack" | ||
60 | PACKAGECONFIG[zlib] = "--enable-zlib,--disable-zlib,zlib" | ||
61 | 61 | ||
62 | do_configure_prepend() { | 62 | do_configure_prepend() { |
63 | sed -i -e 's|libsystemd-daemon|libsystemd|' ${S}/configure.ac | 63 | sed -i -e 's|libsystemd-daemon|libsystemd|' ${S}/configure.ac |