diff options
author | John Marino <marino@FreeBSD.org> | 2014-06-11 13:26:52 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2014-06-11 13:26:52 +0000 |
commit | 73554f1aec036b14f0aaff715617c44c4c0be6dc (patch) | |
tree | 64c8edcc89e785b71f99ab01eb9f7aeba3706e79 /textproc | |
parent | 847c95c0331b394db9938efe3621b22f816a2d98 (diff) | |
download | ports-73554f1aec036b14f0aaff715617c44c4c0be6dc.tar.gz ports-73554f1aec036b14f0aaff715617c44c4c0be6dc.zip |
Notes
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/asm2html/Makefile | 26 | ||||
-rw-r--r-- | textproc/asm2html/distinfo | 2 | ||||
-rw-r--r-- | textproc/asm2html/pkg-descr | 6 |
4 files changed, 35 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index 2cb09e5de9b0..564a74cddd96 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -30,6 +30,7 @@ SUBDIR += artha SUBDIR += asciidoc SUBDIR += asm-xml + SUBDIR += asm2html SUBDIR += aspell SUBDIR += aspell-ispell SUBDIR += ast-aspell 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/ |