Bug 47026 - New port: a small assembly to HTML convert
Summary: New port: a small assembly to HTML convert
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: freebsd-ports-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-01-13 18:30 UTC by Douwe
Modified: 2003-10-06 03:14 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Douwe 2003-01-13 18:30:02 UTC
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.

Fix: 

echo c - asm2html
mkdir -p asm2html > /dev/null 2>&1
echo x - asm2html/pkg-plist
sed 's/^X//' >asm2html/pkg-plist << 'END-of-asm2html/pkg-plist'
Xbin/asm2html
END-of-asm2html/pkg-plist
echo x - asm2html/pkg-descr
sed 's/^X//' >asm2html/pkg-descr << 'END-of-asm2html/pkg-descr'
XAsm2html is a small tool to display NASM assembly source code in HTML.
XIt looks for assembly keywords,register names,etc. and all gives them
Xseperate colors.
END-of-asm2html/pkg-descr
echo x - asm2html/pkg-comment
sed 's/^X//' >asm2html/pkg-comment << 'END-of-asm2html/pkg-comment'
XA small tool to display NASM assembly source code in nice-looking HTML
END-of-asm2html/pkg-comment
echo x - asm2html/distinfo
sed 's/^X//' >asm2html/distinfo << 'END-of-asm2html/distinfo'
XMD5 (asm2html-1.0.tar.gz) = b4d5a2972768e35aff409fb56e7e1b5d
END-of-asm2html/distinfo
echo x - asm2html/Makefile
sed 's/^X//' >asm2html/Makefile << 'END-of-asm2html/Makefile'
X# New ports collection makefile for:   asm2html
X# Date created:                                13 Januari 2003
X# Whom:                                        Douwe Kiela <virtus@wanadoo.nl>
X#
X
XPORTNAME=      asm2html
XPORTVERSION=   1.0
XCATEGORIES=    devel
XMASTER_SITES=  http://virtus.ath.cx/asm2html/
X
XMAINTAINER=    virtus@wanadoo.nl
XHOMEPAGE=      http://virtus.ath.cx/asm2html
X
X.include <bsd.port.mk>
END-of-asm2html/Makefile
exit
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2003-10-06 03:14:10 UTC
State Changed
From-To: open->closed

Commited, thanks!