diff options
author | ryoon <ryoon@pkgsrc.org> | 2013-06-09 05:40:33 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2013-06-09 05:40:33 +0000 |
commit | e292f9742096e190997e6704a47ac456c6265fb5 (patch) | |
tree | 691f0145a13f4f16eaf1537189ceacd9ac24949d /editors/hexedit | |
parent | 617323d60caf2a6bdedfebc3bcee02db7669f26a (diff) | |
download | pkgsrc-e292f9742096e190997e6704a47ac456c6265fb5.tar.gz |
Update to 1.2.13
* Remove obsolete DESTDIR patch.
Changelog:
february 2013:
- fix displaying sector number when above 2^31
- fix potential file descriptor leak (thanks to Rich Burridge)
- add DESTDIR support to the makefiles
- preprocessor flags should use CPPFLAGS, not CFLAGS
- fix a small issue in mymemmem/mymemrmem when HAVE_MEMMEM/HAVE_MEMRMEM is not defined
Diffstat (limited to 'editors/hexedit')
-rw-r--r-- | editors/hexedit/Makefile | 4 | ||||
-rw-r--r-- | editors/hexedit/distinfo | 9 | ||||
-rw-r--r-- | editors/hexedit/patches/patch-ac | 14 |
3 files changed, 6 insertions, 21 deletions
diff --git a/editors/hexedit/Makefile b/editors/hexedit/Makefile index 6f74c8c7f30..2016ab0567e 100644 --- a/editors/hexedit/Makefile +++ b/editors/hexedit/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.30 2012/10/03 11:43:35 asau Exp $ +# $NetBSD: Makefile,v 1.31 2013/06/09 05:40:33 ryoon Exp $ -DISTNAME= hexedit-1.2.12 +DISTNAME= hexedit-1.2.13 CATEGORIES= editors MASTER_SITES= http://rigaux.org/ EXTRACT_SUFX= .src.tgz diff --git a/editors/hexedit/distinfo b/editors/hexedit/distinfo index faeee842cb7..5e15ee52146 100644 --- a/editors/hexedit/distinfo +++ b/editors/hexedit/distinfo @@ -1,7 +1,6 @@ -$NetBSD: distinfo,v 1.10 2010/01/29 19:45:03 joerg Exp $ +$NetBSD: distinfo,v 1.11 2013/06/09 05:40:33 ryoon Exp $ -SHA1 (hexedit-1.2.12.src.tgz) = fee89e390945045fe6b74b5f07600a8e664c8b21 -RMD160 (hexedit-1.2.12.src.tgz) = 76f30d62e5c4b18fdba60cf7852641ba2b547dbb -Size (hexedit-1.2.12.src.tgz) = 65802 bytes -SHA1 (patch-ac) = 348afc4a215a026df59ee9a1923d3b92dba7eb51 +SHA1 (hexedit-1.2.13.src.tgz) = 1acb7ca37063d9f4b4d118ef223548fde3b753f1 +RMD160 (hexedit-1.2.13.src.tgz) = cb4fe716cf8f3bfb614ea890aec20d7865e2c271 +Size (hexedit-1.2.13.src.tgz) = 68778 bytes SHA1 (patch-ae) = 49627dd5704fb9cd7b6ac08d01d3324ff2d2babd diff --git a/editors/hexedit/patches/patch-ac b/editors/hexedit/patches/patch-ac deleted file mode 100644 index 9f462b9d6ec..00000000000 --- a/editors/hexedit/patches/patch-ac +++ /dev/null @@ -1,14 +0,0 @@ -$NetBSD: patch-ac,v 1.7 2010/01/29 19:45:03 joerg Exp $ - ---- Makefile.in.orig Thu Oct 25 00:00:51 2001 -+++ Makefile.in -@@ -40,7 +40,5 @@ - rm -f Makefile config.h - - install: $(PRODUCT) -- $(INSTALL) -d -m 755 $(bindir) -- $(INSTALL) -s -m 755 $(PRODUCT) $(bindir) -- $(INSTALL) -d -m 755 $(mandir)/man1 -- $(INSTALL) -m 644 $(PRODUCT).1 $(mandir)/man1 -+ $(BSD_INSTALL_PROGRAM) $(PRODUCT) ${DESTDIR}$(bindir) -+ $(BSD_INSTALL_DATA) $(PRODUCT).1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/ |