summaryrefslogtreecommitdiffstats
path: root/meta-gnome/recipes-gnome/gtk+
Commit message (Collapse)AuthorAgeFilesLines
* Replace bb.data.* with d.*Paul Eggleton2012-10-281-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | Used sed expression given here: http://lists.linuxtogo.org/pipermail/openembedded-core/2011-November/012373.html Plus an additional expression for .expand. Full expression is: sed \ -e 's:bb.data.\(setVar([^,]*,[^,]*\), \([^ )]*\) *):\2.\1):g' \ -e 's:bb.data.\(setVarFlag([^,]*,[^,]*,[^,]*\), \([^) ]*\) *):\2.\1):g' \ -e 's:bb.data.\(getVar([^,]*\), \([^, ]*\) *,\([^)]*\)):\2.\1,\3):g' \ -e 's:bb.data.\(getVarFlag([^,]*,[^,]*\), \([^, ]*\) *,\([^)]*\)):\2.\1,\3):g' \ -e 's:bb.data.\(getVarFlag([^,]*,[^,]*\), \([^) ]*\) *):\2.\1):g' \ -e 's:bb.data.\(getVar([^,]*\), \([^) ]*\) *):\2.\1):g' \ -e 's:bb.data.\(expand([^,]*\), \([^ )]*\) *):\2.\1):g' \ -i `grep -ril bb.data *` Some minor correction in systemd.bbclass was needed for some expressions that didn't quite match the regex in the desired way; additionally a few instances were manually changed. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
* PACKAGES_DYNAMIC: use regexp not globMartin Jansa2012-10-191-1/+1
| | | | | | | | | | * bitbake uses PACKAGES_DYNAMIC as regexp ^ could make matching faster (and it will be more clear that we're expecting regexp not glob) * made all those last '-' optional, use .* (or nothing) * use += instead of = in most cases to keep ${PN}-locale from bitbake.conf:PACKAGES_DYNAMIC = "^${PN}-locale-.*" Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* gtk+: drop .bbappend with native BBCLASSEXTENDMartin Jansa2012-09-221-3/+0
| | | | | | * it's in oe-core now Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* recipes: bump PR to rebuild after libffi5 -> libffi6Martin Jansa2012-09-201-1/+1
| | | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* recipes: convert tabs to 4 spaces in populate_packagesMartin Jansa2012-07-191-9/+9
| | | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* gtk+3: fix build with automake-1.12.xMartin Jansa2012-07-192-1/+32
| | | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* gtk+3: update to 3.2.3Koen Kooi2012-02-291-5/+3
| | | | Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* recipes: bump PR to rebuild .la files without libz.laMartin Jansa2012-02-131-0/+2
| | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* gtk+3: add gtk+-native dependencyMartin Jansa2012-01-231-1/+1
| | | | | | | | | | | | | | * it's needed to provide gtk-update-icon-cache --enable-gtk2-dependency implies external gtk-update-icon-cache AM_CONDITIONAL(USE_EXTERNAL_ICON_CACHE, [test x = xyes || test x = xyes]) unfortunately result of AC_PATH_PROG(GTK_UPDATE_ICON_CACHE, gtk-update-icon-cache, no) is not checked for no value before being used resulting in no --quiet --force --ignore-theme-index \ --source builtin_icons stock-icons > gtkbuiltincache.h.tmp && \ mv gtkbuiltincache.h.tmp gtkbuiltincache.h /bin/sh: no: command not found Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* gtk+: add native BBCLASSEXTENDMartin Jansa2012-01-231-0/+3
| | | | | | | * it's needed to provide gtk-update-icon-cache for gtk+3 build * RRECOMMENDS needs to be empty as we don't want liberation-fonts-native etc Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* Gtk+3: Fix cups related error in configureSamuel Stirtzel2012-01-201-0/+1
| | | | | | | | | | | | | This patch will disable cups for gtk+3. The issue could be resolved by adding cups to the DEPENDS, however in gtk+2 cups is also disabled, so fixing it here in the same way seems appropriate. Error message is: | checking for cups/cups.h... no | configure: error: *** Sorry, cups-config present but cups/cups.h missing. Signed-off-by: Samuel Stirtzel <s.stirtzel@googlemail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* gtk+3: udpate to 3.2.2Koen Kooi2011-12-101-5/+3
| | | | Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* recipes: bump PR after python upgradeMartin Jansa2011-11-011-0/+2
| | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* Drop PRIORITY variablePaul Eggleton2011-07-141-1/+0
| | | | | | | | | | | | | | | | As discussed on the mailing list, this variable isn't useful and if wanted would be better implemented by distros using pn-X overrides. This patch executes: find . -regex ".*\.\(bb\|inc\)$" | xargs sed -i '/^PRIORITY = ".*"$/d' against the tree removing the references. Thanks to Phil Blundell for the command. (Prompted by oe-core rev: d122343362669c683acc4af295971a62cbc823fc) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
* gtk+3: add initial 3.0.11 recipeKoen Kooi2011-06-241-0/+95
modeled after the 2.x recipe in OE-core Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>