mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
cdb428e7c4
* based on discussion in pndeprecated thread: https://patchwork.openembedded.org/patch/137573/ update the messages to warn possible users that the recipe will be removed before the end of the next development cycle (before Yocto 2.4 is released). * updated with: sed -i 's/^\(PNBLACKLIST.*".*\)"/\1 - the recipe will be removed on 2017-09-01 unless the issue is fixed"/g' `git grep PNBLACKLIST | sed 's/:.*//g' | sort -u | xargs` * then noticed couple recipes being blacklisted only based on DISTRO_FEATURES, so removed those: meta-networking/recipes-support/lksctp-tools/lksctp-tools_1.0.17.bb meta-oe/recipes-connectivity/bluez/bluez-hcidump_2.5.bb meta-oe/recipes-connectivity/bluez/bluez4_4.101.bb meta-oe/recipes-connectivity/bluez/gst-plugin-bluetooth_4.101.bb meta-oe/recipes-navigation/foxtrotgps/foxtrotgps_1.1.1.bb meta-oe/recipes-navigation/gypsy/gypsy.inc meta-oe/recipes-navigation/navit/navit.inc meta-oe/recipes-support/opensync/libsyncml_0.5.4.bb * if it isn't fixed by this date, it's fair game to be removed whenever someone gets around to i Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
51 lines
1.7 KiB
BlitzBasic
51 lines
1.7 KiB
BlitzBasic
SUMMARY = "Enjoy music player"
|
|
LICENSE = "LGPLv3"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=6a6a8e020838b23406c81b19c1d46df6"
|
|
DEPENDS = "evas ecore edje elementary emotion lightmediascanner eldbus gst-plugins-good"
|
|
|
|
SRCREV = "aa8fec69e885eec048a849c2b34059ec58404e02"
|
|
PV = "0.1.0+gitr${SRCPV}"
|
|
|
|
#1st needed for all formats
|
|
#2nd needed for mp3 playback
|
|
#3d needed for ogg playback
|
|
#4th needed for flac playback
|
|
#5th needed binary to create db
|
|
RDEPENDS_${PN} += "\
|
|
gst-plugins-base-typefindfunctions gst-plugins-base-playbin gst-plugins-base-volume gst-plugins-base-decodebin2 gst-plugins-good-autodetect \
|
|
gst-plugins-base-ogg gst-plugins-base-ivorbisdec \
|
|
gst-plugins-good-flac \
|
|
lightmediascanner-test \
|
|
"
|
|
|
|
inherit e gettext
|
|
SRC_URI = " \
|
|
git://git.enlightenment.org/apps/enjoy.git \
|
|
file://0001-always-use-position-as-percent-and-define-a-1-second.patch \
|
|
file://configure.patch \
|
|
"
|
|
S = "${WORKDIR}/git"
|
|
|
|
FILES_${PN} += "${datadir}/icons/"
|
|
|
|
EXTRA_OECONF = "\
|
|
--with-edje-cc=${STAGING_BINDIR_NATIVE}/edje_cc \
|
|
"
|
|
|
|
PACKAGECONFIG[mad] = ",,gst-plugins-ugly,gst-plugins-ugly-mad"
|
|
PACKAGECONFIG[id3demux] = ",,,gst-plugins-good-id3demux"
|
|
|
|
do_configure_prepend() {
|
|
autopoint || touch config.rpath
|
|
}
|
|
|
|
pkg_postinst_${PN} () {
|
|
echo "enjoy: SCAN and LIBRARY MANAGER are not implemeted yet!"
|
|
echo "enjoy: Meanwhile please run:"
|
|
echo "enjoy: test-lms -m mono -p id3 -i 5000 -s /path/to/your/music/dir /home/root/.config/enjoy/media.db"
|
|
echo "enjoy:"
|
|
echo "enjoy: Use test-lms -P to see available formats that can be scanned"
|
|
}
|
|
|
|
PNBLACKLIST[enjoy] ?= "Depends on blacklisted elementary - the recipe will be removed on 2017-09-01 unless the issue is fixed"
|