diff options
author | jlam <jlam@pkgsrc.org> | 2006-01-12 23:43:56 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2006-01-12 23:43:56 +0000 |
commit | 8e0e10d3faa21afcadcb62ad06e910bae8750a48 (patch) | |
tree | 549e889f813ac3835ae3b1d7708def459c235461 /mk/platform/OSF1.mk | |
parent | 30e5711ea4afb02f54e4eeba5cf1abc88bbaec78 (diff) | |
download | pkgsrc-8e0e10d3faa21afcadcb62ad06e910bae8750a48.tar.gz |
Initial commit of a new module that encapsulates all of the code
for manipulating PLISTs. This module is not used by default pending
more widespread testing -- currently the variable _USE_PLIST_MODULE
must be defined in /etc/mk.conf to enable its use.
The main features of the new PLIST module are:
(1) Splits out the PLIST-handling code from bsd.pkg.mk into a
separate "plist" module.
(2) Splits out giant, multi-line awk scripts stored in make
variables into separate awk scripts that may be joined
together to post-process PLISTs. Each of these awk scripts
consolidates the processing for one set of files, e.g.,
man pages, info pages, etc., and is more easily commented
than a make variable.
(3) Splits out the print-PLIST code from the regular PLIST code
since they have no common pieces (print-plist.mk vs.
plist.mk).
(4) Completely re-implements the shared-library handling to be
more efficient. Along the way, this also fixes a problem
for Mac OS X users where the PLISTs incorrectly contained
absolute paths.
(5) Completely re-implements the info-file handling so that we
can migrate from INFO_FILES definitions to just adding
info/foo.info entries in the static PLISTs.
(6) Adds commented-out support for automatically compressed or
decompressed info page entries based on the value of MANZ.
These changes will be activated after texinfo.mk has been
replaced by something that is built using the more modern
primitives now available in pkgsrc.
(7) Move the file compression logic into a separate script
"doc-compress" that compresses or decompresses files while
minding symlinks. This script is now called by bsd.pkg.mk
to do the "autmoatic man page handling". In the future,
it will also handle the "automatic info page handling" and
possible others.
In general, the idea is to move stuff out of the Makefiles and into
separate files where we don't need to worry about quoting rules
and where each file can have a separate history of commits. This
simplifies the makefile logic (especially in terms of readability)
and also simplifies maintenance of the code.
Diffstat (limited to 'mk/platform/OSF1.mk')
-rw-r--r-- | mk/platform/OSF1.mk | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/mk/platform/OSF1.mk b/mk/platform/OSF1.mk index fca4f399342..8b47b0989c7 100644 --- a/mk/platform/OSF1.mk +++ b/mk/platform/OSF1.mk @@ -1,4 +1,4 @@ -# $NetBSD: OSF1.mk,v 1.10 2005/12/04 01:44:30 joerg Exp $ +# $NetBSD: OSF1.mk,v 1.11 2006/01/12 23:43:57 jlam Exp $ # # Variable definitions for the OSF1 operating system. @@ -47,8 +47,13 @@ IMAKE_LIBMAN_DIR= ${IMAKE_MAN_SOURCE_PATH}3 IMAKE_FILEMAN_DIR= ${IMAKE_MAN_SOURCE_PATH}4 IMAKE_GAMEMAN_DIR= ${IMAKE_MAN_SOURCE_PATH}6 IMAKE_MANNEWSUFFIX= 1 +.if defined(_USE_PLIST_MODULE) +IMAKE_MANINSTALL?= maninstall catinstall +.endif +.if !defined(_USE_PLIST_MODULE) _DO_SHLIB_CHECKS= yes # fixup PLIST +.endif .if exists(/usr/include/netinet/ip6.h) _OPSYS_HAS_INET6= yes # IPv6 is standard .else @@ -63,7 +68,9 @@ _OPSYS_RPATH_NAME= -rpath, # name of symbol in rpath directive to linker _OPSYS_SHLIB_TYPE= COFF # type of shared lib _PATCH_CAN_BACKUP= yes # native patch(1) can make backups _PATCH_BACKUP_ARG?= -b -V simple -z # switch to patch(1) for backup suffix +.if !defined(_USE_PLIST_MODULE) _PREFORMATTED_MAN_DIR= cat # directory where catman pages are +.endif _USE_GNU_GETTEXT= yes # Don't use GNU gettext _USE_RPATH= yes # add rpath to LDFLAGS |