pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/editors/heme Import heme from pkgsrc-wip. Packaged by...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/43925a4b1b71
branches:  trunk
changeset: 500026:43925a4b1b71
user:      minskim <minskim%pkgsrc.org@localhost>
date:      Sat Oct 01 05:57:30 2005 +0000

description:
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:

 editors/heme/DESCR            |  11 +++++++++++
 editors/heme/Makefile         |  26 ++++++++++++++++++++++++++
 editors/heme/PLIST            |   3 +++
 editors/heme/distinfo         |   6 ++++++
 editors/heme/patches/patch-aa |  13 +++++++++++++
 5 files changed, 59 insertions(+), 0 deletions(-)

diffs (79 lines):

diff -r 04636714f39e -r 43925a4b1b71 editors/heme/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/editors/heme/DESCR        Sat Oct 01 05:57:30 2005 +0000
@@ -0,0 +1,11 @@
+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).
diff -r 04636714f39e -r 43925a4b1b71 editors/heme/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/editors/heme/Makefile     Sat Oct 01 05:57:30 2005 +0000
@@ -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@localhost
+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"
diff -r 04636714f39e -r 43925a4b1b71 editors/heme/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/editors/heme/PLIST        Sat Oct 01 05:57:30 2005 +0000
@@ -0,0 +1,3 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2005/10/01 05:57:30 minskim Exp $
+bin/heme
+man/man1/heme.1
diff -r 04636714f39e -r 43925a4b1b71 editors/heme/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/editors/heme/distinfo     Sat Oct 01 05:57:30 2005 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1.1.1 2005/10/01 05:57:30 minskim Exp $
+
+SHA1 (heme-0.4.tar.gz) = ae7727f9861e0ac36eeac7ddccb62739468f1251
+RMD160 (heme-0.4.tar.gz) = 478f527f8e4968968d0d055fddc1cdb98b632a8e
+Size (heme-0.4.tar.gz) = 21370 bytes
+SHA1 (patch-aa) = d64d01c8f3505b75dfa54f2291b63055b5a17e91
diff -r 04636714f39e -r 43925a4b1b71 editors/heme/patches/patch-aa
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/editors/heme/patches/patch-aa     Sat Oct 01 05:57:30 2005 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-aa,v 1.1.1.1 2005/10/01 05:57:30 minskim Exp $
+
+--- Makefile.orig      2005-03-06 10:52:31.000000000 -0800
++++ Makefile
+@@ -1,6 +1,6 @@
+ INSTALL_PREFIX = /usr/local
+-CFLAGS = -Wall -DHAVE_MMAP    # remove -DHAVE_MMAP if you don't have mmap
+-LDFLAGS = -lcurses
++CFLAGS+= -Wall -DHAVE_MMAP    # remove -DHAVE_MMAP if you don't have mmap
++LDFLAGS+= -lncurses
+ OBJECTS = heme.o xmalloc.o error.o pconfig.o pgetopt.o
+ TARGET = heme
+ 



Home | Main Index | Thread Index | Old Index