summaryrefslogtreecommitdiff
path: root/recipes-multimedia
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2015-01-10 11:46:17 +0100
committerMax Krummenacher <max.krummenacher@toradex.com>2015-05-12 10:04:34 +0200
commitd55adc243fed56d103ce0ca762d12bf6a9682598 (patch)
tree824f548c0270a7acb9486bd9aa72a11399e8911e /recipes-multimedia
parent60e845e0814ff149e5260e5c318ac73f38c0f74f (diff)
recipes: don't use ${PN} as a recipe name placeholder
${PN} might be extended with some magic prefix, so don't use it in SRC_URI assignments et. al.
Diffstat (limited to 'recipes-multimedia')
-rw-r--r--recipes-multimedia/codecgraph/codecgraph_20120114.bb4
-rw-r--r--recipes-multimedia/gstreamer/gst-plugins-bad_0.10.23.bbappend2
-rw-r--r--recipes-multimedia/gstreamer/gst-plugins-ugly_0.10.19.bbappend2
3 files changed, 4 insertions, 4 deletions
diff --git a/recipes-multimedia/codecgraph/codecgraph_20120114.bb b/recipes-multimedia/codecgraph/codecgraph_20120114.bb
index 5e70ad2..7640d35 100644
--- a/recipes-multimedia/codecgraph/codecgraph_20120114.bb
+++ b/recipes-multimedia/codecgraph/codecgraph_20120114.bb
@@ -4,12 +4,12 @@ HOMEPAGE = "http://helllabs.org/codecgraph/"
LICENSE ="GPLv2+"
RDEPENDS_${PN} = "python graphviz"
-SRC_URI = "http://helllabs.org/codecgraph/${PN}-${PV}.tar.gz"
+SRC_URI = "http://helllabs.org/codecgraph/codecgraph-${PV}.tar.gz"
LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b"
SRC_URI[md5sum] = "30bb1afeda28b7e9b7f36e3b5b98a869"
SRC_URI[sha256sum] = "24dca78c6a8cf894385df304d29f348d48868000d5ffbd03bf12c5b4f9805106"
-S = "${WORKDIR}/${PN}-${PV}"
+S = "${WORKDIR}/codecgraph-${PV}"
PR = "r1"
diff --git a/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.23.bbappend b/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.23.bbappend
index 790a48e..2417cdb 100644
--- a/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.23.bbappend
+++ b/recipes-multimedia/gstreamer/gst-plugins-bad_0.10.23.bbappend
@@ -3,6 +3,6 @@ EXTRA_OECONF += "--disable-sdl"
do_install_append () {
# make an empty file, so that ${PN} packages has not size 0 and does get created
mkdir -p ${D}${datadir}/gstreamer-${LIBV}
- touch ${D}${datadir}/gstreamer-${LIBV}/${PN}
+ touch ${D}${datadir}/gstreamer-${LIBV}/gst-plugins-bad
}
diff --git a/recipes-multimedia/gstreamer/gst-plugins-ugly_0.10.19.bbappend b/recipes-multimedia/gstreamer/gst-plugins-ugly_0.10.19.bbappend
index 2c0c86f..b33b7d1 100644
--- a/recipes-multimedia/gstreamer/gst-plugins-ugly_0.10.19.bbappend
+++ b/recipes-multimedia/gstreamer/gst-plugins-ugly_0.10.19.bbappend
@@ -1,6 +1,6 @@
do_install_append () {
# make an empty file, so that ${PN} packages has not size 0 and does get created
mkdir -p ${D}${datadir}/gstreamer-${LIBV}
- touch ${D}${datadir}/gstreamer-${LIBV}/${PN}
+ touch ${D}${datadir}/gstreamer-${LIBV}/gst-plugins-ugly
}