diff options
author | Michael Landin <mich@FreeBSD.org> | 2007-10-02 12:11:29 +0000 |
---|---|---|
committer | Michael Landin <mich@FreeBSD.org> | 2007-10-02 12:11:29 +0000 |
commit | 158bc9aebcd2820f68eb1832d4e483d66fef77dd (patch) | |
tree | fcf91f60c5589d493f9b772efbf97808ac8bb71e /x11/aterm | |
parent | 5ec2f3859f26771a91af9728558c9d57395b74fe (diff) | |
download | ports-158bc9aebcd2820f68eb1832d4e483d66fef77dd.tar.gz ports-158bc9aebcd2820f68eb1832d4e483d66fef77dd.zip |
- update to -> 1.0.1
Notes
Notes:
svn path=/head/; revision=200652
Diffstat (limited to 'x11/aterm')
-rw-r--r-- | x11/aterm/Makefile | 3 | ||||
-rw-r--r-- | x11/aterm/distinfo | 6 | ||||
-rw-r--r-- | x11/aterm/files/patch-aa | 50 | ||||
-rw-r--r-- | x11/aterm/files/patch-src-main.c | 20 |
4 files changed, 4 insertions, 75 deletions
diff --git a/x11/aterm/Makefile b/x11/aterm/Makefile index caa26b0377c6..80dcf774ced4 100644 --- a/x11/aterm/Makefile +++ b/x11/aterm/Makefile @@ -6,8 +6,7 @@ # PORTNAME= aterm -PORTVERSION= 1.0.0 -PORTREVISION= 2 +PORTVERSION= 1.0.1 CATEGORIES+= x11 # `+=' is for slave ports MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff --git a/x11/aterm/distinfo b/x11/aterm/distinfo index 741ddf39ad6f..006c1d0dca94 100644 --- a/x11/aterm/distinfo +++ b/x11/aterm/distinfo @@ -1,3 +1,3 @@ -MD5 (aterm-1.0.0.tar.gz) = 568777c65a723f6ba27464473c424a10 -SHA256 (aterm-1.0.0.tar.gz) = e9e39424b16ba19c59bf175f07b87d1e9b48f9f6f4b54139e7c899d668b9e3fa -SIZE (aterm-1.0.0.tar.gz) = 288358 +MD5 (aterm-1.0.1.tar.gz) = b0975b4b46225544e2eac898d888c08a +SHA256 (aterm-1.0.1.tar.gz) = 0b385c7d00ffdd488f7950e0de109576f55a04b4c056dce426ae2f8ed564f214 +SIZE (aterm-1.0.1.tar.gz) = 320805 diff --git a/x11/aterm/files/patch-aa b/x11/aterm/files/patch-aa deleted file mode 100644 index b9ec6296fead..000000000000 --- a/x11/aterm/files/patch-aa +++ /dev/null @@ -1,50 +0,0 @@ ---- src/command.c.orig Tue Jun 21 22:08:16 2005 -+++ src/command.c Tue Sep 6 00:35:28 2005 -@@ -73,12 +73,18 @@ - #ifndef NO_XLOCALE - # if (XtSpecificationRelease < 6) - # define NO_XLOCALE --# else --# define X_LOCALE --# include <X11/Xlocale.h> - # endif - #endif /* NO_XLOCALE */ - -+#ifndef NO_XSETLOCALE -+# define X_LOCALE -+# include <X11/Xlocale.h> -+#else -+# ifndef NO_SETLOCALE -+# include <locale.h> -+# endif -+#endif /* NO_XLOCALE */ -+ - #ifdef TTY_GID_SUPPORT - # include <grp.h> - #endif -@@ -600,7 +606,7 @@ - ttydev = tty_name; - - # define PTYCHAR1 "pqrstuvwxyz" --# define PTYCHAR2 "0123456789abcdef" -+# define PTYCHAR2 "0123456789abcdefghijklmnopqrstuvwxyz" - for (c1 = PTYCHAR1; *c1; c1++) { - ptydev[len - 2] = ttydev[len - 2] = *c1; - for (c2 = PTYCHAR2; *c2; c2++) { -@@ -1043,8 +1049,6 @@ - signal(SIGTERM, Exit_signal); - signal(SIGCHLD, Child_signal); - -- tt_winsize(ptyfd); /* set window size */ -- - /* need to trap SIGURG for SVR4 (Unixware) rlogin */ - /* signal (SIGURG, SIG_DFL); */ - -@@ -1084,6 +1088,7 @@ - } - #endif /* SRIOCSREDIR */ - } -+ tt_winsize(0); /* set window size */ - - /* reset signals and spin off the command interpreter */ - signal(SIGINT, SIG_DFL); diff --git a/x11/aterm/files/patch-src-main.c b/x11/aterm/files/patch-src-main.c deleted file mode 100644 index 63067ab51daf..000000000000 --- a/x11/aterm/files/patch-src-main.c +++ /dev/null @@ -1,20 +0,0 @@ ---- src/main.c.orig Tue Aug 16 14:56:31 2005 -+++ src/main.c Tue Aug 16 14:58:05 2005 -@@ -1037,12 +1037,17 @@ - XConfigureEvent *xconf = &(ev->xconfigure); - - while( XCheckTypedWindowEvent( Xdisplay, TermWin.parent, ConfigureNotify, ev ) ); -+ -+#ifdef DEBUG_X - fprintf( stderr, "config_geom = %dx%d\n", xconf->width, xconf->height ); -+#endif - resize_window1(xconf->width, xconf->height); - #if 1 - XTranslateCoordinates (Xdisplay, TermWin.parent, Xroot, 0, 0, &root_x, &root_y, &wdumm); - -+#ifdef DEBUG_X - fprintf( stderr, "root_geom = %dx%d%+d%+d, root_size = %dx%d\n", xconf->width, xconf->height, root_x, root_y, XdisplayWidth, XdisplayHeight ); -+#endif - TermWin.root_x = root_x ; - TermWin.root_y = root_y ; - TermWin.root_width = xconf->width ; |