diff options
author | Steve Sakoman <steve@sakoman.com> | 2009-10-13 20:10:06 -0700 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-10-13 22:44:46 +0200 |
commit | 642d30c723a59b200b9edaf8ebb2ea15af8e87c3 (patch) | |
tree | a565d73226a4ab00146a3f941520c9a8d864a356 /recipes/gnome | |
parent | b20cb3a42c1b5a4bdd00e332ae6d525f8e9a5b61 (diff) |
gnome-utils: add 2.28.0
Diffstat (limited to 'recipes/gnome')
-rw-r--r-- | recipes/gnome/gnome-utils/no-try-run-strftime.diff | 27 | ||||
-rw-r--r-- | recipes/gnome/gnome-utils_2.28.0.bb | 28 |
2 files changed, 55 insertions, 0 deletions
diff --git a/recipes/gnome/gnome-utils/no-try-run-strftime.diff b/recipes/gnome/gnome-utils/no-try-run-strftime.diff new file mode 100644 index 0000000000..6ea2680c48 --- /dev/null +++ b/recipes/gnome/gnome-utils/no-try-run-strftime.diff @@ -0,0 +1,27 @@ +--- gnome-utils-2.27.2/configure.ac-orig 2009-06-15 04:45:27.000000000 -0700 ++++ gnome-utils-2.27.2/configure.ac 2009-08-08 15:45:23.000000000 -0700 +@@ -228,24 +228,6 @@ AS_IF([test "x$have_ipv6" = "xyes"], + ) + + +-dnl strftime extension checks +-AC_TRY_RUN([ +- #include <time.h> +- int main (void) { +- char buf[100]; +- struct tm tm = {0}; +- tm.tm_year = 99; +- if (strftime(buf, 100, "%EY", &tm) == 4 && strcmp (buf, "1999")==0) +- return 0; +- return 1; +- } +- ], +- [ +- AC_DEFINE([HAVE_STRFTIME_EXTENSION], [1], +- [Define if strftime supports %E and %O modifiers.]) +- ] +-) +- + dnl gnome-search-tool checks + withval="" + AC_ARG_WITH([grep], diff --git a/recipes/gnome/gnome-utils_2.28.0.bb b/recipes/gnome/gnome-utils_2.28.0.bb new file mode 100644 index 0000000000..42df0e8c37 --- /dev/null +++ b/recipes/gnome/gnome-utils_2.28.0.bb @@ -0,0 +1,28 @@ +DESCRIPTION = "GNOME utilities" +SECTION = "x11/gnome" +LICENSE = "GPL" +DEPENDS = "gnome-common glib-2.0 gtk+ gconf" + +inherit gnome pkgconfig + +SRC_URI += "file://no-try-run-strftime.diff;patch=1" + +EXTRA_OECONF = "--disable-scrollkeeper" + +do_configure_append() { + for i in $(find ${S} -name "Makefile") ; do + sed -i -e s:-Werror::g $i + done +} + +do_stage () { + autotools_stage_all +} + +FILES_${PN} += "${datadir}/baobab \ + ${datadir}/gdict-1.0 \ + ${datadir}/gnome-dictionary \ + ${datadir}/gnome-screenshot \ + " + + |