diff options
author | nakai <nakai@FreeBSD.org> | 2001-05-05 23:56:25 +0000 |
---|---|---|
committer | nakai <nakai@FreeBSD.org> | 2001-05-05 23:56:25 +0000 |
commit | a4d268b54805f19e145e1f554296beff64d123fa (patch) | |
tree | e4acd22e0f33be149dc0a9eb1eb15ea36022e52b /x11-wm | |
parent | fa2baa511c68d2869132ca8368cb6cb6c1ade89f (diff) | |
download | FreeBSD-ports-a4d268b54805f19e145e1f554296beff64d123fa.zip FreeBSD-ports-a4d268b54805f19e145e1f554296beff64d123fa.tar.gz |
Update to 3.8.1
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/xfce/Makefile | 3 | ||||
-rw-r--r-- | x11-wm/xfce/distinfo | 2 | ||||
-rw-r--r-- | x11-wm/xfce/files/patch-ag | 8 | ||||
-rw-r--r-- | x11-wm/xfce/files/patch-aj | 37 | ||||
-rw-r--r-- | x11-wm/xfce/files/patch-ak | 11 | ||||
-rw-r--r-- | x11-wm/xfce/pkg-plist | 18 | ||||
-rw-r--r-- | x11-wm/xfce4/Makefile | 3 | ||||
-rw-r--r-- | x11-wm/xfce4/distinfo | 2 | ||||
-rw-r--r-- | x11-wm/xfce4/files/patch-ag | 8 | ||||
-rw-r--r-- | x11-wm/xfce4/files/patch-aj | 37 | ||||
-rw-r--r-- | x11-wm/xfce4/files/patch-ak | 11 | ||||
-rw-r--r-- | x11-wm/xfce4/pkg-plist | 18 |
12 files changed, 56 insertions, 102 deletions
diff --git a/x11-wm/xfce/Makefile b/x11-wm/xfce/Makefile index 0e6a16f..628463c 100644 --- a/x11-wm/xfce/Makefile +++ b/x11-wm/xfce/Makefile @@ -6,8 +6,7 @@ # PORTNAME= xfce -PORTVERSION= 3.7.2 -PORTREVISION= 1 +PORTVERSION= 3.8.1 CATEGORIES= x11-wm MASTER_SITES= http://www.xfce.org/archive/ diff --git a/x11-wm/xfce/distinfo b/x11-wm/xfce/distinfo index ca686a3..aa44306 100644 --- a/x11-wm/xfce/distinfo +++ b/x11-wm/xfce/distinfo @@ -1 +1 @@ -MD5 (xfce-3.7.2.tar.gz) = bfa75eebe26852f7377c639e8abcbe4f +MD5 (xfce-3.8.1.tar.gz) = 6cc4a90a0d5e45b8f4e3ba06a08981aa diff --git a/x11-wm/xfce/files/patch-ag b/x11-wm/xfce/files/patch-ag index ab2b757..46130dc 100644 --- a/x11-wm/xfce/files/patch-ag +++ b/x11-wm/xfce/files/patch-ag @@ -1,11 +1,11 @@ ---- libs/configure.h.orig Tue Sep 5 02:26:09 2000 -+++ libs/configure.h Wed Feb 7 00:53:01 2001 +--- libs/configure.h.orig Sat Apr 14 04:55:30 2001 ++++ libs/configure.h Sun May 6 08:03:18 2001 @@ -22,7 +22,7 @@ #define CLOSE_STRING4 "quit" /* #ifdef __alpha */ --#if defined(__alpha) && !defined(linux) -+#if defined(__alpha) && !(defined(linux) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__)) +-#if defined(__alpha) && !defined(linux) && !defined(__DECC) ++#if defined(__alpha) && !(defined(linux) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)) && !defined(__DECC) #define NEEDS_ALPHA_HEADER #undef BROKEN_SUN_HEADERS #endif /* (__alpha) */ diff --git a/x11-wm/xfce/files/patch-aj b/x11-wm/xfce/files/patch-aj deleted file mode 100644 index c1dedfc..0000000 --- a/x11-wm/xfce/files/patch-aj +++ /dev/null @@ -1,37 +0,0 @@ ---- xfwm/session.c.orig Wed Jan 31 04:50:16 2001 -+++ xfwm/session.c Tue Feb 6 04:56:10 2001 -@@ -566,8 +566,10 @@ - callback_save_yourself2 (SmcConn sm_conn, SmPointer client_data) - { - char *path = NULL; -- char *filename = NULL; -- FILE *f = NULL; -+ char *filename; -+ FILE *f; -+ int fd; -+ - Bool success = True; - struct passwd *pwd; - -@@ -578,16 +580,18 @@ - path = pwd->pw_dir; - } - -- filename = tempnam (path, ".fs-"); -+ sprintf (filename, "path/.fs-XXXXXXXX"); -+ fd = mkstemp (filename); - - if (Scr.Options & SessionMgt) - { -- f = fopen (filename, "w"); -+ f = fdopen (fd, "w"); - success = save_session_state (sm_conn, filename, f); - fclose (f); - } -- if (!success) -+ if (!success || fd < 0) - xfwm_msg (WARN, "SaveSession", "Can't save session\n"); -+ close (fd); - /* also save session for builtin session mgt, so user will get - * back to his environmnent even if he doesn't use ICE - */ diff --git a/x11-wm/xfce/files/patch-ak b/x11-wm/xfce/files/patch-ak new file mode 100644 index 0000000..3591d09 --- /dev/null +++ b/x11-wm/xfce/files/patch-ak @@ -0,0 +1,11 @@ +--- xfce/setup.c.orig Sun May 6 08:51:24 2001 ++++ xfce/setup.c Sun May 6 08:51:34 2001 +@@ -132,7 +132,7 @@ + list = g_list_append(list, "xfce"); + + /* Try to find the location of gtk engines */ +- if ((pdata=popen("gtk-config --prefix","r")) != NULL ++ if ((pdata=popen("gtk12-config --prefix","r")) != NULL + && fgets(buffer, sizeof(buffer), pdata) != NULL) + { + char *path; diff --git a/x11-wm/xfce/pkg-plist b/x11-wm/xfce/pkg-plist index f525b5a..d1b867a 100644 --- a/x11-wm/xfce/pkg-plist +++ b/x11-wm/xfce/pkg-plist @@ -20,6 +20,7 @@ bin/xfpager bin/xfplay bin/xfprint bin/xfrun +bin/xfsamba bin/xfsound bin/xfterm bin/xftrash @@ -170,6 +171,7 @@ share/xfce/backdrops/Wood2.xpm share/xfce/backdrops/Worm.xpm share/xfce/backdrops/Xfce.jpg share/xfce/backdrops/Xfce.xpm +share/xfce/backdrops/Xfcelogo.xpm share/xfce/backdrops/Xfcemice.jpg share/xfce/fonts/cursor2.pcf share/xfce/fonts/fonts.dir @@ -336,6 +338,7 @@ share/xfce/palettes/HiContrast share/xfce/palettes/HiTech share/xfce/palettes/HiTech2 share/xfce/palettes/Iceland +share/xfce/palettes/Jazza share/xfce/palettes/Liquid share/xfce/palettes/Liquid2 share/xfce/palettes/Mauve @@ -368,6 +371,7 @@ share/xfce/palettes/TBlue share/xfce/palettes/Teal share/xfce/palettes/Tiny share/xfce/palettes/Tommy +share/xfce/palettes/Tradition share/xfce/palettes/Troica share/xfce/palettes/Typhoon share/xfce/palettes/Win @@ -447,12 +451,12 @@ share/xfce/textures/oldwood.xpm share/xfce/textures/paper.xpm share/xfce/textures/silver.xpm share/xfce/textures/stripe.xpm -@dirrm share/xfce/textures -@dirrm share/xfce/sounds -@dirrm share/xfce/palettes -@dirrm share/xfce/icons -@dirrm share/xfce/help -@dirrm share/xfce/fonts +@dirrm etc/xfce @dirrm share/xfce/backdrops +@dirrm share/xfce/fonts +@dirrm share/xfce/help +@dirrm share/xfce/icons +@dirrm share/xfce/palettes +@dirrm share/xfce/sounds +@dirrm share/xfce/textures @dirrm share/xfce -@dirrm etc/xfce diff --git a/x11-wm/xfce4/Makefile b/x11-wm/xfce4/Makefile index 0e6a16f..628463c 100644 --- a/x11-wm/xfce4/Makefile +++ b/x11-wm/xfce4/Makefile @@ -6,8 +6,7 @@ # PORTNAME= xfce -PORTVERSION= 3.7.2 -PORTREVISION= 1 +PORTVERSION= 3.8.1 CATEGORIES= x11-wm MASTER_SITES= http://www.xfce.org/archive/ diff --git a/x11-wm/xfce4/distinfo b/x11-wm/xfce4/distinfo index ca686a3..aa44306 100644 --- a/x11-wm/xfce4/distinfo +++ b/x11-wm/xfce4/distinfo @@ -1 +1 @@ -MD5 (xfce-3.7.2.tar.gz) = bfa75eebe26852f7377c639e8abcbe4f +MD5 (xfce-3.8.1.tar.gz) = 6cc4a90a0d5e45b8f4e3ba06a08981aa diff --git a/x11-wm/xfce4/files/patch-ag b/x11-wm/xfce4/files/patch-ag index ab2b757..46130dc 100644 --- a/x11-wm/xfce4/files/patch-ag +++ b/x11-wm/xfce4/files/patch-ag @@ -1,11 +1,11 @@ ---- libs/configure.h.orig Tue Sep 5 02:26:09 2000 -+++ libs/configure.h Wed Feb 7 00:53:01 2001 +--- libs/configure.h.orig Sat Apr 14 04:55:30 2001 ++++ libs/configure.h Sun May 6 08:03:18 2001 @@ -22,7 +22,7 @@ #define CLOSE_STRING4 "quit" /* #ifdef __alpha */ --#if defined(__alpha) && !defined(linux) -+#if defined(__alpha) && !(defined(linux) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__)) +-#if defined(__alpha) && !defined(linux) && !defined(__DECC) ++#if defined(__alpha) && !(defined(linux) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)) && !defined(__DECC) #define NEEDS_ALPHA_HEADER #undef BROKEN_SUN_HEADERS #endif /* (__alpha) */ diff --git a/x11-wm/xfce4/files/patch-aj b/x11-wm/xfce4/files/patch-aj deleted file mode 100644 index c1dedfc..0000000 --- a/x11-wm/xfce4/files/patch-aj +++ /dev/null @@ -1,37 +0,0 @@ ---- xfwm/session.c.orig Wed Jan 31 04:50:16 2001 -+++ xfwm/session.c Tue Feb 6 04:56:10 2001 -@@ -566,8 +566,10 @@ - callback_save_yourself2 (SmcConn sm_conn, SmPointer client_data) - { - char *path = NULL; -- char *filename = NULL; -- FILE *f = NULL; -+ char *filename; -+ FILE *f; -+ int fd; -+ - Bool success = True; - struct passwd *pwd; - -@@ -578,16 +580,18 @@ - path = pwd->pw_dir; - } - -- filename = tempnam (path, ".fs-"); -+ sprintf (filename, "path/.fs-XXXXXXXX"); -+ fd = mkstemp (filename); - - if (Scr.Options & SessionMgt) - { -- f = fopen (filename, "w"); -+ f = fdopen (fd, "w"); - success = save_session_state (sm_conn, filename, f); - fclose (f); - } -- if (!success) -+ if (!success || fd < 0) - xfwm_msg (WARN, "SaveSession", "Can't save session\n"); -+ close (fd); - /* also save session for builtin session mgt, so user will get - * back to his environmnent even if he doesn't use ICE - */ diff --git a/x11-wm/xfce4/files/patch-ak b/x11-wm/xfce4/files/patch-ak new file mode 100644 index 0000000..3591d09 --- /dev/null +++ b/x11-wm/xfce4/files/patch-ak @@ -0,0 +1,11 @@ +--- xfce/setup.c.orig Sun May 6 08:51:24 2001 ++++ xfce/setup.c Sun May 6 08:51:34 2001 +@@ -132,7 +132,7 @@ + list = g_list_append(list, "xfce"); + + /* Try to find the location of gtk engines */ +- if ((pdata=popen("gtk-config --prefix","r")) != NULL ++ if ((pdata=popen("gtk12-config --prefix","r")) != NULL + && fgets(buffer, sizeof(buffer), pdata) != NULL) + { + char *path; diff --git a/x11-wm/xfce4/pkg-plist b/x11-wm/xfce4/pkg-plist index f525b5a..d1b867a 100644 --- a/x11-wm/xfce4/pkg-plist +++ b/x11-wm/xfce4/pkg-plist @@ -20,6 +20,7 @@ bin/xfpager bin/xfplay bin/xfprint bin/xfrun +bin/xfsamba bin/xfsound bin/xfterm bin/xftrash @@ -170,6 +171,7 @@ share/xfce/backdrops/Wood2.xpm share/xfce/backdrops/Worm.xpm share/xfce/backdrops/Xfce.jpg share/xfce/backdrops/Xfce.xpm +share/xfce/backdrops/Xfcelogo.xpm share/xfce/backdrops/Xfcemice.jpg share/xfce/fonts/cursor2.pcf share/xfce/fonts/fonts.dir @@ -336,6 +338,7 @@ share/xfce/palettes/HiContrast share/xfce/palettes/HiTech share/xfce/palettes/HiTech2 share/xfce/palettes/Iceland +share/xfce/palettes/Jazza share/xfce/palettes/Liquid share/xfce/palettes/Liquid2 share/xfce/palettes/Mauve @@ -368,6 +371,7 @@ share/xfce/palettes/TBlue share/xfce/palettes/Teal share/xfce/palettes/Tiny share/xfce/palettes/Tommy +share/xfce/palettes/Tradition share/xfce/palettes/Troica share/xfce/palettes/Typhoon share/xfce/palettes/Win @@ -447,12 +451,12 @@ share/xfce/textures/oldwood.xpm share/xfce/textures/paper.xpm share/xfce/textures/silver.xpm share/xfce/textures/stripe.xpm -@dirrm share/xfce/textures -@dirrm share/xfce/sounds -@dirrm share/xfce/palettes -@dirrm share/xfce/icons -@dirrm share/xfce/help -@dirrm share/xfce/fonts +@dirrm etc/xfce @dirrm share/xfce/backdrops +@dirrm share/xfce/fonts +@dirrm share/xfce/help +@dirrm share/xfce/icons +@dirrm share/xfce/palettes +@dirrm share/xfce/sounds +@dirrm share/xfce/textures @dirrm share/xfce -@dirrm etc/xfce |