Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 31 Jul 2014 15:50:54 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r363625 - in head/editors/zoinks: . files
Message-ID:  <201407311550.s6VFosAF060195@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Thu Jul 31 15:50:53 2014
New Revision: 363625
URL: http://svnweb.freebsd.org/changeset/ports/363625
QAT: https://qat.redports.org/buildarchive/r363625/

Log:
  editors/zoinks: Upgrade version 0.3.7 => 0.4.1 and stage
  
  PR:		191818
  Submitted by:	Ports Fury

Deleted:
  head/editors/zoinks/files/patch-fw-TTextView.cpp
Modified:
  head/editors/zoinks/Makefile
  head/editors/zoinks/distinfo
  head/editors/zoinks/files/patch-fw-TWindow.cpp
  head/editors/zoinks/pkg-descr
  head/editors/zoinks/pkg-plist

Modified: head/editors/zoinks/Makefile
==============================================================================
--- head/editors/zoinks/Makefile	Thu Jul 31 15:46:08 2014	(r363624)
+++ head/editors/zoinks/Makefile	Thu Jul 31 15:50:53 2014	(r363625)
@@ -2,47 +2,32 @@
 # $FreeBSD$
 
 PORTNAME=	zoinks
-PORTVERSION=	0.3.7
-PORTREVISION=	4
+PORTVERSION=	0.4.1
 CATEGORIES=	editors
 MASTER_SITES=	http://zoinks.mikelockwood.com/download/
 
 MAINTAINER=	ports@FreeBSD.org
 COMMENT=	X11 programmer's editor and development environment
 
-.if defined(WITH_IMLIB)
-USE_GNOME=	imlib
-CONFIGURE_ARGS+=	--enable-imlib
-.else
-CONFIGURE_ARGS+=	--disable-imlib
-.endif
+LICENSE=	GPLv2 # (or later)
 
 USE_XORG=	xpm
 GNU_CONFIGURE=	yes
 
-NO_STAGE=	yes
+CPPFLAGS+=	-I${LOCALBASE}/include
+LDFLAGS+=	-L${LOCALBASE}/lib
 
-OPTIONS_DEFINE=	NLS
+OPTIONS_DEFINE=		IMLIB NLS
+OPTIONS_SUB=		yes
 
-.include <bsd.port.options.mk>
-
-.if ${PORT_OPTIONS:MNLS}
-USES+=		gettext
-PLIST_SUB+=	NLS=""
-.else
-CONFIGURE_ARGS+=--disable-nls
-PLIST_SUB+=	NLS="@comment "
-.endif
-
-pre-everything::
-	@${ECHO_MSG} ""
-	@${ECHO_MSG} "Zoinks can be built with optional support for calculating image sizes"
-	@${ECHO_MSG} "and image thumbnail creation for HTML files."
-	@${ECHO_MSG} "These features require the Gnome imlib library."
-	@${ECHO_MSG} "Use WITH_IMLIB=yes to enable these features."
-	@${ECHO_MSG} ""
+IMLIB_USE=		GNOME=imlib
+IMLIB_CONFIGURE_ENABLE=	imlib
+NLS_USES=		gettext
+NLS_CONFIGURE_ENABLE=	nls
 
 post-patch:
+	@${REINPLACE_CMD} -e \
+		's|^MY_CXXFLAGS|#&|' ${WRKSRC}/configure
 	@${FIND} ${WRKSRC} -name *.xpm | ${XARGS} ${REINPLACE_CMD} -e \
 		's|^"|(char *)"|g'
 

Modified: head/editors/zoinks/distinfo
==============================================================================
--- head/editors/zoinks/distinfo	Thu Jul 31 15:46:08 2014	(r363624)
+++ head/editors/zoinks/distinfo	Thu Jul 31 15:50:53 2014	(r363625)
@@ -1,2 +1,2 @@
-SHA256 (zoinks-0.3.7.tar.gz) = a13f852eb97b6679ef5d01dc72b4dd5c0ed28c7792e234babcfa486cceb8e944
-SIZE (zoinks-0.3.7.tar.gz) = 326876
+SHA256 (zoinks-0.4.1.tar.gz) = bd8b229904b2e0aeae4742cc9eda882cd47874c86dcf21df8b3d77c830d301cd
+SIZE (zoinks-0.4.1.tar.gz) = 322009

Modified: head/editors/zoinks/files/patch-fw-TWindow.cpp
==============================================================================
--- head/editors/zoinks/files/patch-fw-TWindow.cpp	Thu Jul 31 15:46:08 2014	(r363624)
+++ head/editors/zoinks/files/patch-fw-TWindow.cpp	Thu Jul 31 15:50:53 2014	(r363625)
@@ -24,18 +24,3 @@
  		if (xic)
  			fInputContext = new TInputContext(xic);
  			
-@@ -657,7 +657,14 @@
- {
- 	time = CurrentTime;	// ignore time for now
- 
-+#if 0
-+	Pietro Cerutti <gahr@gahr.ch> 
-+	We may not be the active window
-+	anymore by this time
-+
- 	ASSERT(sPointerGrabWindow == this);
-+#endif
-+	if(sPointerGrabWindow != this) return;
- 
- 	XUngrabPointer(sDisplay, time);
- 	

Modified: head/editors/zoinks/pkg-descr
==============================================================================
--- head/editors/zoinks/pkg-descr	Thu Jul 31 15:46:08 2014	(r363624)
+++ head/editors/zoinks/pkg-descr	Thu Jul 31 15:50:53 2014	(r363625)
@@ -1,8 +1,8 @@
-Zoinks is a programmer's editor and development environment for
-Unix/X11 systems.   The editor has features similar to Mac text 
-editors like MPW and CodeWarrior.   It also has some features for 
-HTML authoring. Zoinks supports comparing/diffing files and 
-directory hierarchies. It also supports inputting and editing 
-multi-byte text (e.g. Japanese and other Asian languages).
+Zoinks is a programmer's editor and development environment for Unix/X11
+systems. The editor has features similar to Mac text editors like MPW
+and CodeWarrior. It also has some features for HTML authoring. Zoinks
+supports comparing/diffing files and directory hierarchies. It also
+supports inputting and editing multi-byte text (e.g. Japanese and other
+Asian languages).
 
 WWW: http://zoinks.mikelockwood.com/

Modified: head/editors/zoinks/pkg-plist
==============================================================================
--- head/editors/zoinks/pkg-plist	Thu Jul 31 15:46:08 2014	(r363624)
+++ head/editors/zoinks/pkg-plist	Thu Jul 31 15:50:53 2014	(r363625)
@@ -1,2 +1,3 @@
 bin/zoinks
+%%NLS%%share/locale/es/LC_MESSAGES/zoinks.mo
 %%NLS%%share/locale/ja/LC_MESSAGES/zoinks.mo



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201407311550.s6VFosAF060195>