summaryrefslogtreecommitdiff
path: root/editors/hexedit/Makefile
diff options
context:
space:
mode:
authoradam <adam>2004-08-03 12:12:54 +0000
committeradam <adam>2004-08-03 12:12:54 +0000
commit8335207f5be6ba5ac4413bae527367632933401d (patch)
tree3a7768c3181ebecbaa50df0c838bb98b4ef4c75e /editors/hexedit/Makefile
parent6185fd7442289581dc2e7e78e17b6a8e83d97e74 (diff)
downloadpkgsrc-8335207f5be6ba5ac4413bae527367632933401d.tar.gz
Changes 1.2.10:
- handle getnstr() not defined (needed for SGI IRIX 6.5.22) Changes 1.2.9: - fix searching larger than 3 characters long strings Changes 1.2.8: - replace the unsafe getstr() with getnstr() Changes 1.2.7: - check the presence of <sys/mount.h> before including it - fix build on Digital UNIX 4.0f (remove -Wall) - use the full width of the terminal (the trick is to stop relying on printing "\n", but using move() instead) - fix displaying the offsets at beginning of each line on big endian boxes (thanks to Martin Schaffner) Changes 1.2.6: - fix core dump when searching backward (thanks to Jean Delvare) (the culprit is memrmem, but also fixing provided memrchr) Changes 1.2.5: - fix build on Solaris (which doesn't have BLKGETSIZE and all compilers don't have -W) Changes 1.2.4: - use BLKGETSIZE to try to get the size of a device - do not die horribly when accessing after the end - fix provided memrchr() (thanks to Yue Luo) - fix displaying after searching >32bit files (thanks to Paul Mattal) Changes 1.2.3: - add some KEY_HOME KEY_END (^[[7~ and ^[[8~) - fix for HAVE_MEMMEM - fix my memrchr not behaving the same as libc's - fix the use of memrchr to behave as libc's - use "(void)" in prototype of functions having no parameters - call "raw()" when help() is over
Diffstat (limited to 'editors/hexedit/Makefile')
-rw-r--r--editors/hexedit/Makefile22
1 files changed, 7 insertions, 15 deletions
diff --git a/editors/hexedit/Makefile b/editors/hexedit/Makefile
index fa289bf4707..724414caa1b 100644
--- a/editors/hexedit/Makefile
+++ b/editors/hexedit/Makefile
@@ -1,25 +1,17 @@
-# $NetBSD: Makefile,v 1.21 2004/04/11 08:12:34 snj Exp $
-#
+# $NetBSD: Makefile,v 1.22 2004/08/03 12:12:54 adam Exp $
-DISTNAME= hexedit-1.2.2
-PKGREVISION= 2
+DISTNAME= hexedit-1.2.10
CATEGORIES= editors
-MASTER_SITES= http://www.chez.com/prigaux/
+MASTER_SITES= http://merd.net/pixel/
EXTRACT_SUFX= .src.tgz
MAINTAINER= tech-pkg@NetBSD.org
-HOMEPAGE= http://www.chez.com/prigaux/hexedit.html
+HOMEPAGE= http://merd.net/pixel/hexedit.html
COMMENT= To view and edit files in hexadecimal or ASCII
-WRKSRC= ${WRKDIR}/hexedit
-GNU_CONFIGURE= yes
-USE_BUILDLINK3= yes
-
-post-install:
- ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/hexedit
-.for file in COPYING Changes TODO
- ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/hexedit
-.endfor
+WRKSRC= ${WRKDIR}/hexedit
+USE_BUILDLINK3= yes
+GNU_CONFIGURE= yes
.include "../../devel/ncurses/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"