aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/gettext
AgeCommit message (Expand)Author
2011-02-17gettext: Pass --disable-rpath on targetTom Rini
2011-01-18gettext: Switch to libc-uclibcTom Rini
2010-12-17gettext: Drop hunk about disable-gettext-tools-test.patchTom Rini
2010-12-17gettext-native (0.18): Disable curses and enable relocatableTom Rini
2010-11-29gettext_0.18.bb: Fix build when uclibc lacks large file support.Graham Gower
2010-09-15gettext-0.18: use included libcroco instead of one provided by build systemVasily Khoruzhick
2010-08-23ncurses_5.7.bb,recipes: Make DEFAULT_PREFERENCEtesting_2010-08-23Khem Raj
2010-06-05gettext-native: Add virtual/libintl-native to PROVIDES list.Khem Raj
2010-06-05gettext-0.18: Add recipe for 0.18Khem Raj
2010-05-25Make the do_patch apply=yes param implicit if extension is .diff/.patchChris Larson
2010-05-25Rename url params patch=<ignored>/pnum=<n> to apply={yes,no}/striplevel=<n>Chris Larson
2010-04-12recipes: move checksums to recipes from checksums.iniMartin Jansa
2010-03-15gettext: fixed build with autoconfFrans Meulenbroeks
2010-02-25gettext_0.17: fix build issue on 64-bit hostCliff Brake
2010-01-22gettext: add extra package for libintlHenning Heinold
2010-01-22gettext: move to BBCLASSEXTEND, taken from popkyHenning Heinold
2009-12-17gettext-native: rename the M4 var to better reflect its contentsChris Larson
2009-09-03OpenEmbedded: Switch to using linux-uclibceabi and linux-gnu for TARGET_OSKhem Raj
2009-08-19gettext: Correct autoconf-lib-link code to defer to the compiler's library se...Jeremy Puhlman
2009-05-06gettext: 0.17 is GPLv3Tom Rini
2009-03-17rename packages/ to recipes/ per earlier agreementDenys Dmytriyenko
te OpenEmbedded Core user contribution treesGrokmirror user
summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/mpg123/mpg123_1.25.7.bb
blob: 1d2b875d18f6cd78ab3c4b2c408296c1d35a7231 (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
SUMMARY = "Audio decoder for MPEG-1 Layer 1/2/3"
DESCRIPTION = "The core of mpg123 is an MPEG-1 Layer 1/2/3 decoding library, which can be used by other programs. \
mpg123 also comes with a command-line tool which can playback using ALSA, PulseAudio, OSS, and several other APIs, \
and also can write the decoded audio to WAV."
HOMEPAGE = "http://mpg123.de/"
BUGTRACKER = "http://sourceforge.net/p/mpg123/bugs/"
SECTION = "multimedia"

LICENSE = "LGPLv2.1"
LICENSE_FLAGS = "commercial"
LIC_FILES_CHKSUM = "file://COPYING;md5=1e86753638d3cf2512528b99079bc4f3"

SRC_URI = "https://www.mpg123.de/download/${BP}.tar.bz2"
SRC_URI[md5sum] = "710f2d8689b24e86376bd64a05d7888b"
SRC_URI[sha256sum] = "31b15ebcf26111b874732e07c8e60de5053ee555eea15fb70c657a4f9f0344f3"

inherit autotools pkgconfig

# The options should be mutually exclusive for configuration script.
# If both alsa and pulseaudio are specified (as in the default distro features)
# pulseaudio takes precedence.
PACKAGECONFIG_ALSA = "${@bb.utils.filter('DISTRO_FEATURES', 'alsa', d)}"
PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'pulseaudio', 'pulseaudio', '${PACKAGECONFIG_ALSA}', d)}"

PACKAGECONFIG[alsa] = "--with-default-audio=alsa,,alsa-lib"
PACKAGECONFIG[esd] = ",,esound"
PACKAGECONFIG[jack] = ",,jack"
PACKAGECONFIG[openal] = ",,openal-soft"
PACKAGECONFIG[portaudio] = ",,portaudio-v19"
PACKAGECONFIG[pulseaudio] = "--with-default-audio=pulse,,pulseaudio"
PACKAGECONFIG[sdl] = ",,libsdl"

# Following are possible sound output modules:
# alsa arts coreaudio dummy esd jack nas openal os2 oss portaudio pulse sdl sndio sun tinyalsa win32 win32_wasapi
AUDIOMODS += "${@bb.utils.filter('PACKAGECONFIG', 'alsa esd jack openal portaudio sdl', d)}"
AUDIOMODS += "${@bb.utils.contains('PACKAGECONFIG', 'pulseaudio', 'pulse', '', d)}"

EXTRA_OECONF = " \
    --enable-shared \
    --with-audio='${AUDIOMODS}' \
    ${@bb.utils.contains('TUNE_FEATURES', 'neon', '--with-cpu=neon', '', d)} \
    ${@bb.utils.contains('TUNE_FEATURES', 'altivec', '--with-cpu=altivec', '', d)} \
"
# Fails to build with thumb-1 (qemuarm)
#| {standard input}: Assembler messages:
#| {standard input}:47: Error: selected processor does not support Thumb mode `smull r5,r6,r7,r4'
#| {standard input}:48: Error: shifts in CMP/MOV instructions are only supported in unified syntax -- `mov r5,r5,lsr#24'
#...
#| make[3]: *** [equalizer.lo] Error 1
ARM_INSTRUCTION_SET_armv4 = "arm"
ARM_INSTRUCTION_SET_armv5 = "arm"