diff options
author | Paul Barker <pbarker@konsulko.com> | 2020-05-14 18:39:59 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-05-14 12:51:26 -0700 |
commit | 03fd716100d872c155cb3294da21424054b0d991 (patch) | |
tree | 1531e5111633084e5341d40c4a5882659654b2ce | |
parent | 65bdf9fc431952313e6b70574a211eb722ca6d47 (diff) | |
download | meta-openembedded-03fd716100d872c155cb3294da21424054b0d991.tar.gz |
mplayer-common: Drop obsolete recipe
This recipe hasn't been changed in any meaningful way since it was
imported from oe-classic in 2011. There's no recipe for mplayer in
meta-oe these days so it's probably time to drop it.
Signed-off-by: Paul Barker <pbarker@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/conf/layer.conf | 1 | ||||
-rw-r--r-- | meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb | 2 | ||||
-rw-r--r-- | meta-oe/recipes-multimedia/mplayer/mplayer-common.bb | 23 | ||||
-rw-r--r-- | meta-oe/recipes-multimedia/mplayer/mplayer-common/mplayer.conf | 15 |
4 files changed, 1 insertions, 40 deletions
diff --git a/meta-oe/conf/layer.conf b/meta-oe/conf/layer.conf index adcec83029..5bf1f6cfd9 100644 --- a/meta-oe/conf/layer.conf +++ b/meta-oe/conf/layer.conf | |||
@@ -43,7 +43,6 @@ LICENSE_PATH += "${LAYERDIR}/licenses" | |||
43 | PREFERRED_RPROVIDER_libdevmapper = "lvm2" | 43 | PREFERRED_RPROVIDER_libdevmapper = "lvm2" |
44 | 44 | ||
45 | SIGGEN_EXCLUDERECIPES_ABISAFE += " \ | 45 | SIGGEN_EXCLUDERECIPES_ABISAFE += " \ |
46 | mplayer-common \ | ||
47 | fbset-modes \ | 46 | fbset-modes \ |
48 | gpsd-machine-conf \ | 47 | gpsd-machine-conf \ |
49 | distro-feed-configs \ | 48 | distro-feed-configs \ |
diff --git a/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb b/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb index 8358e933d7..0812da1af6 100644 --- a/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb +++ b/meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb | |||
@@ -210,7 +210,7 @@ RDEPENDS_packagegroup-meta-oe-multimedia ="\ | |||
210 | alsa-oss audiofile cdrkit id3lib \ | 210 | alsa-oss audiofile cdrkit id3lib \ |
211 | a2jmidid jack libass libburn libcdio libcdio-paranoia \ | 211 | a2jmidid jack libass libburn libcdio libcdio-paranoia \ |
212 | libdvdread libmms libmodplug libopus live555 \ | 212 | libdvdread libmms libmodplug libopus live555 \ |
213 | mplayer-common opus-tools \ | 213 | opus-tools \ |
214 | sound-theme-freedesktop v4l-utils yavta wavpack libvpx \ | 214 | sound-theme-freedesktop v4l-utils yavta wavpack libvpx \ |
215 | ${@bb.utils.contains("DISTRO_FEATURES", "x11", "xpext pavucontrol xsp", "", d)} \ | 215 | ${@bb.utils.contains("DISTRO_FEATURES", "x11", "xpext pavucontrol xsp", "", d)} \ |
216 | libmikmod \ | 216 | libmikmod \ |
diff --git a/meta-oe/recipes-multimedia/mplayer/mplayer-common.bb b/meta-oe/recipes-multimedia/mplayer/mplayer-common.bb deleted file mode 100644 index 829c3b2439..0000000000 --- a/meta-oe/recipes-multimedia/mplayer/mplayer-common.bb +++ /dev/null | |||
@@ -1,23 +0,0 @@ | |||
1 | # Copyright Matthias Hentges <devel@hentges.net> (c) 2006 | ||
2 | # License: MIT (see COPYING.MIT) | ||
3 | |||
4 | SUMMARY = "Preconfigured mplayer preferences" | ||
5 | |||
6 | LICENSE = "MIT" | ||
7 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | ||
8 | |||
9 | PV = "0.0.1" | ||
10 | PR = "r1" | ||
11 | |||
12 | SRC_URI = "file://mplayer.conf" | ||
13 | |||
14 | # Yes, really /usr/etc!!! | ||
15 | do_install() { | ||
16 | install -d "${D}/usr${sysconfdir}/mplayer" | ||
17 | |||
18 | install -m 0644 ${WORKDIR}/mplayer.conf "${D}/usr${sysconfdir}/mplayer" | ||
19 | } | ||
20 | |||
21 | FILES_${PN} = "/usr${sysconfdir}/mplayer" | ||
22 | |||
23 | inherit allarch | ||
diff --git a/meta-oe/recipes-multimedia/mplayer/mplayer-common/mplayer.conf b/meta-oe/recipes-multimedia/mplayer/mplayer-common/mplayer.conf deleted file mode 100644 index 37ad65fa2d..0000000000 --- a/meta-oe/recipes-multimedia/mplayer/mplayer-common/mplayer.conf +++ /dev/null | |||
@@ -1,15 +0,0 @@ | |||
1 | |||
2 | # You probably shouldn't touch these | ||
3 | ac=mad, | ||
4 | ao=alsa, | ||
5 | |||
6 | # Required on SL-Cxxxx for correct rotation in the *VT*, | ||
7 | # breaks rotation in X! | ||
8 | # vf=rotate=1 | ||
9 | |||
10 | # Enable fullscreen display by default | ||
11 | # fs=true | ||
12 | |||
13 | # Drop frames to keep audio and video in sync | ||
14 | framedrop=true | ||
15 | |||