diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-06-10 10:05:41 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-06-10 10:05:41 +0800 |
commit | bb544fa6f1f773e3a44a791a4cca87f32a2eff34 (patch) | |
tree | eea94cef9c5f8b34c0207e5bbceb2f01feef1035 /x11/gnome-screensaver/files | |
parent | bd01a923a0ec719a6977bdc2075802f31203547b (diff) | |
download | marcuscom-ports-bb544fa6f1f773e3a44a791a4cca87f32a2eff34.tar marcuscom-ports-bb544fa6f1f773e3a44a791a4cca87f32a2eff34.tar.gz marcuscom-ports-bb544fa6f1f773e3a44a791a4cca87f32a2eff34.tar.bz2 marcuscom-ports-bb544fa6f1f773e3a44a791a4cca87f32a2eff34.tar.lz marcuscom-ports-bb544fa6f1f773e3a44a791a4cca87f32a2eff34.tar.xz marcuscom-ports-bb544fa6f1f773e3a44a791a4cca87f32a2eff34.tar.zst marcuscom-ports-bb544fa6f1f773e3a44a791a4cca87f32a2eff34.zip |
Add gnome-screensaver, a simple screen saver and locker for the GNOME
desktop. So far, there aren't many screensaver modules, but this
is poised to take over as the default GNOME screensaver.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@4058 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11/gnome-screensaver/files')
-rw-r--r-- | x11/gnome-screensaver/files/patch-configure | 20 | ||||
-rw-r--r-- | x11/gnome-screensaver/files/patch-src_gs-job.c | 12 |
2 files changed, 32 insertions, 0 deletions
diff --git a/x11/gnome-screensaver/files/patch-configure b/x11/gnome-screensaver/files/patch-configure new file mode 100644 index 000000000..5a390baac --- /dev/null +++ b/x11/gnome-screensaver/files/patch-configure @@ -0,0 +1,20 @@ +--- configure.orig Wed Jun 8 23:43:39 2005 ++++ configure Wed Jun 8 23:44:22 2005 +@@ -23792,7 +23792,7 @@ + gdmconfigfile="$withval" + fi; + +-if test "x$gdmconfigfile" == "x" -o "x$gdmconfigfile" == "xno"; then ++if test "x$gdmconfigfile" = "x" -o "x$gdmconfigfile" = "xno"; then + echo "$as_me:$LINENO: checking for gdm.conf" >&5 + echo $ECHO_N "checking for gdm.conf... $ECHO_C" >&6 + +@@ -23800,6 +23800,8 @@ + gdmconfigfile="/etc/gdm/gdm.conf" + elif test -f "/etc/X11/gdm/gdm.conf"; then + gdmconfigfile="/etc/X11/gdm/gdm.conf" ++ elif test -f "%%X11BASE%%/etc/gdm/gdm.conf"; then ++ gdmconfigfile="%%X11BASE%%/etc/gdm/gdm.conf" + else + { { echo "$as_me:$LINENO: error: The GDM config file could not be found, please specify it manually" >&5 + echo "$as_me: error: The GDM config file could not be found, please specify it manually" >&2;} diff --git a/x11/gnome-screensaver/files/patch-src_gs-job.c b/x11/gnome-screensaver/files/patch-src_gs-job.c new file mode 100644 index 000000000..9363ee6e6 --- /dev/null +++ b/x11/gnome-screensaver/files/patch-src_gs-job.c @@ -0,0 +1,12 @@ +--- src/gs-job.c.orig Wed Jun 8 23:57:35 2005 ++++ src/gs-job.c Thu Jun 9 00:00:29 2005 +@@ -29,7 +29,8 @@ + #include <sys/wait.h> + #include <errno.h> + +-#if defined(HAVE_SETPRIORITY) && defined(PRIO_PROCESS) ++#if defined(HAVE_SETPRIORITY) ++#include <sys/time.h> + #include <sys/resource.h> + #endif + |