diff options
author | jlam <jlam@pkgsrc.org> | 2004-09-10 19:51:50 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-09-10 19:51:50 +0000 |
commit | 5073201af908ffcc303a3a184c6d544a84d694a1 (patch) | |
tree | 3fdaad46d2c93446b39ca1fc62fed7e50fe285bc /mk/bsd.pkg.defaults.mk | |
parent | 54c417c67d03bd6a526957aea3e0b6ad02fa8605 (diff) | |
download | pkgsrc-5073201af908ffcc303a3a184c6d544a84d694a1.tar.gz |
* Do the *.la expansion within the current _PLIST_AWK_SCRIPT framework.
We no longer require that LIBTOOL_LA_FILES be defined in the package
Makefile, and the libtool archives should once again be listed in the
PLIST.
* Add a new yes/no variable "LIBTOOLIZE_PLIST" to control whether to
have bsd.pkg.mk automatically expand *.la files in PLISTs into the
true library names represented by the libtool archives.
* Rename the "transform-la" script to "print-la-libnames" which more
correctly reflects its function.
Many thanks to Todd Vierling for the original implementation and for
his contructive comments on how to improve the changes in this commit.
Diffstat (limited to 'mk/bsd.pkg.defaults.mk')
-rw-r--r-- | mk/bsd.pkg.defaults.mk | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/mk/bsd.pkg.defaults.mk b/mk/bsd.pkg.defaults.mk index 3526aaf85b1..b0e6779f67e 100644 --- a/mk/bsd.pkg.defaults.mk +++ b/mk/bsd.pkg.defaults.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.defaults.mk,v 1.279 2004/09/01 02:21:29 uebayasi Exp $ +# $NetBSD: bsd.pkg.defaults.mk,v 1.280 2004/09/10 19:51:50 jlam Exp $ # # A file providing defaults for pkgsrc and the packages collection. @@ -255,6 +255,12 @@ FETCH_RESUME_ARGS?= # empty # Default: -R # Possible: depends on your FETCH_CMD value. +LIBTOOLIZE_PLIST?= no +# This determines whether to expand libtool archives in PLISTs into the +# represented library names. +# Possible: yes, no +# Default: no + PKG_INSTALLATION_PREFS?= overwrite pkgviews # This is a whitespace-separated list of installation types to try when # building a package, in order of preference. |