aboutsummaryrefslogtreecommitdiff
path: root/textproc/rtf2html/Makefile
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2005-07-07 20:50:06 +0000
committerPav Lucistnik <pav@FreeBSD.org>2005-07-07 20:50:06 +0000
commit696a1950a2e173cb1bec7841c14c2de337a53445 (patch)
tree8b9ab15cc38d870f099eeba9afaaeabe69f8edb1 /textproc/rtf2html/Makefile
parent0fa030f274a2e4f83f08592f507c3f4969d0f643 (diff)
Notes
Diffstat (limited to 'textproc/rtf2html/Makefile')
-rw-r--r--textproc/rtf2html/Makefile26
1 files changed, 26 insertions, 0 deletions
diff --git a/textproc/rtf2html/Makefile b/textproc/rtf2html/Makefile
new file mode 100644
index 000000000000..c06ce20e1e42
--- /dev/null
+++ b/textproc/rtf2html/Makefile
@@ -0,0 +1,26 @@
+# New ports collection makefile for: rtf2html
+# Date created: 6 Jul 2005
+# Whom: Emanuel Haupt <ehaupt@critical.ch>
+#
+# $FreeBSD$
+#
+
+PORTNAME= rtf2html
+DISTVERSION= 1.1b
+CATEGORIES= textproc
+MASTER_SITES= http://www.45.free.net/~vitus/ice/misc/
+DISTNAME= ${PORTNAME}
+
+MAINTAINER= ehaupt@critical.ch
+COMMENT= A simple rtf2html converter
+
+CFLAGS+= -Wall -Werror
+PLIST_FILES= bin/rtf2html
+
+do-build:
+ ${CC} ${CFLAGS} ${WRKSRC}/${PORTNAME}.c -o ${WRKSRC}/${PORTNAME}
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
+
+.include <bsd.port.mk>