diff options
author | marino <marino@FreeBSD.org> | 2014-06-11 21:26:52 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2014-06-11 21:26:52 +0800 |
commit | 5504a27f2e8ecab59e3d6fca8f0254f0bfbeae4c (patch) | |
tree | 64c8edcc89e785b71f99ab01eb9f7aeba3706e79 /textproc/asm2html | |
parent | 2779a7971f5434ef6a486769a01c88bd0e87353e (diff) | |
download | freebsd-ports-gnome-5504a27f2e8ecab59e3d6fca8f0254f0bfbeae4c.tar.gz freebsd-ports-gnome-5504a27f2e8ecab59e3d6fca8f0254f0bfbeae4c.tar.zst freebsd-ports-gnome-5504a27f2e8ecab59e3d6fca8f0254f0bfbeae4c.zip |
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
Diffstat (limited to 'textproc/asm2html')
-rw-r--r-- | textproc/asm2html/Makefile | 26 | ||||
-rw-r--r-- | textproc/asm2html/distinfo | 2 | ||||
-rw-r--r-- | textproc/asm2html/pkg-descr | 6 |
3 files changed, 34 insertions, 0 deletions
diff --git a/textproc/asm2html/Makefile b/textproc/asm2html/Makefile new file mode 100644 index 000000000000..68d6fa247a0e --- /dev/null +++ b/textproc/asm2html/Makefile @@ -0,0 +1,26 @@ +# Created by: Ben Haga <tuxsuximus@hotmail.com> +# $FreeBSD$ + +PORTNAME= asm2html +PORTVERSION= 1.7 +CATEGORIES= textproc +MASTER_SITES= http://bsdforge.com/projects/source/textproc/asm2html/ + +MAINTAINER= portmaster@bsdforge.com +COMMENT= Converts NASM syntax assembly code to HTML code + +LICENSE= BSD3CLAUSE + +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 <bsd.port.mk> diff --git a/textproc/asm2html/distinfo b/textproc/asm2html/distinfo new file mode 100644 index 000000000000..992119801acf --- /dev/null +++ b/textproc/asm2html/distinfo @@ -0,0 +1,2 @@ +SHA256 (asm2html-1.7.tar.xz) = 88cb8f85392c805f768423dfd0a085ee4c5e48d22ec10e67293559f48531ae3e +SIZE (asm2html-1.7.tar.xz) = 26768 diff --git a/textproc/asm2html/pkg-descr b/textproc/asm2html/pkg-descr new file mode 100644 index 000000000000..0116b3fe4263 --- /dev/null +++ b/textproc/asm2html/pkg-descr @@ -0,0 +1,6 @@ +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://bsdforge.com/projects/textproc/asm2html/ |