Bug 177598 - [PATCH] devel/nasm: update to 2.10.07
Summary: [PATCH] devel/nasm: update to 2.10.07
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Dennis Herrmann
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-04-03 06:40 UTC by takefu
Modified: 2013-10-15 21:10 UTC (History)
1 user (show)

See Also:


Attachments
nasm-2.10.07,1.patch (1.89 KB, patch)
2013-04-03 06:40 UTC, takefu
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description takefu 2013-04-03 06:40:00 UTC
  - Update to 2.10.07,1
  - Fix optionsNG

Port maintainer (dhn@FreeBSD.org) is cc'd.

Generated with FreeBSD Port Tools 0.99_7 (mode: update, diff: ports)
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-04-03 06:40:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->dhn

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-10-15 21:00:44 UTC
Author: ak
Date: Tue Oct 15 20:00:31 2013
New Revision: 330452
URL: http://svnweb.freebsd.org/changeset/ports/330452

Log:
  - Update to 2.10.09
  - Switch to tar.xz distfile [1]
  - Support STAGEDIR
  
  PR:	ports/177598 (based on) [1]
  Submitted by:	Takefu <takefu@airport.fm> [1]
  Approved by:	portmgr (tabthorpe)

Modified:
  head/devel/nasm/Makefile   (contents, props changed)
  head/devel/nasm/distinfo   (contents, props changed)
  head/devel/nasm/pkg-plist   (contents, props changed)

Modified: head/devel/nasm/Makefile
==============================================================================
--- head/devel/nasm/Makefile	Tue Oct 15 19:51:40 2013	(r330451)
+++ head/devel/nasm/Makefile	Tue Oct 15 20:00:31 2013	(r330452)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	nasm
-PORTVERSION=	2.10.03
+PORTVERSION=	2.10.09
 PORTEPOCH=	1
 CATEGORIES=	devel lang
 MASTER_SITES=	http://www.nasm.us/pub/nasm/releasebuilds/${PORTVERSION}/
@@ -13,20 +13,16 @@ COMMENT=	General-purpose multi-platform 
 
 LICENSE=	BSD
 
-USE_BZIP2=	yes
+USE_XZ=	yes
 GNU_CONFIGURE=	yes
-USE_GMAKE=	yes	# parallel builds (-jX) are broken with BSD make(1)
+USES=	gmake	# parallel builds (-jX) are broken with BSD make(1)
+MAKE_ARGS+=	INSTALLROOT=${STAGEDIR}
 INSTALL_TARGET=	install install_rdf
 
-MAN1=		ldrdf.1 nasm.1 ndisasm.1 rdf2bin.1 rdf2com.1 rdf2ihx.1 \
-		rdf2ith.1 rdf2srec.1 rdfdump.1 rdflib.1 rdx.1
 PORTDOCS=	*
 
-NO_STAGE=	yes
 post-install:
-.ifndef(NOPORTDOCS)
-	@${MKDIR} ${DOCSDIR}
-	${INSTALL_MAN} ${WRKSRC}/doc/nasmdoc.txt ${DOCSDIR}
-.endif
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+	${INSTALL_MAN} ${WRKSRC}/doc/nasmdoc.txt ${STAGEDIR}${DOCSDIR}
 
 .include <bsd.port.mk>

Modified: head/devel/nasm/distinfo
==============================================================================
--- head/devel/nasm/distinfo	Tue Oct 15 19:51:40 2013	(r330451)
+++ head/devel/nasm/distinfo	Tue Oct 15 20:00:31 2013	(r330452)
@@ -1,4 +1,4 @@
-SHA256 (nasm-2.10.03.tar.bz2) = 3babec15086fed1d00495e7c412848fd135cad70faa811738cb35da46d98974c
-SIZE (nasm-2.10.03.tar.bz2) = 814055
-SHA256 (nasm-2.10.03-xdoc.tar.bz2) = e3ec49fceb3327875a3185811448928b4055a3c0ed49d3f2c7fa0e256c156552
-SIZE (nasm-2.10.03-xdoc.tar.bz2) = 852199
+SHA256 (nasm-2.10.09.tar.xz) = 9ffd9f910c783ee798cf2986cec01ebeeb01ba0ecacef64d2d4bea927c41fbf2
+SIZE (nasm-2.10.09.tar.xz) = 686416
+SHA256 (nasm-2.10.09-xdoc.tar.xz) = 42598c7b7c82054fee9da071040bd910a5aeba454415d065bb31ac5b38968180
+SIZE (nasm-2.10.09-xdoc.tar.xz) = 695840

Modified: head/devel/nasm/pkg-plist
==============================================================================
--- head/devel/nasm/pkg-plist	Tue Oct 15 19:51:40 2013	(r330451)
+++ head/devel/nasm/pkg-plist	Tue Oct 15 20:00:31 2013	(r330452)
@@ -7,3 +7,14 @@ bin/rdf2bin
 bin/rdfdump
 bin/rdflib
 bin/rdx
+man/man1/ldrdf.1.gz
+man/man1/nasm.1.gz
+man/man1/ndisasm.1.gz
+man/man1/rdf2bin.1.gz
+man/man1/rdf2com.1.gz
+man/man1/rdf2ihx.1.gz
+man/man1/rdf2ith.1.gz
+man/man1/rdf2srec.1.gz
+man/man1/rdfdump.1.gz
+man/man1/rdflib.1.gz
+man/man1/rdx.1.gz
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Alex Kozlov freebsd_committer freebsd_triage 2013-10-15 21:01:29 UTC
State Changed
From-To: open->closed

Committed, with minor changes. Thanks!