diff options
author | hubertf <hubertf@pkgsrc.org> | 1997-12-29 04:22:57 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 1997-12-29 04:22:57 +0000 |
commit | 7cc11e4a0517572a410284b150fdf2ac5dccc60a (patch) | |
tree | b8a6782b362e6e7c8d41dbdabcda63380fc0554d /x11/xautolock | |
parent | 7c5d08d8cd24734299379d70677eedd0f6eebdec (diff) | |
download | pkgsrc-7cc11e4a0517572a410284b150fdf2ac5dccc60a.tar.gz |
Used to activate xlock after a user defined time of inactivity.
Diffstat (limited to 'x11/xautolock')
-rw-r--r-- | x11/xautolock/Makefile | 21 | ||||
-rw-r--r-- | x11/xautolock/files/md5 | 1 | ||||
-rw-r--r-- | x11/xautolock/patches/patch-aa | 47 | ||||
-rw-r--r-- | x11/xautolock/pkg/COMMENT | 1 | ||||
-rw-r--r-- | x11/xautolock/pkg/DESCR | 8 | ||||
-rw-r--r-- | x11/xautolock/pkg/PLIST | 2 |
6 files changed, 80 insertions, 0 deletions
diff --git a/x11/xautolock/Makefile b/x11/xautolock/Makefile new file mode 100644 index 00000000000..6e5ac0fce79 --- /dev/null +++ b/x11/xautolock/Makefile @@ -0,0 +1,21 @@ +# Port makefile for: oneko +# Version required: 1pl10 +# Date created: 20 Jul 1996 +# Whom: Eric Blood <eblood@cs.unr.edu> +# +# $Id: Makefile,v 1.1.1.1 1997/12/29 04:22:57 hubertf Exp $ +# + +DISTNAME= xautolock-1pl10 +PKGNAME= xautolock-1.10 +CATEGORIES= x11 +MASTER_SITES= ${MASTER_SITE_XCONTRIB} +MASTER_SITE_SUBDIR= applications +DISTFILES= xautolock.pl10.tz + +MAINTAINER= eblood@cs.unr.edu + +USE_IMAKE= yes +WRKSRC= ${WRKDIR}/xautolock.pl10 + +.include <bsd.port.mk> diff --git a/x11/xautolock/files/md5 b/x11/xautolock/files/md5 new file mode 100644 index 00000000000..52822baa0fd --- /dev/null +++ b/x11/xautolock/files/md5 @@ -0,0 +1 @@ +MD5 (xautolock.pl10.tz) = eac946325729f6b773e21618704ab5db diff --git a/x11/xautolock/patches/patch-aa b/x11/xautolock/patches/patch-aa new file mode 100644 index 00000000000..c10821e552d --- /dev/null +++ b/x11/xautolock/patches/patch-aa @@ -0,0 +1,47 @@ +*** xautolock.c.orig Sat Jul 20 17:32:41 1996 +--- xautolock.c Sat Jul 20 17:56:41 1996 +*************** +*** 196,201 **** +--- 196,203 ---- + * with vroot.h, because it needs to know the real root window. + */ + ++ #include <sys/param.h> ++ + #if defined(hpux) || defined (__hpux) + #ifndef _HPUX_SOURCE + #define _HPUX_SOURCE +*************** +*** 235,241 **** +--- 237,247 ---- + #endif /* !NOSTDHDRS */ + + #if !defined (apollo) && !defined (VMS) ++ ++ #if !defined (BSD) + #include <malloc.h> ++ #endif /* !BSD */ ++ + #include <unistd.h> + #endif /* !apollo && !VMS */ + +*************** +*** 1587,1593 **** + #else /* VMS */ + if (locker_pid) + { +! #if !defined (UTEKV) && !defined (SYSV) && !defined(SVR4) + union wait status; /* childs process status */ + #else /* !UTEKV && !SYSV && !SVR4 */ + int status; /* childs process status */ +--- 1593,1602 ---- + #else /* VMS */ + if (locker_pid) + { +! +! #if defined (BSD) +! int status; +! #elif !defined (UTEKV) && !defined (SYSV) && !defined(SVR4) + union wait status; /* childs process status */ + #else /* !UTEKV && !SYSV && !SVR4 */ + int status; /* childs process status */ diff --git a/x11/xautolock/pkg/COMMENT b/x11/xautolock/pkg/COMMENT new file mode 100644 index 00000000000..ddf7bf3bdbb --- /dev/null +++ b/x11/xautolock/pkg/COMMENT @@ -0,0 +1 @@ +Used to activate xlock after a user defined time of inactivity. diff --git a/x11/xautolock/pkg/DESCR b/x11/xautolock/pkg/DESCR new file mode 100644 index 00000000000..214ec586b08 --- /dev/null +++ b/x11/xautolock/pkg/DESCR @@ -0,0 +1,8 @@ +Xautolock monitors console activity under the X window system, and +fires up a program of your choice if nothing happens during a +user configurable period of time. You can use this to automatically +start up a screen locker in case you tend to forget to do so manually +before having a coffee break. + +Eric Blood +eblood@cs.unr.edu diff --git a/x11/xautolock/pkg/PLIST b/x11/xautolock/pkg/PLIST new file mode 100644 index 00000000000..e7ac2a7a0b4 --- /dev/null +++ b/x11/xautolock/pkg/PLIST @@ -0,0 +1,2 @@ +bin/xautolock +man/man1/xautolock.1.gz |