diff options
author | agc <agc@pkgsrc.org> | 2001-11-21 13:44:44 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2001-11-21 13:44:44 +0000 |
commit | 89257b87f11c68fedb78e6db33d859b5293f0221 (patch) | |
tree | 5a9075ee4fd60243a2c8953452c320d4bbb40583 /mk/defs.NetBSD.mk | |
parent | 03c35761dff107fdc50dc97e1e75b976f27bef37 (diff) | |
download | pkgsrc-89257b87f11c68fedb78e6db33d859b5293f0221.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.NetBSD.mk')
-rw-r--r-- | mk/defs.NetBSD.mk | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/mk/defs.NetBSD.mk b/mk/defs.NetBSD.mk index 7eef980a3e7..8c2f192414f 100644 --- a/mk/defs.NetBSD.mk +++ b/mk/defs.NetBSD.mk @@ -1,4 +1,4 @@ -# $NetBSD: defs.NetBSD.mk,v 1.14 2001/11/21 13:17:14 agc Exp $ +# $NetBSD: defs.NetBSD.mk,v 1.15 2001/11/21 13:44:44 agc Exp $ # # Variable definitions for the NetBSD operating system. @@ -70,6 +70,8 @@ ROOT_GROUP?= wheel _DO_LIBINTL_CHECKS= yes # perform checks for valid libintl _DO_SHLIB_CHECKS= yes # fixup PLIST for shared libs/run ldconfig -_IMAKE_MAKE= ${MAKE} # program which gets invoked by imake -_PATCH_BACKUP_ARG= -b # switch to patch(1) to provide a backup file -_USE_RPATH= yes # 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= -b # switch to patch(1) to provide a backup file +_PREFORMATTED_MAN_DIR= cat # directory where catman pages are +_USE_RPATH= yes # add rpath to LDFLAGS |