summaryrefslogtreecommitdiff
path: root/security/dissembler/Makefile
diff options
context:
space:
mode:
authorFlorent Thoumie <flz@FreeBSD.org>2005-03-13 21:54:37 +0000
committerFlorent Thoumie <flz@FreeBSD.org>2005-03-13 21:54:37 +0000
commit80104e2b4985292c1bfd36049d6a6dfe29cd1fd3 (patch)
tree082385efe21f5a97b2b0c7977601d1862d367e38 /security/dissembler/Makefile
parentUpdate to 9.3.7 (diff)
- Add dissembler 0.9, Tiny and clever tool to convert shellcode to ASCII.
PR: ports/78783 Submitted by: Jonathan <onatan@gmail.com>
Notes
Notes: svn path=/head/; revision=131132
Diffstat (limited to 'security/dissembler/Makefile')
-rw-r--r--security/dissembler/Makefile32
1 files changed, 32 insertions, 0 deletions
diff --git a/security/dissembler/Makefile b/security/dissembler/Makefile
new file mode 100644
index 000000000000..33a4625311d0
--- /dev/null
+++ b/security/dissembler/Makefile
@@ -0,0 +1,32 @@
+# Ports collection makefile for: dissembler
+# Date created: 13 Mar 2005
+# Whom: Yonatan <onatan@gmail.com>
+#
+# $FreeBSD$
+#
+
+PORTNAME= dissembler
+PORTVERSION= 0.9
+CATEGORIES= security
+MASTER_SITES= http://www.phiral.com/research/
+DISTNAME= ${PORTNAME}_${PORTVERSION}
+EXTRACT_SUFX= .tgz
+
+MAINTAINER= onatan@gmail.com
+COMMENT= A tool that polymorphs bytecode to a printable ASCII string
+
+WRKSRC= ${WRKDIR}/${DISTNAME}
+PLIST_FILES=bin/${PORTNAME}
+PORTDOCS= ${PORTNAME}.txt
+
+do-build:
+ ${CC} ${CFLAGS} -o ${WRKSRC}/${PORTNAME} ${WRKSRC}/${PORTNAME}.c
+
+do-install:
+ ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/
+. if !defined(NOPORTDOCS)
+ ${MKDIR} ${DOCSDIR}
+ ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.txt ${DOCSDIR}
+. endif
+
+.include <bsd.port.mk>