jer 14/06/04 03:14:31
Added: easystroke-0.6.0-cellrendertextish.patch
easystroke-0.6.0-desktop.patch
easystroke-0.6.0-gentoo.patch
Log:
Initial commit (bug #253783 by ron widler).
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key
A792A613)
Revision Changes Path
1.1
x11-misc/easystroke/files/easystroke-0.6.0-cellrendertextish.patch
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/easystroke/files/easystroke-0.6.0-cellrendertextish.patch?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/easystroke/files/easystroke-0.6.0-cellrendertextish.patch?rev=1.1&content-type=text/plain
Index: easystroke-0.6.0-cellrendertextish.patch
===================================================================
--- a/cellrenderertextish.c
+++ b/cellrenderertextish.c
@@ -599,7 +599,7 @@
_g_free0 (self->priv->path);
self->priv->path = _tmp3_;
g_signal_connect_object ((GtkCellEditable*) self, "editing-done",
(GCallback)
_cell_editable_accel_on_editing_done_gtk_cell_editable_editing_done, self, 0);
- _tmp4_ = _ ("Key combination...");
+ _tmp4_ = ("Key combination...");
_tmp5_ = (GtkLabel*) gtk_label_new (_tmp4_);
g_object_ref_sink (_tmp5_);
label = _tmp5_;
@@ -907,7 +907,7 @@
const gchar* _tmp10_;
const gchar* _tmp11_ = NULL;
_tmp10_ = item;
- _tmp11_ = _ (_tmp10_);
+ _tmp11_ = (_tmp10_);
gtk_combo_box_text_append_text
((GtkComboBoxText*) self, _tmp11_);
_g_free0 (item);
}
1.1 x11-misc/easystroke/files/easystroke-0.6.0-desktop.patch
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/easystroke/files/easystroke-0.6.0-desktop.patch?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/easystroke/files/easystroke-0.6.0-desktop.patch?rev=1.1&content-type=text/plain
Index: easystroke-0.6.0-desktop.patch
===================================================================
--- a/easystroke.desktop.in
+++ b/easystroke.desktop.in
@@ -6,7 +6,7 @@
Exec=easystroke
Icon=easystroke
Categories=GTK;Utility;Accessibility;
-Actions=About;Enable;Disable;Quit
+Actions=About;Enable;Disable;Quit;
_Comment=Control your desktop using mouse gestures
[Desktop Action About]
1.1 x11-misc/easystroke/files/easystroke-0.6.0-gentoo.patch
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/easystroke/files/easystroke-0.6.0-gentoo.patch?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/easystroke/files/easystroke-0.6.0-gentoo.patch?rev=1.1&content-type=text/plain
Index: easystroke-0.6.0-gentoo.patch
===================================================================
--- a/Makefile
+++ b/Makefile
@@ -19,14 +19,14 @@
MENUDIR = $(PREFIX)/share/applications
LOCALEDIR= $(PREFIX)/share/locale
DFLAGS =
-OFLAGS = -O2
-AOFLAGS = -O3
+#OFLAGS = -O2
+#AOFLAGS = -O3
STROKEFLAGS = -Wall -std=c99 $(DFLAGS)
-CXXFLAGS = -Wall $(DFLAGS) -DLOCALEDIR=\"$(LOCALEDIR)\" `pkg-config gtkmm-3.0
dbus-glib-1 --cflags`
-CFLAGS = -Wall $(DFLAGS) -DLOCALEDIR=\"$(LOCALEDIR)\" `pkg-config gtk+-3.0
--cflags` -DGETTEXT_PACKAGE='"easystroke"'
-LDFLAGS = $(DFLAGS)
+CXXFLAGS += -Wall $(DFLAGS) -DLOCALEDIR=\"$(LOCALEDIR)\" $(shell $(PKG_CONFIG)
gtkmm-3.0 dbus-glib-1 --cflags)
+CFLAGS += -Wall $(DFLAGS) -DLOCALEDIR=\"$(LOCALEDIR)\" $(shell $(PKG_CONFIG)
gtk+-3.0 --cflags) -DGETTEXT_PACKAGE='"easystroke"'
+#LDFLAGS = $(DFLAGS)
-LIBS = $(DFLAGS) -lboost_serialization -lX11 -lXext -lXi -lXfixes -lXtst
`pkg-config gtkmm-3.0 dbus-glib-1 --libs`
+LIBS = $(DFLAGS) -lboost_serialization -lX11 -lXext -lXi -lXfixes -lXtst
$(shell $(PKG_CONFIG) gtkmm-3.0 dbus-glib-1 --libs)
BINARY = easystroke
ICON = easystroke.svg
@@ -60,7 +60,7 @@
include $(DEPFILES)
$(BINARY): $(OFILES)
- $(CXX) $(LDFLAGS) -o $@ $(OFILES) $(LIBS)
+ $(CXX) $(CFLAGS) $(LDFLAGS) -o $@ $(OFILES) $(LIBS)
stroke.o: stroke.c
$(CC) $(STROKEFLAGS) $(AOFLAGS) -MT $@ -MMD -MP -MF $*.Po -o $@ -c $<
@@ -119,7 +119,7 @@
help2man -N -n "X11 gesture recognition application" ./$(BINARY) > $@
install: all
- install -Ds $(BINARY) $(DESTDIR)$(BINDIR)/$(BINARY)
+ install -D $(BINARY) $(DESTDIR)$(BINDIR)/$(BINARY)
install -D -m 644 $(ICON) $(DESTDIR)$(ICONDIR)/$(ICON)
install -D -m 644 $(MENU) $(DESTDIR)$(MENUDIR)/$(MENU)
for f in $(MOFILES); do \