From owner-svn-ports-all@FreeBSD.ORG Wed Jun 11 13:26:53 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 95F4C483; Wed, 11 Jun 2014 13:26:53 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 82C0D2736; Wed, 11 Jun 2014 13:26:53 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5BDQr8m075508; Wed, 11 Jun 2014 13:26:53 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5BDQq7M075500; Wed, 11 Jun 2014 13:26:52 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201406111326.s5BDQq7M075500@svn.freebsd.org> From: John Marino Date: Wed, 11 Jun 2014 13:26:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r357476 - in head: . textproc textproc/asm2html X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2014 13:26:53 -0000 Author: marino Date: Wed Jun 11 13:26:52 2014 New Revision: 357476 URL: http://svnweb.freebsd.org/changeset/ports/357476 QAT: https://qat.redports.org/buildarchive/r357476/ Log: Resurrect textproc/asm2html (with stage support), assign maintainer This port was removed in 2011 due to a lack of distfiles. Chris has rectified this and becomes the new maintainer. Other things of note: * Header trimmed * pkg-descr updated (new WWW link too) * Stage support * Updated to newer version 1.4 => 1.7 * BSD 3-clause license annotated * Fix on FreeBSD 10+ PR: 188981 Submitted by: Chris Hutchinson Fixes by: marino Added: head/textproc/asm2html/ - copied from r277020, head/textproc/asm2html/ Modified: head/MOVED head/textproc/Makefile head/textproc/asm2html/Makefile (contents, props changed) head/textproc/asm2html/distinfo (contents, props changed) head/textproc/asm2html/pkg-descr (contents, props changed) Modified: head/MOVED ============================================================================== --- head/MOVED Wed Jun 11 13:21:21 2014 (r357475) +++ head/MOVED Wed Jun 11 13:26:52 2014 (r357476) @@ -2382,7 +2382,6 @@ sysutils/Tee||2011-08-01|Has expired: No sysutils/i855vidctl10||2011-08-01|Has expired: No more public distfiles sysutils/rsyslog3-snmp||2011-08-01|Has expired: unsupported upstream sysutils/xapply||2011-08-01|Has expired: No more public distfiles -textproc/asm2html||2011-08-01|Has expired: Looks like abandonware, no more public distfiles textproc/diff-mode.el||2011-08-01|Has expired: Looks like abandonware, no more public distfiles vietnamese/gtk-im-vi||2011-08-01|Has expired: Looks like abandonware, no more public distfiles www/campsite||2011-08-01|Has expired: Does not work Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Wed Jun 11 13:21:21 2014 (r357475) +++ head/textproc/Makefile Wed Jun 11 13:26:52 2014 (r357476) @@ -30,6 +30,7 @@ SUBDIR += artha SUBDIR += asciidoc SUBDIR += asm-xml + SUBDIR += asm2html SUBDIR += aspell SUBDIR += aspell-ispell SUBDIR += ast-aspell Modified: head/textproc/asm2html/Makefile ============================================================================== --- head/textproc/asm2html/Makefile Sun Jul 3 20:20:10 2011 (r277020) +++ head/textproc/asm2html/Makefile Wed Jun 11 13:26:52 2014 (r357476) @@ -1,24 +1,26 @@ -# New ports collection makefile for: asm2html -# Date created: 5 June 2003 -# Whom: Ben Haga -# +# Created by: Ben Haga # $FreeBSD$ -# PORTNAME= asm2html -PORTVERSION= 1.4 +PORTVERSION= 1.7 CATEGORIES= textproc -MASTER_SITES= http://virtus.ath.cx/asm2html/ +MASTER_SITES= http://bsdforge.com/projects/source/textproc/asm2html/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= portmaster@bsdforge.com COMMENT= Converts NASM syntax assembly code to HTML code -DEPRECATED= Looks like an abandonware, no more public distfiles -EXPIRATION_DATE= 2011-08-01 +LICENSE= BSD3CLAUSE -MAN1= asm2html.1 -PLIST_FILES= bin/asm2html +USES= tar:xz HAS_CONFIGURE= yes CONFIGURE_ARGS+=--prefix=${PREFIX} +MAKE_ARGS+= CC=${CC} + +PLIST_FILES= bin/asm2html man/man1/asm2html.1.gz + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/src/asm2html ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/man/asm2html.1 \ + ${STAGEDIR}${MANPREFIX}/man/man1 .include Modified: head/textproc/asm2html/distinfo ============================================================================== --- head/textproc/asm2html/distinfo Sun Jul 3 20:20:10 2011 (r277020) +++ head/textproc/asm2html/distinfo Wed Jun 11 13:26:52 2014 (r357476) @@ -1,2 +1,2 @@ -SHA256 (asm2html-1.4.tar.gz) = eee1a19dee7c867bd608a942d431777e1e10b87b32527e8fac9206c7e1ad0836 -SIZE (asm2html-1.4.tar.gz) = 33975 +SHA256 (asm2html-1.7.tar.xz) = 88cb8f85392c805f768423dfd0a085ee4c5e48d22ec10e67293559f48531ae3e +SIZE (asm2html-1.7.tar.xz) = 26768 Modified: head/textproc/asm2html/pkg-descr ============================================================================== --- head/textproc/asm2html/pkg-descr Sun Jul 3 20:20:10 2011 (r277020) +++ head/textproc/asm2html/pkg-descr Wed Jun 11 13:26:52 2014 (r357476) @@ -1,3 +1,6 @@ -asm2html converts NASM syntax assembly code to HTML code +asm2html converts NASM syntax assembly code into HTML output, +suitable for display as web pages on your web site. +Soon it will produce XHTML output, with additional options. -WWW: http://virtus.ath.cx/asm2html/ + +WWW: http://bsdforge.com/projects/textproc/asm2html/