pkgsrc-Changes archive

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

CVS commit: pkgsrc/mk/tools



Module Name:    pkgsrc
Committed By:   leot
Date:           Wed May 15 10:49:28 UTC 2019

Modified Files:
        pkgsrc/mk/tools: autoconf.mk automake.mk

Log Message:
mk/tools: Add support for autoconf*:test and automake*:test

Thanks to <martin> for catching the unintended autoconf tool dependency!


To generate a diff of this commit:
cvs rdiff -u -r1.20 -r1.21 pkgsrc/mk/tools/autoconf.mk
cvs rdiff -u -r1.30 -r1.31 pkgsrc/mk/tools/automake.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/mk/tools/autoconf.mk
diff -u pkgsrc/mk/tools/autoconf.mk:1.20 pkgsrc/mk/tools/autoconf.mk:1.21
--- pkgsrc/mk/tools/autoconf.mk:1.20    Wed Aug 22 20:48:37 2018
+++ pkgsrc/mk/tools/autoconf.mk Wed May 15 10:49:28 2019
@@ -1,4 +1,4 @@
-# $NetBSD: autoconf.mk,v 1.20 2018/08/22 20:48:37 maya Exp $
+# $NetBSD: autoconf.mk,v 1.21 2019/05/15 10:49:28 leot Exp $
 #
 # Copyright (c) 2005 The NetBSD Foundation, Inc.
 # All rights reserved.
@@ -95,6 +95,8 @@ AUTOCONF_REQD?=               2.50
 
 .    if !empty(USE_TOOLS:Mautoconf\:run)
 _TOOLS_DEPMETHOD.autoconf=     DEPENDS
+.    elif !empty(USE_TOOLS:Mautoconf\:test)
+_TOOLS_DEPMETHOD.autoconf=     TEST_DEPENDS
 .    else
 _TOOLS_DEPMETHOD.autoconf=     TOOL_DEPENDS
 .    endif
@@ -134,6 +136,8 @@ AUTOCONF_REQD?=             2.13
 
 .    if !empty(USE_TOOLS:Mautoconf213\:run)
 _TOOLS_DEPMETHOD.autoconf213=  DEPENDS
+.    elif !empty(USE_TOOLS:Mautoconf213\:test)
+_TOOLS_DEPMETHOD.autoconf=     TEST_DEPENDS
 .    else
 _TOOLS_DEPMETHOD.autoconf213=  TOOL_DEPENDS
 .    endif

Index: pkgsrc/mk/tools/automake.mk
diff -u pkgsrc/mk/tools/automake.mk:1.30 pkgsrc/mk/tools/automake.mk:1.31
--- pkgsrc/mk/tools/automake.mk:1.30    Sat Dec  1 04:58:55 2018
+++ pkgsrc/mk/tools/automake.mk Wed May 15 10:49:28 2019
@@ -1,4 +1,4 @@
-# $NetBSD: automake.mk,v 1.30 2018/12/01 04:58:55 wiz Exp $
+# $NetBSD: automake.mk,v 1.31 2019/05/15 10:49:28 leot Exp $
 #
 # Copyright (c) 2005 The NetBSD Foundation, Inc.
 # All rights reserved.
@@ -115,6 +115,8 @@ AUTOCONF_REQD?=             2.58
 
 .    if !empty(USE_TOOLS:Mautomake\:run)
 _TOOLS_DEPMETHOD.automake=     DEPENDS
+.    elif !empty(USE_TOOLS:Mautomake\:test)
+_TOOLS_DEPMETHOD.automake=     TEST_DEPENDS
 .    else
 _TOOLS_DEPMETHOD.automake=     TOOL_DEPENDS
 .    endif
@@ -140,6 +142,8 @@ AUTOCONF_REQD?=             2.13
 
 .    if !empty(USE_TOOLS:Mautomake14\:run)
 _TOOLS_DEPMETHOD.automake14=   DEPENDS
+.    elif !empty(USE_TOOLS:Mautomake14\:test)
+_TOOLS_DEPMETHOD.automake=     TEST_DEPENDS
 .    else
 _TOOLS_DEPMETHOD.automake14=   TOOL_DEPENDS
 .    endif



Home | Main Index | Thread Index | Old Index