Andreas Müller
15ec594e15
gtksourceview-classic-light: extend to gtksourceview4
...
Adds classic-light to gtksourceview4. Classic-light enables dark text on white
background when using dark themes.
Tested with gedit V3.
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-05-06 08:32:04 -07:00
Andreas Müller
0c3d750ae6
gtksourceview4: initial add 4.2.0
...
gedit 3.x will depend on it
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-05-06 08:32:04 -07:00
Andreas Müller
45c84c45fd
gtksourceview3: upgrade 3.24.8 -> 3.24.10
...
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-03-28 11:55:34 -07:00
Andreas Müller
a33de2bfd5
gtksourceview3: upgrade 3.24.6 -> 3.24.8
...
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-08-19 16:09:28 -07:00
Andreas Müller
2ce2e2f4d5
gtksourceview-classic-light: initial add 1.0
...
This theme is helpful when using dark themes as it keeps white background.
Tested with:
* oe-build gedit based on GTK2
* fedora's gedit based on GTK3
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
2018-01-22 19:40:02 -08:00
Andreas Müller
52e348716a
gtksourceview3: initial add 3.24.6
...
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
2018-01-22 19:40:02 -08:00
Khem Raj
7417c35df9
gtksourceview2: Fix build with clang
...
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2017-04-24 11:00:54 +02:00
Andreas Müller
d3e64a3e88
gtksourceview2: add glib-2.0-native to DEPENDS and unblacklist
...
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
2017-02-22 13:16:51 +01:00
Martin Jansa
b7f480cc4c
python-edbus exquisite elementary libeweather unionfs-fuse xfsprogs gmtk devilspie2 gnome-backgrounds gnome-desktop gnome-mime-data gtk-engines gtksourceview2 libgnomekbd libidl-native onboard libgpewidget ubi-utils-klibc kexec-tools-klibc gupnp-igd gupnp-tools dvb-apps gstreamer mpd crda netcat-openbsd wireshark gnokii libmbim mosh networkmanager-openvpn libtelepathy dbus-daemon-proxy libdbus-c++ php vala-dbus-binding-tool collectd libgxim pywbem gtkhtml2 fbida fontforge libsexy wayland-fits xstdcmap xf86-video-glamo font-adobe-100dpi font-adobe-utopia-100dpi font-bh-100dpi font-bh-lucidatypewriter-100dpi font-misc-misc crash a2jmidid libsdl2-mixer libsdl-mixer minidlna sylpheed libsdl2-ttf libsdl-ttf ode pidgin postgresql syslog-ng usb-modeswitch xdg-user-dirs gateone python3-cryptography-vectors python3-ndg-httpsclient python-cryptography-vectors python-pbr bundler netdata menulibre openzone xfce4-verve-plugin iperf terminus-font xf86-video-nouveau ipmiutil klibc-utils pmbw multipath-tools gparted, gnome-system-monitor, php, vala-dbus-binding-tool, gtkmathview, lmsensors, postgresql: Blacklist
...
* fails repeatedly as reported in:
http://lists.openembedded.org/pipermail/openembedded-devel/2017-February/111112.html
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2017-02-13 18:44:34 +01:00
Ross Burton
a7f3ec87f9
meta-gnome: add explicit gnome-common dependencies
...
gnome-common is deprecated and gnomebase.bbclass will soon stop depending on it,
so add gnome-common to DEPENDS for the recipes that still use it.
gxim previously wasn't really using the gnome-common macros so now the build
fails with compiler errors, so pass the flag to turn off fatal warnings as gxim
appears to be dead.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-12-02 09:16:18 +01:00
Jackie Huang
0b365d7248
gtksourceview2: add x11 to REQUIRED_DISTRO_FEATURES
...
gtksourceview2 depends on gtk+ which requires x11 distro feature.
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-11-23 15:24:47 +01:00
Martin Jansa
c16a8d66db
gtksourceview2: add intltool-native dependency
...
* fixes:
| ../gtksourceview-2.10.5/configure: line 12665: syntax error near unexpected token `0.40'
| ../gtksourceview-2.10.5/configure: line 12665: `IT_PROG_INTLTOOL(0.40)'
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-08-15 12:21:38 +02:00
Yi Zhao
ca363445b8
gtksourceview2: fix build with gcc6
...
Fix build error:
../../gtksourceview-2.10.5/gtksourceview/gtksourceprintcompositor.c:
In function 'strdup_strftime':
../../gtksourceview-2.10.5/gtksourceview/gtksourceprintcompositor.c:1951:3:
error: format not a string literal, format string not checked [-Werror=format-nonliteral]
tmplen = strftime (tmpbuf, tmpbufsize, locale_format, tm);
^~~~~~
A wrapper for strftime() would compile failed with -Werror=format-nonliteral
in newer GCC. See GCC bug:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=39438
Since most of the strdup_strftime function code is taken from GLib's
g_date_strftime() in gdate.c which already had a fix:
https://bugzilla.gnome.org/show_bug.cgi?id=761550
So this patch refers the glib fixes:
https://git.gnome.org/browse/glib/commit/?id=0817af40e8c74c721c30f6ef482b1f53d12044c7
https://git.gnome.org/browse/glib/commit/?id=8cdbc7fb2c8c876902e457abe46ee18a0b134486
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-07-29 11:00:54 +02:00
Martin Jansa
d78c5215b3
evince, epdf, gdm, gnumeric, libgnomeprint, tumbler, gedit, gnome-panel, gnome-session, gnome-terminal, libgnomecups, gtksourceview2, libgweather, libgnomeui, tracker, gimp, poppler, mousepad, goffice, tasks: blacklist, fails to build with gcc-6
...
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-06-13 19:06:43 +02:00
Martin Jansa
b6fdcc552b
gtksourceview2: add dependency on libxml2
...
* fixes floating dependency:
gtksourceview2-2.10.5: gtksourceview2 rdepends on libxml2, but it isn't a build dependency? [build-deps]
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-08-11 11:00:40 +02:00
Martin Jansa
a6949af8ef
gtksourceview2: inherit only gnomebase
...
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-04-20 10:46:49 +02:00
Matthieu CRAPET
c95e155780
recipes: convert remaining SUMMARY/DESCRIPTION cosmetic issues
...
Changes:
- rename SUMMARY with length > 80 to DESCRIPTION
- rename DESCRIPTION with length < 80 to (non present tag) SUMMARY
- drop final point character at the end of SUMMARY string
- remove trailing whitespace of SUMMARY line
Note: don't bump PR
Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-02-23 23:20:02 +01:00
Koen Kooi
16de24692b
gtksourceview2: update to 2.10.5
...
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2011-09-21 16:21:34 +02:00
Joel A Fernandes
e25fa89c43
gtksourceview: Imported from OE classic
...
* Added LIC_FILES_CHKSUM
* Added virtual/gettext to DEPENDS
Signed-off-by: Joel A Fernandes <joelagnel@ti.com>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2011-09-07 08:07:00 +02:00