pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/sysutils/munin-doc Fixed the case when PREFIX != "/usr...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/a39103dcec7b
branches:  trunk
changeset: 515406:a39103dcec7b
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Sun Jul 02 10:37:29 2006 +0000

description:
Fixed the case when PREFIX != "/usr/pkg". The ifdef directive of GNU
Make takes a variable _name_, not its value as argument.

diffstat:

 sysutils/munin-doc/distinfo         |  4 ++--
 sysutils/munin-doc/patches/patch-aa |  8 ++++----
 2 files changed, 6 insertions(+), 6 deletions(-)

diffs (36 lines):

diff -r 7a3d8545ecc0 -r a39103dcec7b sysutils/munin-doc/distinfo
--- a/sysutils/munin-doc/distinfo       Sun Jul 02 10:34:55 2006 +0000
+++ b/sysutils/munin-doc/distinfo       Sun Jul 02 10:37:29 2006 +0000
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.1.1.1 2006/06/08 19:03:34 he Exp $
+$NetBSD: distinfo,v 1.2 2006/07/02 10:37:29 rillig Exp $
 
 SHA1 (munin_1.3.1.tar.gz) = f7783b645abbb25524c3f1b6e0fe27185f1de3db
 RMD160 (munin_1.3.1.tar.gz) = a6ea4e1839f4c787457e4051d55007b7bcebd1d4
 Size (munin_1.3.1.tar.gz) = 315743 bytes
-SHA1 (patch-aa) = f4c75a11a5fa026d968a2685f55061c74f51e537
+SHA1 (patch-aa) = f17112a37d968d507bee23069d580c98ee8b1807
 SHA1 (patch-ad) = 8accd3875324035f2c95903fc37cee4b4a55948a
diff -r 7a3d8545ecc0 -r a39103dcec7b sysutils/munin-doc/patches/patch-aa
--- a/sysutils/munin-doc/patches/patch-aa       Sun Jul 02 10:34:55 2006 +0000
+++ b/sysutils/munin-doc/patches/patch-aa       Sun Jul 02 10:37:29 2006 +0000
@@ -1,4 +1,4 @@
-$NetBSD: patch-aa,v 1.1.1.1 2006/06/08 19:03:34 he Exp $
+$NetBSD: patch-aa,v 1.2 2006/07/02 10:37:29 rillig Exp $
 
 --- Makefile.config.orig       2005-01-10 11:38:22.000000000 +0100
 +++ Makefile.config
@@ -7,10 +7,10 @@
  # the base of the Munin installation.
  # 
 -PREFIX     = $(DESTDIR)/opt/munin
-+ifdef $(PREFIX)
-+UPREFIX=$(PREFIX)
++ifdef PREFIX
++UPREFIX    = $(DESTDIR)$(PREFIX)
 +else
-+UPREFIX=/usr/pkg
++UPREFIX=   = $(DESTDIR)/usr/pkg
 +endif
  
  # Where Munin keeps its configurations (server.conf, client.conf, ++)



Home | Main Index | Thread Index | Old Index