summaryrefslogtreecommitdiff
path: root/net/gnomba/files
diff options
context:
space:
mode:
Diffstat (limited to 'net/gnomba/files')
-rw-r--r--net/gnomba/files/patch-ab84
-rw-r--r--net/gnomba/files/patch-samba-Makefile21
-rw-r--r--net/gnomba/files/patch-samba-include-config.h51
3 files changed, 0 insertions, 156 deletions
diff --git a/net/gnomba/files/patch-ab b/net/gnomba/files/patch-ab
deleted file mode 100644
index 1f11707005a0..000000000000
--- a/net/gnomba/files/patch-ab
+++ /dev/null
@@ -1,84 +0,0 @@
---- src/properties.c.orig Sat Mar 25 22:15:19 2000
-+++ src/properties.c Sat Mar 25 22:15:42 2000
-@@ -158,19 +158,19 @@
- /* set net font property */
- if (strcmp(TNetFont, NetFont)) {
- nodeStyle = gtk_style_copy(gtk_widget_get_style(GTK_WIDGET(tree)));
-- nodeStyle->font = gdk_font_load(NetFont);
-+ nodeStyle->font = gdk_fontset_load(NetFont);
- gtk_ctree_node_set_cell_style(GTK_CTREE(tree), GTK_CTREE_NODE(node), 0, nodeStyle);
- }
- /* set comment font property */
- if (strcmp(TCommentFont, CommentFont)) {
- nodeStyle = gtk_style_copy(gtk_widget_get_style(GTK_WIDGET(tree)));
-- nodeStyle->font = gdk_font_load(CommentFont);
-+ nodeStyle->font = gdk_fontset_load(CommentFont);
- gtk_ctree_node_set_cell_style(GTK_CTREE(tree), GTK_CTREE_NODE(node), 1, nodeStyle);
- }
- /* set mount font property */
- if (strcmp(TMountFont, MountFont)) {
- nodeStyle = gtk_style_copy(gtk_widget_get_style(GTK_WIDGET(tree)));
-- nodeStyle->font = gdk_font_load(MountFont);
-+ nodeStyle->font = gdk_fontset_load(MountFont);
- gtk_ctree_node_set_cell_style(GTK_CTREE(tree), GTK_CTREE_NODE(node), 2, nodeStyle);
- }
- }
---- src/smbwrap.c.orig Sun Jun 16 13:10:26 2002
-+++ src/smbwrap.c Sun Jun 16 13:12:44 2002
-@@ -246,17 +246,17 @@
-
- /* set net font */
- nodeStyle = gtk_style_copy(gtk_widget_get_style(GTK_WIDGET(workgrouplist)));
-- nodeStyle->font = gdk_font_load(NetFont);
-+ nodeStyle->font = gdk_fontset_load(NetFont);
- gtk_ctree_node_set_cell_style(GTK_CTREE(workgrouplist), GTK_CTREE_NODE(node), 0, nodeStyle);
-
- /* set comment font */
- nodeStyle = gtk_style_copy(gtk_widget_get_style(GTK_WIDGET(workgrouplist)));
-- nodeStyle->font = gdk_font_load(CommentFont);
-+ nodeStyle->font = gdk_fontset_load(CommentFont);
- gtk_ctree_node_set_cell_style(GTK_CTREE(workgrouplist), GTK_CTREE_NODE(node), 1, nodeStyle);
-
- /* set mount font */
- nodeStyle = gtk_style_copy(gtk_widget_get_style(GTK_WIDGET(workgrouplist)));
-- nodeStyle->font = gdk_font_load(MountFont);
-+ nodeStyle->font = gdk_fontset_load(MountFont);
- gtk_ctree_node_set_cell_style(GTK_CTREE(workgrouplist), GTK_CTREE_NODE(node), 2, nodeStyle);
-
- mn = copyMN(currnode);
-@@ -629,17 +629,17 @@
-
- /* set net font */
- nodeStyle1 = gtk_style_copy( gtk_widget_get_style( GTK_WIDGET(workgrouplist) ) );
-- nodeStyle1->font = gdk_font_load( NetFont );
-+ nodeStyle1->font = gdk_fontset_load( NetFont );
- gtk_ctree_node_set_cell_style( GTK_CTREE(workgrouplist), GTK_CTREE_NODE(rootnode), 0, nodeStyle1 );
-
- /* set comment font */
- nodeStyle2 = gtk_style_copy( gtk_widget_get_style( GTK_WIDGET(workgrouplist) ) );
-- nodeStyle2->font = gdk_font_load( CommentFont );
-+ nodeStyle2->font = gdk_fontset_load( CommentFont );
- gtk_ctree_node_set_cell_style( GTK_CTREE(workgrouplist), GTK_CTREE_NODE(rootnode), 1, nodeStyle2 );
-
- /* set mount font */
- nodeStyle3 = gtk_style_copy( gtk_widget_get_style( GTK_WIDGET(workgrouplist) ) );
-- nodeStyle3->font = gdk_font_load( MountFont );
-+ nodeStyle3->font = gdk_fontset_load( MountFont );
- gtk_ctree_node_set_cell_style( GTK_CTREE(workgrouplist), GTK_CTREE_NODE(rootnode), 2, nodeStyle3 );
-
-
---- src/gnomba.c.orig Sun Jun 16 13:09:45 2002
-+++ src/gnomba.c Sun Jun 16 13:10:08 2002
-@@ -133,9 +133,9 @@
- DefaultCommand = gnome_config_get_string("Options/DefaultCommand=gmc");
- SilentlyCreateMountPoint = gnome_config_get_int ("Options/SilentlyCreateMountPoint=0");
- DontRemoveCreatedMount = gnome_config_get_int ("Options/DontRemoveCreatedMount=0");
-- NetFont = gnome_config_get_string("Options/NetFont=-adobe-helvetica-medium-r-normal-*-*-120-*-*-p-*-iso8859-1");
-- CommentFont = gnome_config_get_string("Options/CommentFont=-adobe-helvetica-medium-r-normal-*-*-120-*-*-p-*-iso8859-1");
-- MountFont = gnome_config_get_string("Options/MountFont=-adobe-helvetica-medium-r-normal-*-*-120-*-*-p-*-iso8859-1");
-+ NetFont = gnome_config_get_string("Options/NetFont=-adobe-helvetica-medium-r-normal-*-*-120-*-*-p-*-iso8859-1,*");
-+ CommentFont = gnome_config_get_string("Options/CommentFont=-adobe-helvetica-medium-r-normal-*-*-120-*-*-p-*-iso8859-1,*");
-+ MountFont = gnome_config_get_string("Options/MountFont=-adobe-helvetica-medium-r-normal-*-*-120-*-*-p-*-iso8859-1,*");
- gnome_config_pop_prefix();
-
- /*create the containers*/
diff --git a/net/gnomba/files/patch-samba-Makefile b/net/gnomba/files/patch-samba-Makefile
deleted file mode 100644
index abccde09040e..000000000000
--- a/net/gnomba/files/patch-samba-Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
---- samba/Makefile.orig Sun Jun 16 13:32:01 2002
-+++ samba/Makefile Sun Jun 16 13:34:56 2002
-@@ -1,13 +1,13 @@
- #this should default to something and then be set by configure switches
--prefix=/usr/local/samba
-+prefix=${LOCALBASE}
- exec_prefix=${prefix}
--LIBDIR = ${exec_prefix}/lib
-+LIBDIR = ${exec_prefix}/etc
- LMHOSTSFILE = $(LIBDIR)/lmhosts
- CODEPAGEDIR = $(LIBDIR)/codepages
--SMBRUN = $(BINDIR)/smbrun
-+SMBRUN = $(prefix)/bin/smbrun
- DRIVERFILE = $(LIBDIR)/printers.def
--SMB_PASSWD_FILE = $(PRIVATEDIR)/smbpasswd
--PASSWD_PROGRAM = /bin/passwd
-+SMB_PASSWD_FILE = $(prefix)/private/smbpasswd
-+PASSWD_PROGRAM = /usr/bin/passwd
-
-
- LIB_OBJ = lib/charcnv.o lib/charset.o lib/debug.o \
diff --git a/net/gnomba/files/patch-samba-include-config.h b/net/gnomba/files/patch-samba-include-config.h
deleted file mode 100644
index 51401efe1f14..000000000000
--- a/net/gnomba/files/patch-samba-include-config.h
+++ /dev/null
@@ -1,51 +0,0 @@
---- samba/include/config.h.orig Fri Jun 14 00:44:17 2002
-+++ samba/include/config.h Fri Jun 14 00:42:22 2002
-@@ -106,7 +106,7 @@
- /* #undef FTRUNCATE_NEEDS_ROOT */
- /* #undef HAVE_TRAPDOOR_UID */
- /* #undef HAVE_ROOT */
--/* #undef HAVE_UNION_SEMUN */
-+#define HAVE_UNION_SEMUN 1
- #define HAVE_GETTIMEOFDAY_TZ 1
- /* #undef HAVE_SOCK_SIN_LEN */
- /* #undef STAT_READ_FILSYS */
-@@ -745,7 +745,7 @@
- #define HAVE_SECURITY_PAM_APPL_H 1
-
- /* Define if you have the <shadow.h> header file. */
--#define HAVE_SHADOW_H 1
-+#undef HAVE_SHADOW_H
-
- /* Define if you have the <stdarg.h> header file. */
- #define HAVE_STDARG_H 1
-@@ -760,7 +760,7 @@
- #define HAVE_STRINGS_H 1
-
- /* Define if you have the <stropts.h> header file. */
--#define HAVE_STROPTS_H 1
-+#undef HAVE_STROPTS_H
-
- /* Define if you have the <sys/acl.h> header file. */
- /* #undef HAVE_SYS_ACL_H */
-@@ -829,10 +829,10 @@
- /* #undef HAVE_SYS_SOCKIO_H */
-
- /* Define if you have the <sys/statfs.h> header file. */
--#define HAVE_SYS_STATFS_H 1
-+#undef HAVE_SYS_STATFS_H
-
- /* Define if you have the <sys/statvfs.h> header file. */
--#define HAVE_SYS_STATVFS_H 1
-+#undef HAVE_SYS_STATVFS_H
-
- /* Define if you have the <sys/syscall.h> header file. */
- #define HAVE_SYS_SYSCALL_H 1
-@@ -847,7 +847,7 @@
- #define HAVE_SYS_UNISTD_H 1
-
- /* Define if you have the <sys/vfs.h> header file. */
--#define HAVE_SYS_VFS_H 1
-+#undef HAVE_SYS_VFS_H
-
- /* Define if you have the <sys/wait.h> header file. */
- #define HAVE_SYS_WAIT_H 1