diff options
author | Cheng-Lung Sung <clsung@FreeBSD.org> | 2010-09-06 02:21:18 +0000 |
---|---|---|
committer | Cheng-Lung Sung <clsung@FreeBSD.org> | 2010-09-06 02:21:18 +0000 |
commit | 133dd18d3b78b1559d9ffca849d76a6d8b4fbf5e (patch) | |
tree | 19ed9037650c4a60034426826f8843337846f119 /textproc/diffstat | |
parent | d491ede239a25e445526ae68decc8986e375d29f (diff) |
Notes
Diffstat (limited to 'textproc/diffstat')
-rw-r--r-- | textproc/diffstat/Makefile | 6 | ||||
-rw-r--r-- | textproc/diffstat/distinfo | 6 | ||||
-rw-r--r-- | textproc/diffstat/files/patch-diffstat.c | 11 |
3 files changed, 15 insertions, 8 deletions
diff --git a/textproc/diffstat/Makefile b/textproc/diffstat/Makefile index 5a51b943cf0a..f49294ed5ef4 100644 --- a/textproc/diffstat/Makefile +++ b/textproc/diffstat/Makefile @@ -6,8 +6,7 @@ # PORTNAME= diffstat -PORTVERSION= 1.51 -PORTREVISION= 1 +PORTVERSION= 1.53 CATEGORIES= textproc devel MASTER_SITES= ftp://dickey.his.com/diffstat/ EXTRACT_SUFX= .tgz @@ -21,9 +20,6 @@ MAKEFILE= makefile MAN1= diffstat.1 PLIST_FILES= bin/diffstat -post-patch: .SILENT - ${REINPLACE_CMD} 's/lzcat/xz/' ${WRKSRC}/configure - do-install: ${INSTALL_PROGRAM} ${WRKSRC}/diffstat ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/${MAN1} ${MAN1PREFIX}/man/man1 diff --git a/textproc/diffstat/distinfo b/textproc/diffstat/distinfo index 754d4b326d88..577df6a795cc 100644 --- a/textproc/diffstat/distinfo +++ b/textproc/diffstat/distinfo @@ -1,3 +1,3 @@ -MD5 (diffstat-1.51.tgz) = a7d3fd1ba2a9a6c9e2b32e867b5e8792 -SHA256 (diffstat-1.51.tgz) = c0c83c6eea054cbf0a3a9c0621ae3bef1a9a33914d417f08569159c975644075 -SIZE (diffstat-1.51.tgz) = 209813 +MD5 (diffstat-1.53.tgz) = 0631010aa598a8011259749dd882936a +SHA256 (diffstat-1.53.tgz) = 8110414819b0cac34afb2a0afd244636572db1cefec5e970e7fa4ca5b71e3f75 +SIZE (diffstat-1.53.tgz) = 215069 diff --git a/textproc/diffstat/files/patch-diffstat.c b/textproc/diffstat/files/patch-diffstat.c new file mode 100644 index 000000000000..a96f71419bc8 --- /dev/null +++ b/textproc/diffstat/files/patch-diffstat.c @@ -0,0 +1,11 @@ +--- diffstat.c.orig 2010-08-10 19:27:19.414564698 +0200 ++++ diffstat.c 2010-08-10 19:28:49.625931506 +0200 +@@ -1934,7 +1934,7 @@ is_compressed(const char *name) + } else if (len > 5 && !strcmp(name + len - 5, ".lzma")) { + which = dcLzma; + } else if (len > 3 && !strcmp(name + len - 3, ".xz")) { +- which = dcLzma; ++ which = dcXz; + } else { + which = dcNone; + } |