diff options
author | edwin <edwin@FreeBSD.org> | 2003-10-06 10:14:02 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-10-06 10:14:02 +0800 |
commit | 144001b14605190d483ccbe61ee7787bae4fa51e (patch) | |
tree | 85dfa6596ffc0d23d6d4b4a70616f8611082542f | |
parent | af824902525a157c572c9dc4ebfc47e6e9f9f807 (diff) | |
download | freebsd-ports-gnome-144001b14605190d483ccbe61ee7787bae4fa51e.tar.gz freebsd-ports-gnome-144001b14605190d483ccbe61ee7787bae4fa51e.tar.zst freebsd-ports-gnome-144001b14605190d483ccbe61ee7787bae4fa51e.zip |
New port: a small assembly to HTML convert
asm2html is a small tool to convert NASM syntax assembly
code to nice-looking HTML. This makes it alot easier to
view assembly source code on websites.
PR: ports/47026
Submitted by: Douwe Kiela <virtus@wanadoo.nl>
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/asm2html/Makefile | 16 | ||||
-rw-r--r-- | devel/asm2html/distinfo | 1 | ||||
-rw-r--r-- | devel/asm2html/pkg-descr | 5 | ||||
-rw-r--r-- | devel/asm2html/pkg-plist | 1 |
5 files changed, 24 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 16d02fc1c6e2..6a3fee7c7e1f 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -42,6 +42,7 @@ SUBDIR += as80 SUBDIR += asis SUBDIR += asl + SUBDIR += asm2html SUBDIR += asmutils SUBDIR += astyle SUBDIR += atk diff --git a/devel/asm2html/Makefile b/devel/asm2html/Makefile new file mode 100644 index 000000000000..decb80e25e0d --- /dev/null +++ b/devel/asm2html/Makefile @@ -0,0 +1,16 @@ +# New ports collection makefile for: asm2html +# Date created: 13 Januari 2003 +# Whom: Douwe Kiela <virtus@wanadoo.nl> +# +# $FreeBSD$ +# + +PORTNAME= asm2html +PORTVERSION= 1.0 +CATEGORIES= devel www textproc +MASTER_SITES= http://virtus.ath.cx/asm2html/ + +MAINTAINER= virtus@wanadoo.nl +COMMENT= A small tool to display NASM assembly source code in nice-looking HTML + +.include <bsd.port.mk> diff --git a/devel/asm2html/distinfo b/devel/asm2html/distinfo new file mode 100644 index 000000000000..e1480bdeb044 --- /dev/null +++ b/devel/asm2html/distinfo @@ -0,0 +1 @@ +MD5 (asm2html-1.0.tar.gz) = b4d5a2972768e35aff409fb56e7e1b5d diff --git a/devel/asm2html/pkg-descr b/devel/asm2html/pkg-descr new file mode 100644 index 000000000000..5a661cbfb909 --- /dev/null +++ b/devel/asm2html/pkg-descr @@ -0,0 +1,5 @@ +Asm2html is a small tool to display NASM assembly source code in +HTML. It looks for assembly keywords,register names,etc. and all +gives them seperate colors. + +WWW: http://virtus.ath.cx/asm2html diff --git a/devel/asm2html/pkg-plist b/devel/asm2html/pkg-plist new file mode 100644 index 000000000000..15a7ffac28c0 --- /dev/null +++ b/devel/asm2html/pkg-plist @@ -0,0 +1 @@ +bin/asm2html |