From c5d62263c1c5ffd1ac3d20c84cc3388e9de910ad Mon Sep 17 00:00:00 2001 From: cvs2git Date: Sat, 25 Aug 2007 14:50:09 +0000 Subject: [PATCH] This commit was manufactured by cvs2git to create branch 'DEVEL'. Sprout from master 2007-08-25 14:50:09 UTC Jakub Bogusz '- updated for 2.3.2' Delete: aqbanking-glade.patch aqbanking.spec --- aqbanking-glade.patch | 649 --------------------------------------- aqbanking.spec | 684 ------------------------------------------ 2 files changed, 1333 deletions(-) delete mode 100644 aqbanking-glade.patch delete mode 100644 aqbanking.spec diff --git a/aqbanking-glade.patch b/aqbanking-glade.patch deleted file mode 100644 index 8a1308a..0000000 --- a/aqbanking-glade.patch +++ /dev/null @@ -1,649 +0,0 @@ ---- aqbanking-1.6.2/src/frontends/g2banking/callbacks.c.orig 1970-01-01 01:00:00.000000000 +0100 -+++ aqbanking-1.6.2/src/frontends/g2banking/callbacks.c 2006-01-15 17:27:07.000000000 +0100 -@@ -0,0 +1,10 @@ -+#ifdef HAVE_CONFIG_H -+# include -+#endif -+ -+#include -+ -+#include "callbacks.h" -+#include "interface.h" -+#include "support.h" -+ ---- aqbanking-1.6.2/src/frontends/g2banking/callbacks.h.orig 1970-01-01 01:00:00.000000000 +0100 -+++ aqbanking-1.6.2/src/frontends/g2banking/callbacks.h 2006-01-15 17:27:07.000000000 +0100 -@@ -0,0 +1,2 @@ -+#include -+ ---- aqbanking-1.6.2/src/frontends/g2banking/interface.c.orig 1970-01-01 01:00:00.000000000 +0100 -+++ aqbanking-1.6.2/src/frontends/g2banking/interface.c 2006-01-15 17:27:07.000000000 +0100 -@@ -0,0 +1,397 @@ -+/* -+ * DO NOT EDIT THIS FILE - it is generated by Glade. -+ */ -+ -+#ifdef HAVE_CONFIG_H -+# include -+#endif -+ -+#include -+#include -+#include -+#include -+#include -+ -+#include -+#include -+ -+#include "callbacks.h" -+#include "interface.h" -+#include "support.h" -+ -+#define GLADE_HOOKUP_OBJECT(component,widget,name) \ -+ g_object_set_data_full (G_OBJECT (component), name, \ -+ gtk_widget_ref (widget), (GDestroyNotify) gtk_widget_unref) -+ -+#define GLADE_HOOKUP_OBJECT_NO_REF(component,widget,name) \ -+ g_object_set_data (G_OBJECT (component), name, widget) -+ -+GtkWidget* -+create_GConnectionDialog (void) -+{ -+ GtkWidget *GConnectionDialog; -+ GtkWidget *dialog_vbox1; -+ GtkWidget *vbox1; -+ GtkWidget *vbox2; -+ GtkWidget *titleText; -+ GtkWidget *scrolledwindow1; -+ GtkWidget *logText; -+ GtkWidget *vbox3; -+ GtkWidget *table1; -+ GtkWidget *label3; -+ GtkWidget *progressBar; -+ GtkWidget *dialog_action_area1; -+ GtkWidget *closeButton; -+ GtkWidget *abortButton; -+ -+ GConnectionDialog = gtk_dialog_new (); -+ gtk_window_set_title (GTK_WINDOW (GConnectionDialog), _("dialog1")); -+ gtk_window_set_type_hint (GTK_WINDOW (GConnectionDialog), GDK_WINDOW_TYPE_HINT_DIALOG); -+ -+ dialog_vbox1 = GTK_DIALOG (GConnectionDialog)->vbox; -+ gtk_widget_show (dialog_vbox1); -+ -+ vbox1 = gtk_vbox_new (FALSE, 0); -+ gtk_widget_show (vbox1); -+ gtk_box_pack_start (GTK_BOX (dialog_vbox1), vbox1, TRUE, TRUE, 0); -+ -+ vbox2 = gtk_vbox_new (FALSE, 0); -+ gtk_widget_show (vbox2); -+ gtk_box_pack_start (GTK_BOX (vbox1), vbox2, TRUE, TRUE, 0); -+ -+ titleText = gtk_label_new (_("--Text--")); -+ gtk_widget_show (titleText); -+ gtk_box_pack_start (GTK_BOX (vbox2), titleText, FALSE, TRUE, 0); -+ gtk_label_set_line_wrap (GTK_LABEL (titleText), TRUE); -+ -+ scrolledwindow1 = gtk_scrolled_window_new (NULL, NULL); -+ gtk_widget_show (scrolledwindow1); -+ gtk_box_pack_start (GTK_BOX (vbox2), scrolledwindow1, TRUE, TRUE, 0); -+ -+ logText = gtk_text_view_new (); -+ gtk_widget_show (logText); -+ gtk_container_add (GTK_CONTAINER (scrolledwindow1), logText); -+ gtk_text_buffer_set_text (gtk_text_view_get_buffer (GTK_TEXT_VIEW (logText)), _("test"), -1); -+ -+ vbox3 = gtk_vbox_new (FALSE, 0); -+ gtk_widget_show (vbox3); -+ gtk_box_pack_start (GTK_BOX (vbox1), vbox3, FALSE, TRUE, 0); -+ -+ table1 = gtk_table_new (1, 2, FALSE); -+ gtk_widget_show (table1); -+ gtk_box_pack_start (GTK_BOX (vbox3), table1, TRUE, TRUE, 0); -+ -+ label3 = gtk_label_new (_("Progress")); -+ gtk_widget_show (label3); -+ gtk_table_attach (GTK_TABLE (table1), label3, 0, 1, 0, 1, -+ (GtkAttachOptions) (GTK_SHRINK | GTK_FILL), -+ (GtkAttachOptions) (0), 0, 0); -+ gtk_misc_set_alignment (GTK_MISC (label3), 0, 0.5); -+ -+ progressBar = gtk_progress_bar_new (); -+ gtk_widget_show (progressBar); -+ gtk_table_attach (GTK_TABLE (table1), progressBar, 1, 2, 0, 1, -+ (GtkAttachOptions) (GTK_EXPAND | GTK_FILL), -+ (GtkAttachOptions) (GTK_SHRINK), 0, 0); -+ -+ dialog_action_area1 = GTK_DIALOG (GConnectionDialog)->action_area; -+ gtk_widget_show (dialog_action_area1); -+ gtk_button_box_set_layout (GTK_BUTTON_BOX (dialog_action_area1), GTK_BUTTONBOX_END); -+ -+ closeButton = gtk_button_new_from_stock ("gtk-close"); -+ gtk_widget_show (closeButton); -+ gtk_dialog_add_action_widget (GTK_DIALOG (GConnectionDialog), closeButton, GTK_RESPONSE_CLOSE); -+ GTK_WIDGET_SET_FLAGS (closeButton, GTK_CAN_DEFAULT); -+ -+ abortButton = gtk_button_new_from_stock ("gtk-cancel"); -+ gtk_widget_show (abortButton); -+ gtk_dialog_add_action_widget (GTK_DIALOG (GConnectionDialog), abortButton, GTK_RESPONSE_CANCEL); -+ GTK_WIDGET_SET_FLAGS (abortButton, GTK_CAN_DEFAULT); -+ -+ /* Store pointers to all widgets, for use by lookup_widget(). */ -+ GLADE_HOOKUP_OBJECT_NO_REF (GConnectionDialog, GConnectionDialog, "GConnectionDialog"); -+ GLADE_HOOKUP_OBJECT_NO_REF (GConnectionDialog, dialog_vbox1, "dialog_vbox1"); -+ GLADE_HOOKUP_OBJECT (GConnectionDialog, vbox1, "vbox1"); -+ GLADE_HOOKUP_OBJECT (GConnectionDialog, vbox2, "vbox2"); -+ GLADE_HOOKUP_OBJECT (GConnectionDialog, titleText, "titleText"); -+ GLADE_HOOKUP_OBJECT (GConnectionDialog, scrolledwindow1, "scrolledwindow1"); -+ GLADE_HOOKUP_OBJECT (GConnectionDialog, logText, "logText"); -+ GLADE_HOOKUP_OBJECT (GConnectionDialog, vbox3, "vbox3"); -+ GLADE_HOOKUP_OBJECT (GConnectionDialog, table1, "table1"); -+ GLADE_HOOKUP_OBJECT (GConnectionDialog, label3, "label3"); -+ GLADE_HOOKUP_OBJECT (GConnectionDialog, progressBar, "progressBar"); -+ GLADE_HOOKUP_OBJECT_NO_REF (GConnectionDialog, dialog_action_area1, "dialog_action_area1"); -+ GLADE_HOOKUP_OBJECT (GConnectionDialog, closeButton, "closeButton"); -+ GLADE_HOOKUP_OBJECT (GConnectionDialog, abortButton, "abortButton"); -+ -+ return GConnectionDialog; -+} -+ -+GtkWidget* -+create_GSimpleBox (void) -+{ -+ GtkWidget *GSimpleBox; -+ GtkWidget *textLabel; -+ -+ GSimpleBox = gtk_window_new (GTK_WINDOW_TOPLEVEL); -+ gtk_window_set_title (GTK_WINDOW (GSimpleBox), _("Message")); -+ gtk_window_set_position (GTK_WINDOW (GSimpleBox), GTK_WIN_POS_CENTER_ON_PARENT); -+ -+ textLabel = gtk_label_new (_("label4")); -+ gtk_widget_show (textLabel); -+ gtk_container_add (GTK_CONTAINER (GSimpleBox), textLabel); -+ -+ /* Store pointers to all widgets, for use by lookup_widget(). */ -+ GLADE_HOOKUP_OBJECT_NO_REF (GSimpleBox, GSimpleBox, "GSimpleBox"); -+ GLADE_HOOKUP_OBJECT (GSimpleBox, textLabel, "textLabel"); -+ -+ return GSimpleBox; -+} -+ -+GtkWidget* -+create_GJobView (void) -+{ -+ GtkWidget *GJobView; -+ GtkWidget *hbox1; -+ GtkWidget *scrolledwindow2; -+ GtkWidget *jobListView; -+ GtkWidget *vbuttonbox1; -+ GtkWidget *dequeueButton; -+ GtkWidget *alignment2; -+ GtkWidget *hbox3; -+ GtkWidget *image2; -+ GtkWidget *label5; -+ GtkWidget *execButton; -+ GtkWidget *alignment1; -+ GtkWidget *hbox2; -+ GtkWidget *image1; -+ GtkWidget *label4; -+ -+ GJobView = gtk_window_new (GTK_WINDOW_TOPLEVEL); -+ gtk_window_set_title (GTK_WINDOW (GJobView), _("Outbox")); -+ gtk_window_set_destroy_with_parent (GTK_WINDOW (GJobView), TRUE); -+ -+ hbox1 = gtk_hbox_new (FALSE, 0); -+ gtk_widget_show (hbox1); -+ gtk_container_add (GTK_CONTAINER (GJobView), hbox1); -+ -+ scrolledwindow2 = gtk_scrolled_window_new (NULL, NULL); -+ gtk_widget_show (scrolledwindow2); -+ gtk_box_pack_start (GTK_BOX (hbox1), scrolledwindow2, TRUE, TRUE, 0); -+ -+ jobListView = gtk_tree_view_new (); -+ gtk_widget_show (jobListView); -+ gtk_container_add (GTK_CONTAINER (scrolledwindow2), jobListView); -+ gtk_tree_view_set_reorderable (GTK_TREE_VIEW (jobListView), TRUE); -+ -+ vbuttonbox1 = gtk_vbutton_box_new (); -+ gtk_widget_show (vbuttonbox1); -+ gtk_box_pack_start (GTK_BOX (hbox1), vbuttonbox1, FALSE, FALSE, 0); -+ gtk_button_box_set_layout (GTK_BUTTON_BOX (vbuttonbox1), GTK_BUTTONBOX_START); -+ -+ dequeueButton = gtk_button_new (); -+ gtk_widget_show (dequeueButton); -+ gtk_container_add (GTK_CONTAINER (vbuttonbox1), dequeueButton); -+ GTK_WIDGET_SET_FLAGS (dequeueButton, GTK_CAN_DEFAULT); -+ -+ alignment2 = gtk_alignment_new (0.5, 0.5, 0, 0); -+ gtk_widget_show (alignment2); -+ gtk_container_add (GTK_CONTAINER (dequeueButton), alignment2); -+ -+ hbox3 = gtk_hbox_new (FALSE, 2); -+ gtk_widget_show (hbox3); -+ gtk_container_add (GTK_CONTAINER (alignment2), hbox3); -+ -+ image2 = gtk_image_new_from_stock ("gtk-delete", GTK_ICON_SIZE_BUTTON); -+ gtk_widget_show (image2); -+ gtk_box_pack_start (GTK_BOX (hbox3), image2, FALSE, FALSE, 0); -+ -+ label5 = gtk_label_new_with_mnemonic (_("Dequeue")); -+ gtk_widget_show (label5); -+ gtk_box_pack_start (GTK_BOX (hbox3), label5, FALSE, FALSE, 0); -+ -+ execButton = gtk_button_new (); -+ gtk_widget_show (execButton); -+ gtk_container_add (GTK_CONTAINER (vbuttonbox1), execButton); -+ GTK_WIDGET_SET_FLAGS (execButton, GTK_CAN_DEFAULT); -+ -+ alignment1 = gtk_alignment_new (0.5, 0.5, 0, 0); -+ gtk_widget_show (alignment1); -+ gtk_container_add (GTK_CONTAINER (execButton), alignment1); -+ -+ hbox2 = gtk_hbox_new (FALSE, 2); -+ gtk_widget_show (hbox2); -+ gtk_container_add (GTK_CONTAINER (alignment1), hbox2); -+ -+ image1 = gtk_image_new_from_stock ("gtk-execute", GTK_ICON_SIZE_BUTTON); -+ gtk_widget_show (image1); -+ gtk_box_pack_start (GTK_BOX (hbox2), image1, FALSE, FALSE, 0); -+ -+ label4 = gtk_label_new_with_mnemonic (_("Execute")); -+ gtk_widget_show (label4); -+ gtk_box_pack_start (GTK_BOX (hbox2), label4, FALSE, FALSE, 0); -+ -+ /* Store pointers to all widgets, for use by lookup_widget(). */ -+ GLADE_HOOKUP_OBJECT_NO_REF (GJobView, GJobView, "GJobView"); -+ GLADE_HOOKUP_OBJECT (GJobView, hbox1, "hbox1"); -+ GLADE_HOOKUP_OBJECT (GJobView, scrolledwindow2, "scrolledwindow2"); -+ GLADE_HOOKUP_OBJECT (GJobView, jobListView, "jobListView"); -+ GLADE_HOOKUP_OBJECT (GJobView, vbuttonbox1, "vbuttonbox1"); -+ GLADE_HOOKUP_OBJECT (GJobView, dequeueButton, "dequeueButton"); -+ GLADE_HOOKUP_OBJECT (GJobView, alignment2, "alignment2"); -+ GLADE_HOOKUP_OBJECT (GJobView, hbox3, "hbox3"); -+ GLADE_HOOKUP_OBJECT (GJobView, image2, "image2"); -+ GLADE_HOOKUP_OBJECT (GJobView, label5, "label5"); -+ GLADE_HOOKUP_OBJECT (GJobView, execButton, "execButton"); -+ GLADE_HOOKUP_OBJECT (GJobView, alignment1, "alignment1"); -+ GLADE_HOOKUP_OBJECT (GJobView, hbox2, "hbox2"); -+ GLADE_HOOKUP_OBJECT (GJobView, image1, "image1"); -+ GLADE_HOOKUP_OBJECT (GJobView, label4, "label4"); -+ -+ return GJobView; -+} -+ -+GtkWidget* -+create_GInputBox (void) -+{ -+ GtkWidget *GInputBox; -+ GtkWidget *dialog_vbox2; -+ GtkWidget *vbox5; -+ GtkWidget *textLabel; -+ GtkWidget *table3; -+ GtkWidget *label9; -+ GtkWidget *confirmLabel; -+ GtkWidget *inputEntry; -+ GtkWidget *confirmEntry; -+ GtkWidget *dialog_action_area2; -+ GtkWidget *abortbutton; -+ GtkWidget *okButton; -+ -+ GInputBox = gtk_dialog_new (); -+ gtk_window_set_title (GTK_WINDOW (GInputBox), _("Input")); -+ gtk_window_set_modal (GTK_WINDOW (GInputBox), TRUE); -+ gtk_window_set_type_hint (GTK_WINDOW (GInputBox), GDK_WINDOW_TYPE_HINT_DIALOG); -+ -+ dialog_vbox2 = GTK_DIALOG (GInputBox)->vbox; -+ gtk_widget_show (dialog_vbox2); -+ -+ vbox5 = gtk_vbox_new (FALSE, 0); -+ gtk_widget_show (vbox5); -+ gtk_box_pack_start (GTK_BOX (dialog_vbox2), vbox5, TRUE, TRUE, 0); -+ -+ textLabel = gtk_label_new (_("label8")); -+ gtk_widget_show (textLabel); -+ gtk_box_pack_start (GTK_BOX (vbox5), textLabel, TRUE, TRUE, 0); -+ -+ table3 = gtk_table_new (2, 2, FALSE); -+ gtk_widget_show (table3); -+ gtk_box_pack_start (GTK_BOX (vbox5), table3, FALSE, FALSE, 0); -+ -+ label9 = gtk_label_new (_("Input")); -+ gtk_widget_show (label9); -+ gtk_table_attach (GTK_TABLE (table3), label9, 0, 1, 0, 1, -+ (GtkAttachOptions) (GTK_FILL), -+ (GtkAttachOptions) (0), 0, 0); -+ gtk_misc_set_alignment (GTK_MISC (label9), 0, 0.5); -+ -+ confirmLabel = gtk_label_new (_("Confirm")); -+ gtk_table_attach (GTK_TABLE (table3), confirmLabel, 0, 1, 1, 2, -+ (GtkAttachOptions) (GTK_FILL), -+ (GtkAttachOptions) (0), 0, 0); -+ gtk_misc_set_alignment (GTK_MISC (confirmLabel), 0, 0.5); -+ -+ inputEntry = gtk_entry_new (); -+ gtk_widget_show (inputEntry); -+ gtk_table_attach (GTK_TABLE (table3), inputEntry, 1, 2, 0, 1, -+ (GtkAttachOptions) (GTK_EXPAND | GTK_FILL), -+ (GtkAttachOptions) (0), 0, 0); -+ -+ confirmEntry = gtk_entry_new (); -+ gtk_table_attach (GTK_TABLE (table3), confirmEntry, 1, 2, 1, 2, -+ (GtkAttachOptions) (GTK_EXPAND | GTK_FILL), -+ (GtkAttachOptions) (0), 0, 0); -+ -+ dialog_action_area2 = GTK_DIALOG (GInputBox)->action_area; -+ gtk_widget_show (dialog_action_area2); -+ gtk_button_box_set_layout (GTK_BUTTON_BOX (dialog_action_area2), GTK_BUTTONBOX_END); -+ -+ abortbutton = gtk_button_new_from_stock ("gtk-cancel"); -+ gtk_widget_show (abortbutton); -+ gtk_dialog_add_action_widget (GTK_DIALOG (GInputBox), abortbutton, GTK_RESPONSE_CANCEL); -+ GTK_WIDGET_SET_FLAGS (abortbutton, GTK_CAN_DEFAULT); -+ -+ okButton = gtk_button_new_from_stock ("gtk-ok"); -+ gtk_widget_show (okButton); -+ gtk_dialog_add_action_widget (GTK_DIALOG (GInputBox), okButton, GTK_RESPONSE_OK); -+ GTK_WIDGET_SET_FLAGS (okButton, GTK_CAN_DEFAULT); -+ -+ /* Store pointers to all widgets, for use by lookup_widget(). */ -+ GLADE_HOOKUP_OBJECT_NO_REF (GInputBox, GInputBox, "GInputBox"); -+ GLADE_HOOKUP_OBJECT_NO_REF (GInputBox, dialog_vbox2, "dialog_vbox2"); -+ GLADE_HOOKUP_OBJECT (GInputBox, vbox5, "vbox5"); -+ GLADE_HOOKUP_OBJECT (GInputBox, textLabel, "textLabel"); -+ GLADE_HOOKUP_OBJECT (GInputBox, table3, "table3"); -+ GLADE_HOOKUP_OBJECT (GInputBox, label9, "label9"); -+ GLADE_HOOKUP_OBJECT (GInputBox, confirmLabel, "confirmLabel"); -+ GLADE_HOOKUP_OBJECT (GInputBox, inputEntry, "inputEntry"); -+ GLADE_HOOKUP_OBJECT (GInputBox, confirmEntry, "confirmEntry"); -+ GLADE_HOOKUP_OBJECT_NO_REF (GInputBox, dialog_action_area2, "dialog_action_area2"); -+ GLADE_HOOKUP_OBJECT (GInputBox, abortbutton, "abortbutton"); -+ GLADE_HOOKUP_OBJECT (GInputBox, okButton, "okButton"); -+ -+ return GInputBox; -+} -+ -+GtkWidget* -+create_GMessageBox (void) -+{ -+ GtkWidget *GMessageBox; -+ GtkWidget *dialog_vbox3; -+ GtkWidget *textLabel; -+ GtkWidget *dialog_action_area3; -+ GtkWidget *button1; -+ GtkWidget *button2; -+ GtkWidget *button3; -+ -+ GMessageBox = gtk_dialog_new (); -+ gtk_window_set_title (GTK_WINDOW (GMessageBox), _("Message")); -+ gtk_window_set_modal (GTK_WINDOW (GMessageBox), TRUE); -+ gtk_window_set_destroy_with_parent (GTK_WINDOW (GMessageBox), TRUE); -+ gtk_window_set_type_hint (GTK_WINDOW (GMessageBox), GDK_WINDOW_TYPE_HINT_DIALOG); -+ -+ dialog_vbox3 = GTK_DIALOG (GMessageBox)->vbox; -+ gtk_widget_show (dialog_vbox3); -+ -+ textLabel = gtk_label_new (_("label10")); -+ gtk_widget_show (textLabel); -+ gtk_box_pack_start (GTK_BOX (dialog_vbox3), textLabel, TRUE, TRUE, 0); -+ -+ dialog_action_area3 = GTK_DIALOG (GMessageBox)->action_area; -+ gtk_widget_show (dialog_action_area3); -+ gtk_button_box_set_layout (GTK_BUTTON_BOX (dialog_action_area3), GTK_BUTTONBOX_END); -+ -+ button1 = gtk_button_new_with_mnemonic (_("button1")); -+ gtk_widget_show (button1); -+ gtk_dialog_add_action_widget (GTK_DIALOG (GMessageBox), button1, 0); -+ GTK_WIDGET_SET_FLAGS (button1, GTK_CAN_DEFAULT); -+ -+ button2 = gtk_button_new_with_mnemonic (_("button2")); -+ gtk_dialog_add_action_widget (GTK_DIALOG (GMessageBox), button2, 0); -+ GTK_WIDGET_SET_FLAGS (button2, GTK_CAN_DEFAULT); -+ -+ button3 = gtk_button_new_with_mnemonic (_("button3")); -+ gtk_dialog_add_action_widget (GTK_DIALOG (GMessageBox), button3, 0); -+ GTK_WIDGET_SET_FLAGS (button3, GTK_CAN_DEFAULT); -+ -+ /* Store pointers to all widgets, for use by lookup_widget(). */ -+ GLADE_HOOKUP_OBJECT_NO_REF (GMessageBox, GMessageBox, "GMessageBox"); -+ GLADE_HOOKUP_OBJECT_NO_REF (GMessageBox, dialog_vbox3, "dialog_vbox3"); -+ GLADE_HOOKUP_OBJECT (GMessageBox, textLabel, "textLabel"); -+ GLADE_HOOKUP_OBJECT_NO_REF (GMessageBox, dialog_action_area3, "dialog_action_area3"); -+ GLADE_HOOKUP_OBJECT (GMessageBox, button1, "button1"); -+ GLADE_HOOKUP_OBJECT (GMessageBox, button2, "button2"); -+ GLADE_HOOKUP_OBJECT (GMessageBox, button3, "button3"); -+ -+ return GMessageBox; -+} -+ ---- aqbanking-1.6.2/src/frontends/g2banking/interface.h.orig 1970-01-01 01:00:00.000000000 +0100 -+++ aqbanking-1.6.2/src/frontends/g2banking/interface.h 2006-01-15 17:27:07.000000000 +0100 -@@ -0,0 +1,9 @@ -+/* -+ * DO NOT EDIT THIS FILE - it is generated by Glade. -+ */ -+ -+GtkWidget* create_GConnectionDialog (void); -+GtkWidget* create_GSimpleBox (void); -+GtkWidget* create_GJobView (void); -+GtkWidget* create_GInputBox (void); -+GtkWidget* create_GMessageBox (void); ---- aqbanking-1.6.2/src/frontends/g2banking/support.c.orig 1970-01-01 01:00:00.000000000 +0100 -+++ aqbanking-1.6.2/src/frontends/g2banking/support.c 2006-01-15 17:27:07.000000000 +0100 -@@ -0,0 +1,144 @@ -+/* -+ * DO NOT EDIT THIS FILE - it is generated by Glade. -+ */ -+ -+#ifdef HAVE_CONFIG_H -+# include -+#endif -+ -+#include -+#include -+#include -+#include -+#include -+ -+#include -+ -+#include "support.h" -+ -+GtkWidget* -+lookup_widget (GtkWidget *widget, -+ const gchar *widget_name) -+{ -+ GtkWidget *parent, *found_widget; -+ -+ for (;;) -+ { -+ if (GTK_IS_MENU (widget)) -+ parent = gtk_menu_get_attach_widget (GTK_MENU (widget)); -+ else -+ parent = widget->parent; -+ if (!parent) -+ parent = (GtkWidget*) g_object_get_data (G_OBJECT (widget), "GladeParentKey"); -+ if (parent == NULL) -+ break; -+ widget = parent; -+ } -+ -+ found_widget = (GtkWidget*) g_object_get_data (G_OBJECT (widget), -+ widget_name); -+ if (!found_widget) -+ g_warning ("Widget not found: %s", widget_name); -+ return found_widget; -+} -+ -+static GList *pixmaps_directories = NULL; -+ -+/* Use this function to set the directory containing installed pixmaps. */ -+void -+add_pixmap_directory (const gchar *directory) -+{ -+ pixmaps_directories = g_list_prepend (pixmaps_directories, -+ g_strdup (directory)); -+} -+ -+/* This is an internally used function to find pixmap files. */ -+static gchar* -+find_pixmap_file (const gchar *filename) -+{ -+ GList *elem; -+ -+ /* We step through each of the pixmaps directory to find it. */ -+ elem = pixmaps_directories; -+ while (elem) -+ { -+ gchar *pathname = g_strdup_printf ("%s%s%s", (gchar*)elem->data, -+ G_DIR_SEPARATOR_S, filename); -+ if (g_file_test (pathname, G_FILE_TEST_EXISTS)) -+ return pathname; -+ g_free (pathname); -+ elem = elem->next; -+ } -+ return NULL; -+} -+ -+/* This is an internally used function to create pixmaps. */ -+GtkWidget* -+create_pixmap (GtkWidget *widget, -+ const gchar *filename) -+{ -+ gchar *pathname = NULL; -+ GtkWidget *pixmap; -+ -+ if (!filename || !filename[0]) -+ return gtk_image_new (); -+ -+ pathname = find_pixmap_file (filename); -+ -+ if (!pathname) -+ { -+ g_warning (_("Couldn't find pixmap file: %s"), filename); -+ return gtk_image_new (); -+ } -+ -+ pixmap = gtk_image_new_from_file (pathname); -+ g_free (pathname); -+ return pixmap; -+} -+ -+/* This is an internally used function to create pixmaps. */ -+GdkPixbuf* -+create_pixbuf (const gchar *filename) -+{ -+ gchar *pathname = NULL; -+ GdkPixbuf *pixbuf; -+ GError *error = NULL; -+ -+ if (!filename || !filename[0]) -+ return NULL; -+ -+ pathname = find_pixmap_file (filename); -+ -+ if (!pathname) -+ { -+ g_warning (_("Couldn't find pixmap file: %s"), filename); -+ return NULL; -+ } -+ -+ pixbuf = gdk_pixbuf_new_from_file (pathname, &error); -+ if (!pixbuf) -+ { -+ fprintf (stderr, "Failed to load pixbuf file: %s: %s\n", -+ pathname, error->message); -+ g_error_free (error); -+ } -+ g_free (pathname); -+ return pixbuf; -+} -+ -+/* This is used to set ATK action descriptions. */ -+void -+glade_set_atk_action_description (AtkAction *action, -+ const gchar *action_name, -+ const gchar *description) -+{ -+ gint n_actions, i; -+ -+ n_actions = atk_action_get_n_actions (action); -+ for (i = 0; i < n_actions; i++) -+ { -+ if (!strcmp (atk_action_get_name (action, i), action_name)) -+ atk_action_set_description (action, i, description); -+ } -+} -+ ---- aqbanking-1.6.2/src/frontends/g2banking/support.h.orig 1970-01-01 01:00:00.000000000 +0100 -+++ aqbanking-1.6.2/src/frontends/g2banking/support.h 2006-01-15 17:27:07.000000000 +0100 -@@ -0,0 +1,69 @@ -+/* -+ * DO NOT EDIT THIS FILE - it is generated by Glade. -+ */ -+ -+#ifdef HAVE_CONFIG_H -+# include -+#endif -+ -+#include -+ -+/* -+ * Standard gettext macros. -+ */ -+#ifdef ENABLE_NLS -+# include -+# undef _ -+# define _(String) dgettext (PACKAGE, String) -+# define Q_(String) g_strip_context ((String), gettext (String)) -+# ifdef gettext_noop -+# define N_(String) gettext_noop (String) -+# else -+# define N_(String) (String) -+# endif -+#else -+# define textdomain(String) (String) -+# define gettext(String) (String) -+# define dgettext(Domain,Message) (Message) -+# define dcgettext(Domain,Message,Type) (Message) -+# define bindtextdomain(Domain,Directory) (Domain) -+# define _(String) (String) -+# define Q_(String) g_strip_context ((String), (String)) -+# define N_(String) (String) -+#endif -+ -+ -+/* -+ * Public Functions. -+ */ -+ -+/* -+ * This function returns a widget in a component created by Glade. -+ * Call it with the toplevel widget in the component (i.e. a window/dialog), -+ * or alternatively any widget in the component, and the name of the widget -+ * you want returned. -+ */ -+GtkWidget* lookup_widget (GtkWidget *widget, -+ const gchar *widget_name); -+ -+ -+/* Use this function to set the directory containing installed pixmaps. */ -+void add_pixmap_directory (const gchar *directory); -+ -+ -+/* -+ * Private Functions. -+ */ -+ -+/* This is used to create the pixmaps used in the interface. */ -+GtkWidget* create_pixmap (GtkWidget *widget, -+ const gchar *filename); -+ -+/* This is used to create the pixbufs used in the interface. */ -+GdkPixbuf* create_pixbuf (const gchar *filename); -+ -+/* This is used to set ATK action descriptions. */ -+void glade_set_atk_action_description (AtkAction *action, -+ const gchar *action_name, -+ const gchar *description); -+ diff --git a/aqbanking.spec b/aqbanking.spec deleted file mode 100644 index c306069..0000000 --- a/aqbanking.spec +++ /dev/null @@ -1,684 +0,0 @@ -# -# TODO: -# - fix building without chipcard (aclocal fail) -# - add aqbanking-backend-aqnone-devel and aqbanking-backend-aqnone-static subpackages -# -# Conditional build: -%bcond_without chipcard # aqgeldkarte backend -%bcond_without gtk # g2banking frontend -%bcond_without kde # kbanking frontend -# -Summary: A library for online banking functions and financial data import/export -Summary(pl.UTF-8): Biblioteka do funkcji bankowych online oraz importu/eksportu danych finansowych -Name: aqbanking -Version: 2.3.2 -Release: 0.1 -License: GPL v2 -Group: Libraries -Source0: http://dl.sourceforge.net/aqbanking/%{name}-%{version}.tar.gz -# Source0-md5: ae34fc0c0e8f3b92728c4c6a36cc7697 -Patch0: %{name}-link.patch -Patch1: %{name}-nobash.patch -#Patch2: %{name}-libsuffix.patch -URL: http://www.aquamaniac.de/aqbanking/ -BuildRequires: autoconf >= 2.56 -BuildRequires: automake -BuildRequires: gettext-devel -BuildRequires: gwenhywfar-devel >= 2.3.0 -%if %{with gtk} -BuildRequires: gtk+2-devel >= 2.0.0 -BuildRequires: libglade2 >= 2.0.0 -%endif -%{?with_kde:BuildRequires: kdelibs-devel >= 3.0} -BuildRequires: ktoblzcheck-devel -%{?with_chipcard:BuildRequires: libchipcard3-devel >= 3.0.0} -BuildRequires: libofx-devel >= 0.8.0 -BuildRequires: libstdc++-devel -BuildRequires: libtool >= 2:1.5 -BuildRequires: python-devel >= 1:2.5 -BuildRequires: rpm-pythonprov -BuildRequires: qt-devel >= 1:3.0 -BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) - -%description -The intention of AqBanking is to provide a middle layer between the -program and the various Online Banking libraries (e.g. AqHBCI). The -first backend which is already supported is AqHBCI, a library which -implements a client for the German HBCI (Home Banking Computer -Interface) protocol. Additionally, Aqbanking provides various plugins -to simplify import and export of financial data. Currently there are -import plugins for the following formats: DTAUS (German financial -format), SWIFT (MT940 and MT942). - -%description -l pl.UTF-8 -Celem projektu AqBanking jest dostarczenie warstwy pośredniej między -programem a różnymi bibliotekami usług bankowych online (np. AqHBCI). -Pierwszy już obsługiwany backend to AqHBCI - biblioteka implementująca -klienta niemieckiego protokołu HBCI (Home Baking Computer Interface). -Ponadto Aqbanking dostarcza różne wtyczki upraszczające importowanie i -eksportowanie danych finansowych. Aktualnie istnieją wtyczki do -importu następujących formatów: DTAUS (niemiecki format finansowy), -SWIFT (MT940 oraz MT942). - -%package devel -Summary: Header files for AqBanking library -Summary(pl.UTF-8): Pliki nagłówkowe biblioteki AqBanking -Group: Development/Libraries -Requires: %{name} = %{version}-%{release} -Requires: gwenhywfar-devel >= 1.18.0 -# for libaqbankingpp only -#Requires: libstdc++-devel - -%description devel -Header files for AqBanking library. - -%description devel -l pl.UTF-8 -Pliki nagłówkowe biblioteki AqBanking. - -%package static -Summary: Static AqBanking libraries -Summary(pl.UTF-8): Statyczne biblioteki AqBanking -Group: Development/Libraries -Requires: %{name}-devel = %{version}-%{release} - -%description static -Static AqBanking libraries. - -%description static -l pl.UTF-8 -Statyczne biblioteki AqBanking. - -%package backend-aqnone -Summary: Aqnone backend for AqBanking library -Summary(pl.UTF-8): Backend Aqnone dla biblioteki AqBanking -Group: Libraries -Requires: %{name} = %{version}-%{release} - -%description backend-aqnone -Aqnone backend for AqBanking library. - -%description backend-aqnone -l pl.UTF-8 -Backend Aqnone dla biblioteki AqBanking. - -%package backend-aqdtaus -Summary: AqDTAUS backend for AqBanking library -Summary(pl.UTF-8): Backend AqDTAUS dla biblioteki AqBanking -Group: Libraries -Requires: %{name} = %{version}-%{release} - -%description backend-aqdtaus -AqDTAUS backend for AqBanking library. - -%description backend-aqdtaus -l pl.UTF-8 -Backend AqDTAUS dla biblioteki AqBanking. - -%package backend-aqdtaus-devel -Summary: Header files for AqDTAUS backend library -Summary(pl.UTF-8): Pliki nagłówkowe biblioteki backendu AqDTAUS -Group: Development/Libraries -Requires: %{name}-backend-aqdtaus = %{version}-%{release} -Requires: %{name}-devel = %{version}-%{release} - -%description backend-aqdtaus-devel -Header files for AqDTAUS backend library. - -%description backend-aqdtaus-devel -l pl.UTF-8 -Pliki nagłówkowe biblioteki backendu AqDTAUS. - -%package backend-aqdtaus-static -Summary: Static AqDTAUS backend library -Summary(pl.UTF-8): Statyczna biblioteka backendu AqDTAUS -Group: Development/Libraries -Requires: %{name}-backend-aqdtaus-devel = %{version}-%{release} - -%description backend-aqdtaus-static -Static AqDTAUS backend library. - -%description backend-aqdtaus-static -l pl.UTF-8 -Statyczna biblioteka backendu AqDTAUS. - -%package backend-aqgeldkarte -Summary: AqGeldKarte backend for AqBanking library -Summary(pl.UTF-8): Backend AqGeldKarte dla biblioteki AqBanking -Group: Libraries -Requires: %{name} = %{version}-%{release} - -%description backend-aqgeldkarte -AqGeldKarte backend for AqBanking library. - -%description backend-aqgeldkarte -l pl.UTF-8 -Backend AqGeldKarte dla biblioteki AqBanking. - -%package backend-aqgeldkarte-devel -Summary: Header files for AqGeldKarte backend library -Summary(pl.UTF-8): Pliki nagłówkowe biblioteki backendu AqGeldKarte -Group: Development/Libraries -Requires: %{name}-backend-aqgeldkarte = %{version}-%{release} -Requires: %{name}-devel = %{version}-%{release} -Requires: libchipcard2-devel >= 1.9.15 - -%description backend-aqgeldkarte-devel -Header files for AqGeldKarte backend library. - -%description backend-aqgeldkarte-devel -l pl.UTF-8 -Pliki nagłówkowe biblioteki backendu AqGeldKarte. - -%package backend-aqgeldkarte-static -Summary: Static AqGeldKarte backend library -Summary(pl.UTF-8): Statyczna biblioteka backendu AqGeldKarte -Group: Development/Libraries -Requires: %{name}-backend-aqgeldkarte-devel = %{version}-%{release} - -%description backend-aqgeldkarte-static -Static AqGeldKarte backend library. - -%description backend-aqgeldkarte-static -l pl.UTF-8 -Statyczna biblioteka backendu AqGeldKarte. - -%package backend-aqhbci -Summary: AqHBCI backend for AqBanking library -Summary(pl.UTF-8): Backend AqHBCI dla biblioteki AqBanking -Group: Libraries -Requires: %{name} = %{version}-%{release} - -%description backend-aqhbci -AqHBCI backend for AqBanking library. - -%description backend-aqhbci -l pl.UTF-8 -Backend AqHBCI dla biblioteki AqBanking. - -%package backend-aqhbci-devel -Summary: Header files for AqHBCI backend library -Summary(pl.UTF-8): Pliki nagłówkowe biblioteki backendu AqHBCI -Group: Development/Libraries -Requires: %{name}-backend-aqhbci = %{version}-%{release} -Requires: %{name}-devel = %{version}-%{release} - -%description backend-aqhbci-devel -Header files for AqHBCI backend library. - -%description backend-aqhbci-devel -l pl.UTF-8 -Pliki nagłówkowe biblioteki backendu AqHBCI. - -%package backend-aqhbci-static -Summary: Static AqHBCI backend library -Summary(pl.UTF-8): Statyczna biblioteka backendu AqHBCI -Group: Development/Libraries -Requires: %{name}-backend-aqhbci-devel = %{version}-%{release} - -%description backend-aqhbci-static -Static AqHBCI backend library. - -%description backend-aqhbci-static -l pl.UTF-8 -Statyczna biblioteka backendu AqHBCI. - -%package backend-aqofxconnect -Summary: AqOFXConnect backend for AqBanking library -Summary(pl.UTF-8): Backend AqOFXConnect dla biblioteki AqBanking -Group: Libraries -Requires: %{name} = %{version}-%{release} - -%description backend-aqofxconnect -AqOFXConnect backend for AqBanking library. - -%description backend-aqofxconnect -l pl.UTF-8 -Backend AqOFXConnect dla biblioteki AqBanking. - -%package backend-aqofxconnect-devel -Summary: Header files for AqOFXConnect backend library -Summary(pl.UTF-8): Pliki nagłówkowe biblioteki backendu AqOFXConnect -Group: Development/Libraries -Requires: %{name}-backend-aqofxconnect = %{version}-%{release} -Requires: libofx-devel >= 0.8.0 - -%description backend-aqofxconnect-devel -Header files for AqOFXConnect backend library. - -%description backend-aqofxconnect-devel -l pl.UTF-8 -Pliki nagłówkowe biblioteki backendu AqOFXConnect. - -%package backend-aqofxconnect-static -Summary: Static AqOFXConnect backend library -Summary(pl.UTF-8): Statyczna biblioteka backendu AqOFXConnect -Group: Development/Libraries -Requires: %{name}-backend-aqofxconnect-devel = %{version}-%{release} - -%description backend-aqofxconnect-static -Static AqOFXConnect backend library. - -%description backend-aqofxconnect-static -l pl.UTF-8 -Statyczna biblioteka backendu AqOFXConnect. - -%package frontend-cbanking -Summary: Cbanking frontend for AqBanking library -Summary(pl.UTF-8): Frontend Cbanking dla biblioteki AqBanking -Group: Libraries -Requires: %{name} = %{version}-%{release} - -%description frontend-cbanking -Cbanking frontend for AqBanking library. - -%description frontend-cbanking -l pl.UTF-8 -Frontend Cbanking dla biblioteki AqBanking. - -%package frontend-cbanking-devel -Summary: Header files for Cbanking frontend library -Summary(pl.UTF-8): Pliki nagłówkowe biblioteki frontendu Cbanking -Group: Development/Libraries -Requires: %{name}-devel = %{version}-%{release} -Requires: %{name}-frontend-cbanking = %{version}-%{release} - -%description frontend-cbanking-devel -Header files for Cbanking frontend library. - -%description frontend-cbanking-devel -l pl.UTF-8 -Pliki nagłówkowe biblioteki frontendu Cbanking. - -%package frontend-cbanking-static -Summary: Static Cbanking frontend library -Summary(pl.UTF-8): Statyczna biblioteka frontendu Cbanking -Group: Development/Libraries -Requires: %{name}-frontend-cbanking-devel = %{version}-%{release} - -%description frontend-cbanking-static -Static Cbanking frontend library. - -%description frontend-cbanking-static -l pl.UTF-8 -Statyczna biblioteka frontendu Cbanking. - -%package frontend-g2banking -Summary: G2Banking - GTK+ based frontend for AqBanking library -Summary(pl.UTF-8): G2Bbanking - oparty na GTK+ frontend dla biblioteki AqBanking -Group: Libraries -Requires: %{name} = %{version}-%{release} - -%description frontend-g2banking -G2Banking - GTK+ based frontend for AqBanking library. - -%description frontend-g2banking -l pl.UTF-8 -G2Bbanking - oparty na GTK+ frontend dla biblioteki AqBanking. - -%package frontend-g2banking-devel -Summary: Header files for G2Banking frontend library -Summary(pl.UTF-8): Pliki nagłówkowe biblioteki frontendu G2Banking -Group: Development/Libraries -Requires: %{name}-devel = %{version}-%{release} -Requires: %{name}-frontend-g2banking = %{version}-%{release} -Requires: gtk+2-devel >= 2.0.0 - -%description frontend-g2banking-devel -Header files for G2Banking frontend library. - -%description frontend-g2banking-devel -l pl.UTF-8 -Pliki nagłówkowe biblioteki frontendu G2Banking. - -%package frontend-g2banking-static -Summary: Static G2Banking frontend library -Summary(pl.UTF-8): Statyczna biblioteka frontendu G2Banking -Group: Development/Libraries -Requires: %{name}-frontend-g2banking-devel = %{version}-%{release} - -%description frontend-g2banking-static -Static G2Banking frontend library. - -%description frontend-g2banking-static -l pl.UTF-8 -Statyczna biblioteka frontendu G2Banking. - -%package frontend-kbanking -Summary: KBanking - KDE-based frontend for AqBanking library -Summary(pl.UTF-8): KBanking - oparty na KDE frontend dla biblioteki AqBanking -Group: Libraries -Requires: %{name}-frontend-qbanking = %{version}-%{release} - -%description frontend-kbanking -KBanking - KDE-based frontend for AqBanking library. - -%description frontend-kbanking -l pl.UTF-8 -KBanking - oparty na KDE frontend dla biblioteki AqBanking. - -%package frontend-kbanking-devel -Summary: Header files for KBanking frontend library -Summary(pl.UTF-8): Pliki nagłówkowe biblioteki frontendu KBanking -Group: Development/Libraries -Requires: %{name}-frontend-kbanking = %{version}-%{release} -Requires: %{name}-frontend-qbanking-devel = %{version}-%{release} -Requires: kdelibs-devel >= 3.0 - -%description frontend-kbanking-devel -Header files for KBanking frontend library. - -%description frontend-kbanking-devel -l pl.UTF-8 -Pliki nagłówkowe biblioteki frontendu KBanking. - -%package frontend-kbanking-static -Summary: Static KBanking frontend library -Summary(pl.UTF-8): Statyczna biblioteka frontendu KBanking -Group: Development/Libraries -Requires: %{name}-frontend-kbanking-devel = %{version}-%{release} - -%description frontend-kbanking-static -Static KBanking frontend library. - -%description frontend-kbanking-static -l pl.UTF-8 -Statyczna biblioteka frontendu KBanking. - -%package frontend-qbanking -Summary: QBanking - Qt-based frontend for AqBanking library -Summary(pl.UTF-8): QBanking - oparty na Qt frontend dla biblioteki AqBanking -Group: Libraries -Requires: %{name} = %{version}-%{release} - -%description frontend-qbanking -QBanking - Qt-based frontend for AqBanking library. - -%description frontend-qbanking -l pl.UTF-8 -QBanking - oparty na Qt frontend dla biblioteki AqBanking. - -%package frontend-qbanking-devel -Summary: Header files for QBanking frontend library -Summary(pl.UTF-8): Pliki nagłówkowe biblioteki frontendu QBanking -Group: Development/Libraries -Requires: %{name}-devel = %{version}-%{release} -Requires: %{name}-frontend-qbanking = %{version}-%{release} -Requires: qt-devel >= 1:3.0 - -%description frontend-qbanking-devel -Header files for QBanking frontend library. - -%description frontend-qbanking-devel -l pl.UTF-8 -Pliki nagłówkowe biblioteki frontendu QBanking. - -%package frontend-qbanking-static -Summary: Static QBanking frontend library -Summary(pl.UTF-8): Statyczna biblioteka frontendu QBanking -Group: Development/Libraries -Requires: %{name}-frontend-qbanking-devel = %{version}-%{release} - -%description frontend-qbanking-static -Static QBanking frontend library. - -%description frontend-qbanking-static -l pl.UTF-8 -Statyczna biblioteka frontendu QBanking. - -%package -n python-%{name} -Summary: Python binding for AqBanking library -Summary(pl.UTF-8): Wiązanie Pythona do biblioteki AqBanking -Group: Development/Languages/Python -Requires: %{name} = %{version}-%{release} -Requires: python-ctypes -%pyrequires_eq python-libs - -%description -n python-%{name} -Python binding for AqBanking library. - -%description -n python-%{name} -l pl.UTF-8 -Wiązanie Pythona do biblioteki AqBanking. - -%prep -%setup -q -#patch0 -p1 -%patch1 -p1 -#patch2 -p1 - -%build -%{__libtoolize} -%{__aclocal} -I m4 -%{__autoconf} -%{__autoheader} -%{__automake} -%configure \ - %{!?with_kde:--disable-kde3} \ - %{?with_kde:--with-kde3-libs=%{_libdir}} \ - --with-qt3-libs=%{_libdir} \ - --enable-libofx \ - --enable-python \ - --enable-static \ - --with-backends="aqhbci aqdtaus%{?with_chipcard: aqgeldkarte} aqofxconnect" \ - --with-frontends="cbanking%{?with_gtk: g2banking} qbanking%{?with_kde: kbanking}" - -%{__make} -j1 - -%install -rm -rf $RPM_BUILD_ROOT - -%{__make} install -j1 \ - DESTDIR=$RPM_BUILD_ROOT - -rm -f $RPM_BUILD_ROOT%{_libdir}/*/plugins/*/*/*.{la,a} -rm -f $RPM_BUILD_ROOT%{py_sitescriptdir}/aqbanking/*.py - -%find_lang %{name} - -%clean -rm -rf $RPM_BUILD_ROOT - -%post -p /sbin/ldconfig -%postun -p /sbin/ldconfig - -%post backend-aqdtaus -p /sbin/ldconfig -%postun backend-aqdtaus -p /sbin/ldconfig - -%post backend-aqgeldkarte -p /sbin/ldconfig -%postun backend-aqgeldkarte -p /sbin/ldconfig - -%post backend-aqhbci -p /sbin/ldconfig -%postun backend-aqhbci -p /sbin/ldconfig - -%post backend-aqofxconnect -p /sbin/ldconfig -%postun backend-aqofxconnect -p /sbin/ldconfig - -%post frontend-cbanking -p /sbin/ldconfig -%postun frontend-cbanking -p /sbin/ldconfig - -%post frontend-g2banking -p /sbin/ldconfig -%postun frontend-g2banking -p /sbin/ldconfig - -%post frontend-kbanking -p /sbin/ldconfig -%postun frontend-kbanking -p /sbin/ldconfig - -%post frontend-qbanking -p /sbin/ldconfig -%postun frontend-qbanking -p /sbin/ldconfig - -%files -f %{name}.lang -%defattr(644,root,root,755) -%doc ChangeLog ChangeLog README TODO -%attr(755,root,root) %{_libdir}/libaqbanking.so.*.*.* -%dir %{_libdir}/aqbanking -%dir %{_libdir}/aqbanking/plugins -%dir %{_libdir}/aqbanking/plugins/* -%dir %{_libdir}/aqbanking/plugins/*/bankinfo -%attr(755,root,root) %{_libdir}/aqbanking/plugins/*/bankinfo/*.so* -%{_libdir}/aqbanking/plugins/*/bankinfo/*.xml -%dir %{_libdir}/aqbanking/plugins/*/debugger -%dir %{_libdir}/aqbanking/plugins/*/frontends -%dir %{_libdir}/aqbanking/plugins/*/frontends/qbanking -%dir %{_libdir}/aqbanking/plugins/*/frontends/qbanking/cfgmodules -%dir %{_libdir}/aqbanking/plugins/*/imexporters -%attr(755,root,root) %{_libdir}/aqbanking/plugins/*/imexporters/*.so* -%{_libdir}/aqbanking/plugins/*/imexporters/*.xml -%dir %{_libdir}/aqbanking/plugins/*/providers -%dir %{_libdir}/aqbanking/plugins/*/wizards -%attr(755,root,root) %{_libdir}/gwenhywfar/plugins/*/dbio/*.so* -%{_libdir}/gwenhywfar/plugins/*/dbio/*.xml -%{_datadir}/aqbanking - -%files devel -%defattr(644,root,root,755) -%attr(755,root,root) %{_bindir}/aqbanking-config -%attr(755,root,root) %{_libdir}/libaqbanking.so -%{_libdir}/libaqbanking.la -%{_includedir}/aqbanking -%{_aclocaldir}/aqbanking.m4 -%{_pkgconfigdir}/aqbanking.pc - -%files static -%defattr(644,root,root,755) -%{_libdir}/libaqbanking.a - -%files backend-aqnone -%defattr(644,root,root,755) -%attr(755,root,root) %{_libdir}/libaqnone.so.*.*.* -%attr(755,root,root) %{_libdir}/aqbanking/plugins/*/providers/aqnone.so* -%{_libdir}/aqbanking/plugins/*/providers/aqnone.xml - -%files backend-aqdtaus -%defattr(644,root,root,755) -%attr(755,root,root) %{_libdir}/libaqdtaus.so.*.*.* -%attr(755,root,root) %{_libdir}/aqbanking/plugins/*/providers/aqdtaus.so* -%attr(755,root,root) %{_libdir}/aqbanking/plugins/*/frontends/qbanking/cfgmodules/aqdtaus.so* -%{_libdir}/aqbanking/plugins/*/providers/aqdtaus.xml - -%files backend-aqdtaus-devel -%defattr(644,root,root,755) -%attr(755,root,root) %{_bindir}/aqdtaus-config -%attr(755,root,root) %{_libdir}/libaqdtaus.so -%{_libdir}/libaqdtaus.la -%{_includedir}/aqdtaus -%{_aclocaldir}/aqdtaus.m4 - -%files backend-aqdtaus-static -%defattr(644,root,root,755) -%{_libdir}/libaqdtaus.a - -%if %{with chipcard} -%files backend-aqgeldkarte -%defattr(644,root,root,755) -%attr(755,root,root) %{_libdir}/libaqgeldkarte.so.*.*.* -%attr(755,root,root) %{_libdir}/aqbanking/plugins/*/providers/aqgeldkarte.so* -%attr(755,root,root) %{_libdir}/aqbanking/plugins/*/frontends/qbanking/cfgmodules/aqgeldkarte.so* -%{_libdir}/aqbanking/plugins/*/providers/aqgeldkarte.xml - -%files backend-aqgeldkarte-devel -%defattr(644,root,root,755) -%attr(755,root,root) %{_bindir}/aqgeldkarte-config -%attr(755,root,root) %{_libdir}/libaqgeldkarte.so -%{_libdir}/libaqgeldkarte.la -%{_includedir}/aqgeldkarte -%{_aclocaldir}/aqgeldkarte.m4 - -%files backend-aqgeldkarte-static -%defattr(644,root,root,755) -%{_libdir}/libaqgeldkarte.a -%endif - -%files backend-aqhbci -%defattr(644,root,root,755) -%attr(755,root,root) %{_bindir}/aqhbci-tool -%attr(755,root,root) %{_bindir}/hbcixml2 -%attr(755,root,root) %{_libdir}/libaqhbci.so.*.*.* -%dir %{_libdir}/aqbanking/plugins/*/debugger/aqhbci -%attr(755,root,root) %{_libdir}/aqbanking/plugins/*/debugger/aqhbci/aqhbci-qt3-debug -%{_libdir}/aqbanking/plugins/*/debugger/aqhbci/qt_debug.xml -%attr(755,root,root) %{_libdir}/aqbanking/plugins/*/providers/aqhbci.so* -%attr(755,root,root) %{_libdir}/aqbanking/plugins/*/frontends/qbanking/cfgmodules/aqhbci.so* -%{_libdir}/aqbanking/plugins/*/providers/aqhbci.xml -%attr(755,root,root) %{_libdir}/gwenhywfar/plugins/*/crypttoken/pintan.so -%{_libdir}/gwenhywfar/plugins/*/crypttoken/pintan.xml -%{_datadir}/aqhbci - -%files backend-aqhbci-devel -%defattr(644,root,root,755) -%attr(755,root,root) %{_bindir}/aqhbci-config -%attr(755,root,root) %{_libdir}/libaqhbci.so -%{_libdir}/libaqhbci.la -%{_includedir}/aqhbci -%{_aclocaldir}/aqhbci.m4 - -%files backend-aqhbci-static -%defattr(644,root,root,755) -%{_libdir}/libaqhbci.a - -%files backend-aqofxconnect -%defattr(644,root,root,755) -%attr(755,root,root) %{_libdir}/libaqofxconnect.so.*.*.* -%attr(755,root,root) %{_libdir}/aqbanking/plugins/*/providers/aqofxconnect.so* -%attr(755,root,root) %{_libdir}/aqbanking/plugins/*/frontends/qbanking/cfgmodules/aqofxconnect.so* -%{_libdir}/aqbanking/plugins/*/providers/aqofxconnect.xml - -%files backend-aqofxconnect-devel -%defattr(644,root,root,755) -%attr(755,root,root) %{_bindir}/aqofxconnect-config -%attr(755,root,root) %{_libdir}/libaqofxconnect.so -%{_libdir}/libaqofxconnect.la -%{_includedir}/aqofxconnect -%{_aclocaldir}/aqofxconnect.m4 - -%files backend-aqofxconnect-static -%defattr(644,root,root,755) -%{_libdir}/libaqofxconnect.a - -%files frontend-cbanking -%defattr(644,root,root,755) -%attr(755,root,root) %{_bindir}/cbanking-config -%attr(755,root,root) %{_bindir}/aqbanking-tool -%attr(755,root,root) %{_libdir}/libcbanking.so.*.*.* - -%files frontend-cbanking-devel -%defattr(644,root,root,755) -%attr(755,root,root) %{_libdir}/libcbanking.so -%{_libdir}/libcbanking.la -%{_includedir}/cbanking -%{_aclocaldir}/cbanking.m4 - -%files frontend-cbanking-static -%defattr(644,root,root,755) -%{_libdir}/libcbanking.a - -%if %{with gtk} -%files frontend-g2banking -%defattr(644,root,root,755) -%attr(755,root,root) %{_libdir}/libg2banking.so.*.*.* - -%files frontend-g2banking-devel -%defattr(644,root,root,755) -%attr(755,root,root) %{_bindir}/g2banking-config -%attr(755,root,root) %{_libdir}/libg2banking.so -%{_libdir}/libg2banking.la -%{_includedir}/g2banking -%{_aclocaldir}/g2banking.m4 - -%files frontend-g2banking-static -%defattr(644,root,root,755) -%{_libdir}/libg2banking.a -%endif - -%if %{with kde} -%files frontend-kbanking -%defattr(644,root,root,755) -%attr(755,root,root) %{_libdir}/libkbanking.so.*.*.* - -%files frontend-kbanking-devel -%defattr(644,root,root,755) -%attr(755,root,root) %{_bindir}/kbanking-config -%attr(755,root,root) %{_libdir}/libkbanking.so -%{_libdir}/libkbanking.la -%{_includedir}/kbanking -%{_aclocaldir}/kbanking.m4 - -%files frontend-kbanking-static -%defattr(644,root,root,755) -%{_libdir}/libkbanking.a -%endif - -%files frontend-qbanking -%defattr(644,root,root,755) -%attr(755,root,root) %{_bindir}/qb-help -%attr(755,root,root) %{_libdir}/libqbanking.so.*.*.* -%attr(755,root,root) %{_libdir}/aqbanking/plugins/*/wizards/qt3-wizard -%{_libdir}/aqbanking/plugins/*/wizards/qt3_wizard.xml - -%files frontend-qbanking-devel -%defattr(644,root,root,755) -%attr(755,root,root) %{_bindir}/qbanking-config -%attr(755,root,root) %{_libdir}/libqbanking.so -%{_libdir}/libqbanking.la -%{_includedir}/qbanking -%{_aclocaldir}/qbanking.m4 - -%files frontend-qbanking-static -%defattr(644,root,root,755) -%{_libdir}/libqbanking.a - -%files -n python-%{name} -%defattr(644,root,root,755) -%dir %{py_sitescriptdir}/aqbanking -%{py_sitescriptdir}/aqbanking/*.py[co] -- 2.44.0