diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2010-06-05 21:02:50 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2010-06-05 21:02:50 +0000 |
commit | 21e8c1ba62145e06ffb372b6325ec0ab6a929c9b (patch) | |
tree | 12ad13abd30066c1e69bfc3c02719b9ba9915951 /sysutils | |
parent | 43b24b81902109095a9a97f805d27dcca6be2955 (diff) | |
download | ports-21e8c1ba62145e06ffb372b6325ec0ab6a929c9b.tar.gz ports-21e8c1ba62145e06ffb372b6325ec0ab6a929c9b.zip |
Notes
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/jfbterm/Makefile | 3 | ||||
-rw-r--r-- | sysutils/jfbterm/distinfo | 6 | ||||
-rw-r--r-- | sysutils/jfbterm/files/patch-utmpx | 95 |
3 files changed, 4 insertions, 100 deletions
diff --git a/sysutils/jfbterm/Makefile b/sysutils/jfbterm/Makefile index 1c8176fe49fe..a5c006197de9 100644 --- a/sysutils/jfbterm/Makefile +++ b/sysutils/jfbterm/Makefile @@ -5,8 +5,7 @@ # $FreeBSD$ PORTNAME= jfbterm -PORTVERSION= 0.6.0 -PORTREVISION= 2 +PORTVERSION= 0.6.1 CATEGORIES= sysutils MASTER_SITES= http://www.ac.auone-net.jp/~baba/jfbterm/ \ http://chirashi-no-ura.net/files/ diff --git a/sysutils/jfbterm/distinfo b/sysutils/jfbterm/distinfo index 0d0a35116725..8047a26e60c7 100644 --- a/sysutils/jfbterm/distinfo +++ b/sysutils/jfbterm/distinfo @@ -1,3 +1,3 @@ -MD5 (jfbterm-FreeBSD-0.6.0.tar.gz) = 6b29125e987e11d779093bfe22c16792 -SHA256 (jfbterm-FreeBSD-0.6.0.tar.gz) = adad94867d07e4f29020c31144786de9927d97752529b9ff6f7d81d1fc402915 -SIZE (jfbterm-FreeBSD-0.6.0.tar.gz) = 203682 +MD5 (jfbterm-FreeBSD-0.6.1.tar.gz) = fc5946d2ee0a9dae0d5aa6fc806416c3 +SHA256 (jfbterm-FreeBSD-0.6.1.tar.gz) = 8cd44a8adcf3e329fdff762e7395ad1f37bcc23702a655802175d9baf5416026 +SIZE (jfbterm-FreeBSD-0.6.1.tar.gz) = 218596 diff --git a/sysutils/jfbterm/files/patch-utmpx b/sysutils/jfbterm/files/patch-utmpx deleted file mode 100644 index e385e17c1e8d..000000000000 --- a/sysutils/jfbterm/files/patch-utmpx +++ /dev/null @@ -1,95 +0,0 @@ ---- term.c.orig 2009-02-07 12:30:17.000000000 -0500 -+++ term.c 2010-01-28 13:40:25.000000000 -0500 -@@ -59,7 +59,11 @@ - #include <termios.h> - #include <time.h> - #include <unistd.h> -+#ifdef HAVE_UTMP_H - #include <utmp.h> -+#else -+#include <utmpx.h> -+#endif - - #if defined (__linux__) - #include <sys/vt.h> -@@ -523,6 +527,41 @@ static void writeLoginRecord(void) - pututline(&utmp); - endutent(); - privilege_off(); -+#elif defined (__FreeBSD__) && (__FreeBSD_version >= 900007) -+ struct utmpx utmp; -+ struct passwd *pw; -+ char *tn; -+ -+ assert(initialized); -+ -+ bzero(&utmp, sizeof(utmp)); -+ pw = getpwuid(privilege_getUID()); -+ if (pw == NULL) { -+ warnx("who are you?"); -+ return; /* give up */ -+ } -+ if (strncmp(self->device, "/dev/pts/", 9) == 0 || -+ strncmp(self->device, "/dev/tty", 8) == 0) { -+ /* Unix98 style: "/dev/pts/\*" */ -+ /* BSD style: "/dev/tty[l-sL-S][0-9a-v]" */ -+ tn = self->device + strlen("/dev/"); -+ if (strlen(tn) < 5) -+ return; /* bad format */ -+ strncpy(utmp.ut_id, tn, sizeof(utmp.ut_id)); -+ } else -+ return; /* bad format */ -+ utmp.ut_type = DEAD_PROCESS; -+ privilege_on(); -+ setutxent(); -+ getutxid(&utmp); -+ utmp.ut_type = USER_PROCESS; -+ utmp.ut_pid = getpid(); -+ strncpy(utmp.ut_line, tn, sizeof(utmp.ut_line)); -+ strncpy(utmp.ut_user, pw->pw_name, sizeof(utmp.ut_user)); -+ gettimeofday(&(utmp.ut_tv), NULL); -+ pututxline(&utmp); -+ endutxent(); -+ privilege_off(); - #elif defined (__FreeBSD__) || defined (__NetBSD__) || defined (__OpenBSD__) - struct utmp utmp; - struct passwd *pw; -@@ -600,6 +639,38 @@ static void eraseLoginRecord(void) - pututline(utp); - endutent(); - privilege_off(); -+#elif defined (__FreeBSD__) && (__FreeBSD_version >= 900007) -+ struct utmpx utmp, *utp; -+ char *tn; -+ -+ assert(initialized); -+ -+ bzero(&utmp, sizeof(utmp)); -+ if (strncmp(self->device, "/dev/pts/", 9) == 0 || -+ strncmp(self->device, "/dev/tty", 8) == 0) { -+ /* Unix98 style: "/dev/pts/\*" */ -+ /* BSD style: "/dev/tty[l-sL-S][0-9a-v]" */ -+ tn = self->device + strlen("/dev/"); -+ if (strlen(tn) < 5) -+ return; /* bad format */ -+ strncpy(utmp.ut_id, tn, sizeof(utmp.ut_id)); -+ } else -+ return; /* bad format */ -+ utmp.ut_type = USER_PROCESS; -+ privilege_on(); -+ setutxent(); -+ utp = getutxid(&utmp); -+ if (utp == NULL) { -+ endutxent(); -+ privilege_off(); -+ return; /* give up */ -+ } -+ utp->ut_type = DEAD_PROCESS; -+ bzero(utp->ut_user, sizeof(utmp.ut_user)); -+ gettimeofday(&(utp->ut_tv), NULL); -+ pututxline(utp); -+ endutxent(); -+ privilege_off(); - #elif defined (__FreeBSD__) || defined (__NetBSD__) || defined (__OpenBSD__) - struct utmp utmp; - char *tn; |