diff options
author | rillig <rillig> | 2015-03-11 19:24:44 +0000 |
---|---|---|
committer | rillig <rillig> | 2015-03-11 19:24:44 +0000 |
commit | 4a0e8414530de409ea9e7d3309dceacd818a949b (patch) | |
tree | 3777a350c2ef9a986658006d649a79e180cf6c19 | |
parent | 526dd44338e2b11819a66e5239e78ad38ea79d49 (diff) | |
download | pkgsrc-4a0e8414530de409ea9e7d3309dceacd818a949b.tar.gz |
Added "bmake help" documentation for using libtool and pkg-config.
-rw-r--r-- | mk/help/libtool.help | 7 | ||||
-rw-r--r-- | mk/help/pkg-config.help | 8 | ||||
-rw-r--r-- | mk/tools/automake.mk | 4 |
3 files changed, 18 insertions, 1 deletions
diff --git a/mk/help/libtool.help b/mk/help/libtool.help new file mode 100644 index 00000000000..ac867b2d305 --- /dev/null +++ b/mk/help/libtool.help @@ -0,0 +1,7 @@ +# $NetBSD: libtool.help,v 1.1 2015/03/11 19:24:44 rillig Exp $ + +# USE_LIBTOOL +# Packages that use libtool for building shared libraries must set +# this variable to "yes". +# +# Keywords: libtool diff --git a/mk/help/pkg-config.help b/mk/help/pkg-config.help new file mode 100644 index 00000000000..d67ac3f63bc --- /dev/null +++ b/mk/help/pkg-config.help @@ -0,0 +1,8 @@ +# $NetBSD: pkg-config.help,v 1.1 2015/03/11 19:24:44 rillig Exp $ + +# Packages that use pkg-config for managing shared libraries must +# declare: +# +# USE_TOOLS+= pkg-config +# +# Keywords: pkg-config pc diff --git a/mk/tools/automake.mk b/mk/tools/automake.mk index ad7d774e1f7..7fafb95aad3 100644 --- a/mk/tools/automake.mk +++ b/mk/tools/automake.mk @@ -1,4 +1,4 @@ -# $NetBSD: automake.mk,v 1.26 2015/02/16 10:59:39 jperkin Exp $ +# $NetBSD: automake.mk,v 1.27 2015/03/11 19:24:44 rillig Exp $ # # Copyright (c) 2005 The NetBSD Foundation, Inc. # All rights reserved. @@ -70,6 +70,8 @@ # # AUTOMAKE_OVERRIDE= no # +# Keywords: automake +# # Only allow one of "automake" and "automake14" in USE_TOOLS. .if !empty(USE_TOOLS:C/:.*//:Mautomake) && \ |