summaryrefslogtreecommitdiff
path: root/converters
diff options
context:
space:
mode:
authorMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2005-12-22 19:17:36 +0000
committerMario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>2005-12-22 19:17:36 +0000
commitfbacc233e58004cdc03b39ac043dcc491c045ba7 (patch)
tree68d85c84baeacf4d6a0f9246d84370a9afcb7f27 /converters
parentRemove duplicate port entry converters/intel2gas since it already (diff)
New port nomyso version 3.0: Convert MASM/TASM files to NASM
compatible sources
Notes
Notes: svn path=/head/; revision=151869
Diffstat (limited to 'converters')
-rw-r--r--converters/Makefile1
-rw-r--r--converters/nomyso/Makefile36
-rw-r--r--converters/nomyso/distinfo3
-rw-r--r--converters/nomyso/pkg-descr8
4 files changed, 48 insertions, 0 deletions
diff --git a/converters/Makefile b/converters/Makefile
index c076fb811cd9..5b99a975fa4d 100644
--- a/converters/Makefile
+++ b/converters/Makefile
@@ -33,6 +33,7 @@
SUBDIR += mpack
SUBDIR += mule-ucs
SUBDIR += mule-ucs-emacs20
+ SUBDIR += nomyso
SUBDIR += p5-Boulder
SUBDIR += p5-Convert-ASCII-Armour
SUBDIR += p5-Convert-ASN1
diff --git a/converters/nomyso/Makefile b/converters/nomyso/Makefile
new file mode 100644
index 000000000000..337cdd9a415a
--- /dev/null
+++ b/converters/nomyso/Makefile
@@ -0,0 +1,36 @@
+# New ports collection makefile for: nomyso
+# Date created: Thu Dec 22 18:29:59 UTC 2005
+# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= nomyso
+PORTVERSION= 3.0
+CATEGORIES= converters devel
+MASTER_SITES= http://www.devoresoftware.com/nomyso/
+DISTNAME= ${PORTNAME}${PORTVERSION:S/.//}
+
+MAINTAINER= lioux@FreeBSD.org
+COMMENT= Convert MASM/TASM files to NASM compatible sources
+
+USE_ZIP= yes
+USE_REINPLACE= yes
+USE_PERL5_RUN= yes
+NO_WRKSUBDIR= yes
+NO_BUILD= yes
+
+PLIST_FILES= bin/${PORTNAME}.pl
+
+post-patch:
+ @${REINPLACE_CMD} -E \
+ -e 's|[[:cntrl:]]$$||' \
+ -e 's|/usr/bin/perl|${PERL}|' \
+ ${WRKSRC}/${PORTNAME}.pl
+
+do-install:
+ @${INSTALL_SCRIPT} \
+ ${WRKSRC}/${PORTNAME}.pl \
+ ${PREFIX}/bin
+
+.include <bsd.port.mk>
diff --git a/converters/nomyso/distinfo b/converters/nomyso/distinfo
new file mode 100644
index 000000000000..60cc1201a22a
--- /dev/null
+++ b/converters/nomyso/distinfo
@@ -0,0 +1,3 @@
+MD5 (nomyso30.zip) = e820dee65b75b6cda16422750d2e4246
+SHA256 (nomyso30.zip) = 61732fba6014802920d764f0a8c746fc30e48339d10f3da8db438626ec54ff39
+SIZE (nomyso30.zip) = 20470
diff --git a/converters/nomyso/pkg-descr b/converters/nomyso/pkg-descr
new file mode 100644
index 000000000000..6bbf1dcada3e
--- /dev/null
+++ b/converters/nomyso/pkg-descr
@@ -0,0 +1,8 @@
+[ excerpt from developer's www site ]
+
+Nomyso is a Perl program which converts assembly language source
+files for MASM and TASM to NASM-compatible source files.
+
+WWW: http://www.devoresoftware.com/nomyso/
+
+-- lioux@FreeBSD.org