diff options
author | jperkin <jperkin@pkgsrc.org> | 2015-11-03 10:48:55 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2015-11-03 10:48:55 +0000 |
commit | 387cef6e20aa202218f3c3998b28903b4b9113a2 (patch) | |
tree | 0d50378e86b09a5a1107aed266f1a505c7cd58c7 | |
parent | 83578df0b39e124f0e094911bdf1d4993986db65 (diff) | |
download | pkgsrc-387cef6e20aa202218f3c3998b28903b4b9113a2.tar.gz |
Fix PKGMANDIR handling.
-rw-r--r-- | sysutils/tree/distinfo | 4 | ||||
-rw-r--r-- | sysutils/tree/patches/patch-Makefile | 12 |
2 files changed, 12 insertions, 4 deletions
diff --git a/sysutils/tree/distinfo b/sysutils/tree/distinfo index 75d2661f123..729f80cd48f 100644 --- a/sysutils/tree/distinfo +++ b/sysutils/tree/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.11 2014/04/29 07:10:09 wiz Exp $ +$NetBSD: distinfo,v 1.12 2015/11/03 10:48:55 jperkin Exp $ SHA1 (tree-1.7.0.tgz) = 35bd212606e6c5d60f4d5062f4a59bb7b7b25949 RMD160 (tree-1.7.0.tgz) = 238a8d89b3a993679dad68fef871b3d7d0011354 Size (tree-1.7.0.tgz) = 47082 bytes -SHA1 (patch-Makefile) = fa796fe0bf6cc364ea4741250a2ae81b91b6afab +SHA1 (patch-Makefile) = b2b3fd1538b524989ea7e1938091977df8b518b8 SHA1 (patch-tree.c) = 4c33a0105c8ab08edf5da7ea62ed9332d3f97725 diff --git a/sysutils/tree/patches/patch-Makefile b/sysutils/tree/patches/patch-Makefile index 016b4b1887f..6022dccc708 100644 --- a/sysutils/tree/patches/patch-Makefile +++ b/sysutils/tree/patches/patch-Makefile @@ -1,12 +1,20 @@ -$NetBSD: patch-Makefile,v 1.4 2014/04/29 07:07:26 wiz Exp $ +$NetBSD: patch-Makefile,v 1.5 2015/11/03 10:48:55 jperkin Exp $ * Fix build on systems lacking strverscmp. * Use CFLAGS that were passed in * Fix DESTDIR. +* Fix PKGMANDIR. --- Makefile.orig 2014-04-18 17:35:39.000000000 +0000 +++ Makefile -@@ -30,14 +30,14 @@ OBJS=tree.o unix.o html.o xml.o json.o h +@@ -24,20 +24,20 @@ VERSION=1.7.0 + TREE_DEST=tree + BINDIR=${prefix}/bin + MAN=tree.1 +-MANDIR=${prefix}/man/man1 ++MANDIR=${prefix}/${MANSUBDIR}/man1 + OBJS=tree.o unix.o html.o xml.o json.o hash.o color.o + # Uncomment options below for your particular OS: # Linux defaults: |