diff options
author | agc <agc> | 2001-11-21 13:44:44 +0000 |
---|---|---|
committer | agc <agc> | 2001-11-21 13:44:44 +0000 |
commit | 67049e56d4fad2f2e77fe423b666a94d5cd22566 (patch) | |
tree | 5a9075ee4fd60243a2c8953452c320d4bbb40583 /mk/defs.Darwin.mk | |
parent | 67057f4642206816d14bdcb13075412b1ced130b (diff) | |
download | pkgsrc-67049e56d4fad2f2e77fe423b666a94d5cd22566.tar.gz |
Add _OPSYS_HAS_MANZ and _PREFORMATTED_MAN_DIR definitions to the
individual defs.${OPSYS}.mk files, and use them in bsd.pkg.mk.
+ _OPSYS_HAS_MANZ defines whether or not the OS does MANZ handling as standard
+ _PREFORMATTED_MAN_DIR is the name of directory (cat or man) where
preformatted manual pages go.
Rename the internal definitions used in the generation of PLIST files to
start with '_'.
This completes the "generic" changes to bsd.pkg.mk.
Diffstat (limited to 'mk/defs.Darwin.mk')
-rw-r--r-- | mk/defs.Darwin.mk | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/mk/defs.Darwin.mk b/mk/defs.Darwin.mk index 676f0abdaa8..a6491363f2d 100644 --- a/mk/defs.Darwin.mk +++ b/mk/defs.Darwin.mk @@ -1,4 +1,4 @@ -# $NetBSD: defs.Darwin.mk,v 1.10 2001/11/21 13:17:14 agc Exp $ +# $NetBSD: defs.Darwin.mk,v 1.11 2001/11/21 13:44:44 agc Exp $ # # Variable definitions for the Darwin operating system. @@ -61,6 +61,8 @@ ROOT_GROUP?= wheel _DO_LIBINTL_CHECKS= yes # perform checks for valid libintl _DO_SHLIB_CHECKS= no # on installation, fixup PLIST for shared libs -_IMAKE_MAKE= ${MAKE} # program which gets invoked by imake -_PATCH_BACKUP_ARG= -z # switch to patch(1) for backup file -_USE_RPATH= no # don't add rpath to LDFLAGS +_IMAKE_MAKE= ${MAKE} # program which gets invoked by imake +_OPSYS_HAS_MANZ= yes # MANZ controls gzipping of man pages +_PATCH_BACKUP_ARG= -z # switch to patch(1) for backup file +_PREFORMATTED_MAN_DIR= cat # directory where catman pages are +_USE_RPATH= no # don't add rpath to LDFLAGS |