diff options
author | wiz <wiz@pkgsrc.org> | 2009-01-08 16:14:16 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2009-01-08 16:14:16 +0000 |
commit | 3241a569c14c449bf5cf4c85c934986529474a2c (patch) | |
tree | 588bae1bef6b363c48c079d9d2ce354ba29441d4 /converters/convmv/patches/patch-aa | |
parent | 0155c98d1262cce49712b7c06d589174141425ba (diff) | |
download | pkgsrc-3241a569c14c449bf5cf4c85c934986529474a2c.tar.gz |
Update to 1.13:
1.13
- move non fatal Perl bug checks into the help screen output
- fix Perl warnings when wrong/unknown charset is used
- run check for some essential Encode functionality at every startup
- add --fixdouble option to only fix files that are double-UTF-8 encoded
- add --parsable option to allow convmv output parsable suggestions for external tools to to something with it
- add --preserve-mtimes option to restore mtimes of parent directories
- allow an argv to be a symlink
- don't checksum deleted files in tar ball and use sha256 now
- allow skippig of certain test suite tests, useful for OS X to skip NFC/NFD related stuff, for example "make test SKIPTESTS=nfd-test,someothertest" will skip that test(s)
Diffstat (limited to 'converters/convmv/patches/patch-aa')
-rw-r--r-- | converters/convmv/patches/patch-aa | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/converters/convmv/patches/patch-aa b/converters/convmv/patches/patch-aa index 295070b473a..24baf89b7cb 100644 --- a/converters/convmv/patches/patch-aa +++ b/converters/convmv/patches/patch-aa @@ -1,16 +1,20 @@ -$NetBSD: patch-aa,v 1.2 2008/02/11 23:28:46 heinz Exp $ +$NetBSD: patch-aa,v 1.3 2009/01/08 16:14:16 wiz Exp $ - make variables overridable and thus the build process more flexible Submitted upstream. ---- Makefile.orig Thu Jul 24 16:46:30 2003 +--- Makefile.orig 2008-11-29 14:49:38.000000000 +0100 +++ Makefile -@@ -1,14 +1,18 @@ - DESTDIR= +@@ -1,17 +1,21 @@ +-DESTDIR= -PREFIX=/usr/local -MANDIR=$(PREFIX)/share/man ++DESTDIR?= +PREFIX?=/usr/local +MANDIR?=$(PREFIX)/share/man + TAR=tar + FIND=find + SED=sed +INSTALL_MAN_DIR?=mkdir -p +INSTALL_SCRIPT_DIR?=mkdir -p +INSTALL_MAN?=cp @@ -23,10 +27,10 @@ $NetBSD: patch-aa,v 1.2 2008/02/11 23:28:46 heinz Exp $ - mkdir -p $(DESTDIR)$(PREFIX)/bin/ - cp convmv.1.gz $(DESTDIR)$(MANDIR)/man1/ - install -m 755 convmv $(DESTDIR)$(PREFIX)/bin/ -+ ${INSTALL_MAN_DIR} $(DESTDIR)$(MANDIR)/man1 -+ ${INSTALL_SCRIPT_DIR} $(DESTDIR)$(PREFIX)/bin -+ ${INSTALL_MAN} convmv.1.gz $(DESTDIR)$(MANDIR)/man1 -+ ${INSTALL_SCRIPT} convmv $(DESTDIR)$(PREFIX)/bin ++ ${INSTALL_MAN_DIR} $(DESTDIR)$(MANDIR)/man1/ ++ ${INSTALL_SCRIPT_DIR} $(DESTDIR)$(PREFIX)/bin/ ++ ${INSTALL_MAN} convmv.1.gz $(DESTDIR)$(MANDIR)/man1/ ++ ${INSTALL_SCRIPT} convmv $(DESTDIR)$(PREFIX)/bin/ manpage: pod2man --section 1 --center=" " convmv | gzip > convmv.1.gz |