From owner-svn-ports-head@FreeBSD.ORG Fri Aug 3 02:06:44 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CB9B3106564A; Fri, 3 Aug 2012 02:06:44 +0000 (UTC) (envelope-from wxs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B62A68FC08; Fri, 3 Aug 2012 02:06:44 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q7326ioQ051987; Fri, 3 Aug 2012 02:06:44 GMT (envelope-from wxs@svn.freebsd.org) Received: (from wxs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q7326ifB051981; Fri, 3 Aug 2012 02:06:44 GMT (envelope-from wxs@svn.freebsd.org) Message-Id: <201208030206.q7326ifB051981@svn.freebsd.org> From: Wesley Shields Date: Fri, 3 Aug 2012 02:06:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r301876 - in head/devel/jwasm: . files X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Aug 2012 02:06:45 -0000 Author: wxs Date: Fri Aug 3 02:06:44 2012 New Revision: 301876 URL: http://svn.freebsd.org/changeset/ports/301876 Log: Update to 207a PR: ports/170262 Submitted by: Pedro Giffuni Added: head/devel/jwasm/files/patch-H__memalloc.h (contents, props changed) Modified: head/devel/jwasm/Makefile (contents, props changed) head/devel/jwasm/distinfo (contents, props changed) head/devel/jwasm/pkg-descr (contents, props changed) head/devel/jwasm/pkg-plist (contents, props changed) Modified: head/devel/jwasm/Makefile ============================================================================== --- head/devel/jwasm/Makefile Fri Aug 3 02:00:58 2012 (r301875) +++ head/devel/jwasm/Makefile Fri Aug 3 02:06:44 2012 (r301876) @@ -6,7 +6,7 @@ # PORTNAME= jwasm -PORTVERSION= 206 +PORTVERSION= 207a CATEGORIES= devel MASTER_SITES= http://www.japheth.de/Download/JWasm/ DISTNAME= JWasm${PORTVERSION}s @@ -27,7 +27,9 @@ do-install: .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} @${INSTALL_DATA} ${WRKSRC}/*.txt ${DOCSDIR} - @${GZIP_CMD} ${DOCSDIR}/*.txt + @${MKDIR} ${DOCSDIR}/manual + @${INSTALL_DATA} ${WRKSRC}/Doc/*.txt ${DOCSDIR}/manual + @${GZIP_CMD} ${DOCSDIR}/*.txt ${DOCSDIR}/manual/*.txt .endif .include Modified: head/devel/jwasm/distinfo ============================================================================== --- head/devel/jwasm/distinfo Fri Aug 3 02:00:58 2012 (r301875) +++ head/devel/jwasm/distinfo Fri Aug 3 02:06:44 2012 (r301876) @@ -1,2 +1,2 @@ -SHA256 (JWasm206s.zip) = bf3c03a546396dc25cf33fab4c31a7197be6651b75f4c6679727c391db7374c7 -SIZE (JWasm206s.zip) = 763604 +SHA256 (JWasm207as.zip) = 78c6f76ab729d9ecccf0a7fcf335457d6f76b613172a85c8d44b56ef79d328cc +SIZE (JWasm207as.zip) = 804843 Added: head/devel/jwasm/files/patch-H__memalloc.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/jwasm/files/patch-H__memalloc.h Fri Aug 3 02:06:44 2012 (r301876) @@ -0,0 +1,20 @@ +--- H/memalloc.h.orig 2012-07-29 14:44:42.000000000 -0500 ++++ H/memalloc.h 2012-07-29 14:51:44.000000000 -0500 +@@ -40,14 +40,15 @@ + #if defined(__WATCOMC__) || defined(__BORLANDC__) || defined(__OCC__) + #define myalloca alloca + #include +-#elif defined(__GNUC__) || defined(__TINYC__) ++#elif (defined(__GNUC__) || defined(__TINYC__)) && !defined(__FreeBSD__) + #define myalloca alloca + #include /* added v2.07 */ + #elif defined(__PCC__) + #define myalloca _alloca + #include + #else +-#define myalloca _alloca ++#define myalloca alloca ++#include + #endif + + /* AsmAlloc() and AsmFree() are fast variants, which Modified: head/devel/jwasm/pkg-descr ============================================================================== --- head/devel/jwasm/pkg-descr Fri Aug 3 02:00:58 2012 (r301875) +++ head/devel/jwasm/pkg-descr Fri Aug 3 02:06:44 2012 (r301876) @@ -9,7 +9,7 @@ JWasm Features: 64-bit), Elf (32-and 64-bit), Bin and DOS MZ. - precompiled JWasm binaries are available for DOS, Windows and Linux. For OS/2 and FreeBSD, makefiles are supplied. -- Instructions up to SSSE3 are supported. +- Instructions up to AVX are supported. - The JWasm source is portable and has successfully been tested with Open Watcom, MS VC, GCC and more. - As far as programming for Windows is concerned, JWasm can be used with Modified: head/devel/jwasm/pkg-plist ============================================================================== --- head/devel/jwasm/pkg-plist Fri Aug 3 02:00:58 2012 (r301875) +++ head/devel/jwasm/pkg-plist Fri Aug 3 02:06:44 2012 (r301876) @@ -2,6 +2,10 @@ bin/jwasm %%PORTDOCS%%%%DOCSDIR%%/History.txt.gz %%PORTDOCS%%%%DOCSDIR%%/License.txt.gz -%%PORTDOCS%%%%DOCSDIR%%/Manual.txt.gz %%PORTDOCS%%%%DOCSDIR%%/Readme.txt.gz +%%PORTDOCS%%%%DOCSDIR%%/manual/enh.txt.gz +%%PORTDOCS%%%%DOCSDIR%%/manual/fixes.txt.gz +%%PORTDOCS%%%%DOCSDIR%%/manual/gencode.txt.gz +%%PORTDOCS%%%%DOCSDIR%%/manual/overview.txt.gz +%%PORTDOCS%%@dirrm %%DOCSDIR%%/manual %%PORTDOCS%%@dirrm %%DOCSDIR%%