diff options
| -rw-r--r-- | meta-gnome/recipes-gnome/gnome-panel/gnome-panel/0001-Fix-build-with-gcc-5.patch | 35 | ||||
| -rw-r--r-- | meta-gnome/recipes-gnome/gnome-panel/gnome-panel_2.32.1.bb | 13 |
2 files changed, 44 insertions, 4 deletions
diff --git a/meta-gnome/recipes-gnome/gnome-panel/gnome-panel/0001-Fix-build-with-gcc-5.patch b/meta-gnome/recipes-gnome/gnome-panel/gnome-panel/0001-Fix-build-with-gcc-5.patch new file mode 100644 index 0000000000..6b7fc5bec5 --- /dev/null +++ b/meta-gnome/recipes-gnome/gnome-panel/gnome-panel/0001-Fix-build-with-gcc-5.patch | |||
| @@ -0,0 +1,35 @@ | |||
| 1 | From 20810fcf329c6e0b48b8e7602565ccc70c7ce62b Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Sun, 10 May 2015 02:10:59 -0700 | ||
| 4 | Subject: [PATCH] Fix build with gcc 5 | ||
| 5 | |||
| 6 | cc1: error: ../../gnome-panel/libpanel-applets-private: No such file or | ||
| 7 | directory [-Werror=missing-include-dirs] | ||
| 8 | cc1: error: ../../gnome-panel/libpanel-applets-private: No such file or | ||
| 9 | directory [-Werror=missing-include-dirs] | ||
| 10 | cc1: error: ../../gnome-panel/libpanel-applets-private: No such file or | ||
| 11 | directory [-Werror=missing-include-dirs] | ||
| 12 | cc1: some warnings being treated as errors | ||
| 13 | |||
| 14 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 15 | --- | ||
| 16 | Upstream-Status: Pending | ||
| 17 | |||
| 18 | gnome-panel/libpanel-applet-private/Makefile.am | 1 - | ||
| 19 | 1 file changed, 1 deletion(-) | ||
| 20 | |||
| 21 | diff --git a/gnome-panel/libpanel-applet-private/Makefile.am b/gnome-panel/libpanel-applet-private/Makefile.am | ||
| 22 | index f12dee8..d556f12 100644 | ||
| 23 | --- a/gnome-panel/libpanel-applet-private/Makefile.am | ||
| 24 | +++ b/gnome-panel/libpanel-applet-private/Makefile.am | ||
| 25 | @@ -8,7 +8,6 @@ AM_CPPFLAGS = \ | ||
| 26 | -I$(srcdir) \ | ||
| 27 | -I$(top_srcdir)/gnome-panel \ | ||
| 28 | -I$(top_builddir)/gnome-panel \ | ||
| 29 | - -I$(top_builddir)/gnome-panel/libpanel-applets-private \ | ||
| 30 | -I$(top_builddir)/gnome-panel/libpanel-util \ | ||
| 31 | -DDATADIR=\""$(datadir)"\" \ | ||
| 32 | -DPANEL_APPLETS_DIR=\"$(appletsdir)\" \ | ||
| 33 | -- | ||
| 34 | 2.1.4 | ||
| 35 | |||
diff --git a/meta-gnome/recipes-gnome/gnome-panel/gnome-panel_2.32.1.bb b/meta-gnome/recipes-gnome/gnome-panel/gnome-panel_2.32.1.bb index 4957a99aa4..3a413bd029 100644 --- a/meta-gnome/recipes-gnome/gnome-panel/gnome-panel_2.32.1.bb +++ b/meta-gnome/recipes-gnome/gnome-panel/gnome-panel_2.32.1.bb | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | SUMMARY = "GNOME panel" | 1 | SUMMARY = "GNOME panel" |
| 2 | LICENSE = "GPLv2 & LGPLv2 & GFDLv1.1" | 2 | LICENSE = "GPL-2.0 & LGPL-2.0 & GFDL-1.1" |
| 3 | 3 | ||
| 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ |
| 5 | file://COPYING-DOCS;md5=c9211dab3ae61e580f48432020784324 \ | 5 | file://COPYING-DOCS;md5=c9211dab3ae61e580f48432020784324 \ |
| @@ -9,12 +9,17 @@ SECTION = "x11/gnome" | |||
| 9 | 9 | ||
| 10 | PR = "r7" | 10 | PR = "r7" |
| 11 | 11 | ||
| 12 | DEPENDS = "gnome-doc-utils-native gconf glib-2.0 gnome-desktop gtk+ pango libwnck gnome-menus cairo libgweather dbus-glib librsvg libcanberra" | 12 | DEPENDS = "gnome-doc-utils-native gconf glib-2.0 gnome-desktop gtk+ \ |
| 13 | pango libwnck gnome-menus cairo libgweather dbus-glib \ | ||
| 14 | librsvg libcanberra" | ||
| 15 | RDEPENDS_${PN} = "python" | ||
| 13 | 16 | ||
| 14 | inherit gtk-doc gnome autotools-brokensep gettext pkgconfig gconf | 17 | inherit gtk-doc gnome autotools-brokensep gettext pkgconfig gconf |
| 15 | 18 | ||
| 16 | SRCREV = "6a364b6a4a9beed3da9ca6f5b0dac81eb99dea2a" | 19 | SRCREV = "8292bd2b8a36df7eed3c760899400790cde68590" |
| 17 | SRC_URI = "git://git.gnome.org/gnome-panel;branch=gnome-2-32" | 20 | SRC_URI = "git://git.gnome.org/gnome-panel;branch=gnome-2-32 \ |
| 21 | file://0001-Fix-build-with-gcc-5.patch \ | ||
| 22 | " | ||
| 18 | 23 | ||
| 19 | S = "${WORKDIR}/git" | 24 | S = "${WORKDIR}/git" |
| 20 | 25 | ||
