ports/83190: [patch] update x11/ggiterm to 0.7.1

Antoine Brodin antoine.brodin at laposte.net
Sat Jul 9 15:30:28 UTC 2005


>Number:         83190
>Category:       ports
>Synopsis:       [patch] update x11/ggiterm to 0.7.1
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Sat Jul 09 15:30:23 GMT 2005
>Closed-Date:
>Last-Modified:
>Originator:     Antoine Brodin
>Release:        FreeBSD 6.0-CURRENT i386
>Organization:
none
>Environment:
System: FreeBSD barton.dreadbsd.org 6.0-CURRENT FreeBSD 6.0-CURRENT #0: Wed Jul 6 21:48:13 CEST 2005 antoine at barton.dreadbsd.org:/usr/obj/usr/src/sys/BARTON i386
>Description:
. Update to 0.7.1

from the announce:
 New features:
 - Better (more compact) font rendering
 - (Rough) support for non fixed-width fonts
 - Added icons (.svg and .png)
 - More accurate blinking
 - Added --mode option to specify the GGI mode
 Fixes:
 - Check buffer size before accessing it in parse_ansi_sequences()
 - Send debugging output on stderr (non buffered)
 - in *_delete_chars() we didn"t clear the end of the line
   (fixes the rendering bug in nano spotted by C. Egger)
 - The el1 capability (erase line up to cursor position) did
   not erase the character at cursor position
 - Fix the Ctrl-C while scrolling hangs
 - Fix the "less search mode" bug
 Build system:
 - Use libtool to hardcode library paths (requested by N. Pilgrim)
   (this requires autotools 1.9)
 - Compilation failed with --without-freetype (patch from C. Egger)
 - Require freetype >= 2.1.3, needed for FT_LOAD_TARGET_MONO
 - autogen.sh parses configure instead of Makefile which may not exist
   at that time
 - Suggest using --without-freetype when default ./configure
   cannot find the freetype lib

. Take maintainership
. Don't use X_PREFIX, you can run ggiterm without X using display-vgl for example
. Don't use INSTALLS_SHLIB (I don't know why it was there)
. The patch is not needed anymore

>How-To-Repeat:
>Fix:

--- ggiterm.diff begins here ---
Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/x11/ggiterm/Makefile,v
retrieving revision 1.6
diff -u -p -r1.6 Makefile
--- Makefile	10 Dec 2004 08:37:50 -0000	1.6
+++ Makefile	9 Jul 2005 14:59:54 -0000
@@ -6,24 +6,22 @@
 #
 
 PORTNAME=	ggiterm
-PORTVERSION=	0.7.0
+PORTVERSION=	0.7.1
 CATEGORIES=	x11
 MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
 MASTER_SITE_SUBDIR=	ggiterm
 DISTNAME=	${PORTNAME}-${PORTVERSION}
 
-MAINTAINER=	ports at FreeBSD.org
+MAINTAINER=	antoine.brodin at laposte.net
 COMMENT=	A terminal emulator for GGI
 
 LIB_DEPENDS=	ggi.2:${PORTSDIR}/graphics/libggi
 
 USE_GMAKE=	yes
-USE_X_PREFIX=	yes
-USE_REINPLACE=	yes
-INSTALLS_SHLIB=	yes
 
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--with-ggi-prefix=${LOCALBASE}
+CONFIGURE_ENV=	CPPFLAGS="${PTHREAD_CFLAGS}" LDFLAGS="${PTHREAD_LIBS}"
 
 WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
 
@@ -41,9 +39,6 @@ CONFIGURE_ARGS+=--without-freetype
 
 MAN1=		ggiterm.1
 
-post-patch:
-	@${REINPLACE_CMD} -e 's|-lggi |-lggi ${PTHREAD_LIBS} |' ${WRKSRC}/configure
-
 post-install:
 .if !defined(NOPORTDOCS)
 	@${MKDIR} ${DOCSDIR}
Index: distinfo
===================================================================
RCS file: /home/ncvs/ports/x11/ggiterm/distinfo,v
retrieving revision 1.3
diff -u -p -r1.3 distinfo
--- distinfo	9 Dec 2004 09:49:38 -0000	1.3
+++ distinfo	9 Jul 2005 14:34:18 -0000
@@ -1,2 +1,2 @@
-MD5 (ggiterm-0.7.0.tar.gz) = abdaca4081e5b313330b9b597ce88596
-SIZE (ggiterm-0.7.0.tar.gz) = 159164
+MD5 (ggiterm-0.7.1.tar.gz) = 4a70de30a012a29c2ba2411ddbd4974d
+SIZE (ggiterm-0.7.1.tar.gz) = 380467
Index: pkg-plist
===================================================================
RCS file: /home/ncvs/ports/x11/ggiterm/pkg-plist,v
retrieving revision 1.1
diff -u -p -r1.1 pkg-plist
--- pkg-plist	9 Dec 2003 00:05:55 -0000	1.1
+++ pkg-plist	9 Jul 2005 14:58:00 -0000
@@ -1,4 +1,7 @@
 bin/ggiterm
 %%DOCSDIR%%/AUTHORS
 %%DOCSDIR%%/README
+share/ggiterm/ggiterm.png
+share/ggiterm/ggiterm.svg
 @dirrm %%DOCSDIR%%
+ at dirrm share/ggiterm
Index: files/patch-ggiterm.c
===================================================================
RCS file: files/patch-ggiterm.c
diff -N files/patch-ggiterm.c
--- files/patch-ggiterm.c	9 Dec 2004 09:49:38 -0000	1.2
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,20 +0,0 @@
---- ggiterm.c.orig	Fri Oct 22 11:32:34 2004
-+++ ggiterm.c	Sun Dec  5 23:39:35 2004
-@@ -38,6 +38,8 @@
- 
- /* for openpty() */
- #include <sys/ioctl.h> /* some systems (BSD) need it even with OPENPTY_HEADER */
-+/* for pid_t, strangely not included by OPENPTY_HEADER */
-+#include <sys/types.h>
- #ifdef OPENPTY_HEADER
- # include OPENPTY_HEADER
- #else
-@@ -52,8 +54,6 @@
- # include <utmp.h>
- #endif
- 
--/* for pid_t, strangely not included by OPENPTY_HEADER */
--#include <sys/types.h>
- /* for execve, read, write */
- #include <unistd.h>
- 
--- ggiterm.diff ends here ---


>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list