summaryrefslogtreecommitdiff
path: root/x11/aterm
diff options
context:
space:
mode:
authorsketch <sketch@pkgsrc.org>2006-12-11 12:23:24 +0000
committersketch <sketch@pkgsrc.org>2006-12-11 12:23:24 +0000
commit817191c6447e7a5dd7f13f853fa7b25303f05cd2 (patch)
tree29714306cc0027110320ad56e2d61bb1f59a8b11 /x11/aterm
parent6994d32160f48ecc5d324a893f4242966f5ab0ce (diff)
downloadpkgsrc-817191c6447e7a5dd7f13f853fa7b25303f05cd2.tar.gz
Turn off pointless messages to stderr.
Diffstat (limited to 'x11/aterm')
-rw-r--r--x11/aterm/Makefile4
-rw-r--r--x11/aterm/distinfo3
-rw-r--r--x11/aterm/patches/patch-aa17
3 files changed, 21 insertions, 3 deletions
diff --git a/x11/aterm/Makefile b/x11/aterm/Makefile
index c3655e5da67..04d749f7cae 100644
--- a/x11/aterm/Makefile
+++ b/x11/aterm/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.30 2006/10/04 22:06:56 wiz Exp $
+# $NetBSD: Makefile,v 1.31 2006/12/11 12:23:24 sketch Exp $
#
DISTNAME= aterm-1.0.0
-PKGREVISION= 2
+PKGREVISION= 3
CATEGORIES= x11
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=aterm/}
EXTRACT_SUFX= .tar.bz2
diff --git a/x11/aterm/distinfo b/x11/aterm/distinfo
index 9a4fe637178..24af4d5a09f 100644
--- a/x11/aterm/distinfo
+++ b/x11/aterm/distinfo
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.10 2006/01/01 12:58:00 xtraeme Exp $
+$NetBSD: distinfo,v 1.11 2006/12/11 12:23:24 sketch Exp $
SHA1 (aterm-1.0.0.tar.bz2) = 806fd20aec2851c5eea26d9e6a707985da3579a3
RMD160 (aterm-1.0.0.tar.bz2) = b74f54b6aa6f1d4a094671507c30f627f074eb48
Size (aterm-1.0.0.tar.bz2) = 248708 bytes
+SHA1 (patch-aa) = 9390b91ecf82b4bdf7e91c2c858c7ef7eb912fe1
SHA1 (patch-ac) = 28c79343079680251a013ec3fe364b01f5a5ccac
SHA1 (patch-ad) = 0c87ee69672e98189afa2cfdcdd9691a1571f354
diff --git a/x11/aterm/patches/patch-aa b/x11/aterm/patches/patch-aa
new file mode 100644
index 00000000000..d6bd21889bb
--- /dev/null
+++ b/x11/aterm/patches/patch-aa
@@ -0,0 +1,17 @@
+$NetBSD: patch-aa,v 1.4 2006/12/11 12:23:24 sketch Exp $
+
+--- src/main.c.orig 2006-12-11 12:19:55.000000000 +0000
++++ src/main.c 2006-12-11 12:20:28.000000000 +0000
+@@ -1037,12 +1037,10 @@
+ XConfigureEvent *xconf = &(ev->xconfigure);
+
+ while( XCheckTypedWindowEvent( Xdisplay, TermWin.parent, ConfigureNotify, ev ) );
+- fprintf( stderr, "config_geom = %dx%d\n", xconf->width, xconf->height );
+ resize_window1(xconf->width, xconf->height);
+ #if 1
+ XTranslateCoordinates (Xdisplay, TermWin.parent, Xroot, 0, 0, &root_x, &root_y, &wdumm);
+
+- fprintf( stderr, "root_geom = %dx%d%+d%+d, root_size = %dx%d\n", xconf->width, xconf->height, root_x, root_y, XdisplayWidth, XdisplayHeight );
+ TermWin.root_x = root_x ;
+ TermWin.root_y = root_y ;
+ TermWin.root_width = xconf->width ;