summaryrefslogtreecommitdiff
path: root/editors/heme/Makefile
diff options
context:
space:
mode:
authorminskim <minskim@pkgsrc.org>2005-10-01 05:57:30 +0000
committerminskim <minskim@pkgsrc.org>2005-10-01 05:57:30 +0000
commit76bb09a31f5c402864f7a40d57d9c34852252e96 (patch)
tree53914b6e91f79290e7c5f8a4d2fe9ade46cb5dec /editors/heme/Makefile
parent22e21951150204c3c803fa0f0a23711b7ce7af26 (diff)
downloadpkgsrc-76bb09a31f5c402864f7a40d57d9c34852252e96.tar.gz
Import heme from pkgsrc-wip. Packaged by pancake and modified by me.
Heme is a fast and portable console hex editor for unix systems. It has undo support (number of undo operations is only limited by available memory), ability to fill a range of addresses with the specified byte, ability to search for a single byte or character string. Offsets can be given in hexadecimal, octal or decimal. There are two editing modes: hex and ascii. In hex mode you type hexadecimal digits and in ascii mode you type characters. In the ascii mode cursor is automatically moved to the next byte after typing a character (this behaviour is configurable for hex mode).
Diffstat (limited to 'editors/heme/Makefile')
-rw-r--r--editors/heme/Makefile26
1 files changed, 26 insertions, 0 deletions
diff --git a/editors/heme/Makefile b/editors/heme/Makefile
new file mode 100644
index 00000000000..2e4e1312988
--- /dev/null
+++ b/editors/heme/Makefile
@@ -0,0 +1,26 @@
+# $NetBSD: Makefile,v 1.1.1.1 2005/10/01 05:57:30 minskim Exp $
+#
+
+DISTNAME= heme-0.4
+CATEGORIES= editors
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=heme/}
+
+MAINTAINER= pancake@phreaker.net
+HOMEPAGE= http://keihanna.dl.sourceforge.net/sourceforge/heme/
+COMMENT= Fast and portable console hex editor
+
+PKG_INSTALLATION_TYPES= overwrite pkgviews
+
+BUILD_TARGET= heme
+USE_NCURSES= # mvwchgat
+USE_TOOLS+= gmake
+
+INSTALLATION_DIRS= bin man/man1
+
+.include "../../devel/ncurses/buildlink3.mk"
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/heme ${PREFIX}/bin
+ ${INSTALL_MAN} ${WRKSRC}/heme.1 ${PREFIX}/man/man1
+
+.include "../../mk/bsd.pkg.mk"