summaryrefslogtreecommitdiff
path: root/mk/platform/OSF1.mk
AgeCommit message (Collapse)AuthorFilesLines
2006-12-15Remove trailing spaces.martti1-2/+2
2006-07-20Remove USE_GNU_GETTEXT from pkgsrc. Packages generally only neededjlam1-2/+1
it for plurals support, but that is already handled correctly (FSVO "correctly") by the pkgsrc/mk/tools/msgfmt.sh script. Also remove _USE_GNU_GETTEXT definitions from pkgsrc/mk/platform/*.mk files as that value has been unused by pkgsrc for quite some time (going back several branches).
2006-03-18Remove leftover code sections guarded by _USE_PLIST_MODULE which wasjlam1-9/+1
mainlined long ago.
2006-01-12Initial commit of a new module that encapsulates all of the codejlam1-1/+8
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.
2005-12-04Add IMAKE_GAMEMAN_SUFFIX and IMAKE_GAMEMAN_DIR to allow PLISTsjoerg1-1/+3
to pick up the correct locations. XXX Default values are guessed, x11/xsnow can be used for testing
2005-06-04IMAKE_FILEMAN_SUFFIX is 4 on Solaris and (as I read it) OSF1 and UnixWare.markd1-3/+3
2005-06-01Turn IMAKE_MAKE into a public variable that may be set via /etc/mk.conf.jlam1-3/+3
2005-05-22Remove the old tools framework and references to _USE_NEW_TOOLS.jlam1-70/+1
2005-05-03Teach the new tools framework about INSTALL and set the appropriatejlam1-2/+2
default value for each platform. Currently, the replacement tools comes from sysutils/coreutils, but where there is no native BSD install program, bootstrap-pkgsrc should probably be made to provide an install shell script as an alternative, and mk/tools/bootstrap.mk should be amended accordingly. Also remove one use of ${TYPE} in pkgsrc (bsd.pkg.mk) under the new tools framework.
2005-05-03First pass at converting pkgsrc to use the new tools framework (stilljlam1-10/+13
not on by default). Separate out the variable defintions that are now made by the new tools framework. Some of the trickier platforms (AIX, IRIX, Interix, OSF1) still need more work.
2005-05-03Back out part of a change from revision 1.756 of bsd.pkg.mk. It wasjlam1-2/+1
a mistake to include "GZIP" as an ${OPSYS}-specific variable as there is nothing ${OPSYS}-specific there to tune. Define GZIP in defaults/mk.conf instead, and remove the definition from each of the existing platform/${OPSYS}.mk files.
2005-03-18Fix a gleaming illustration of why using YES/NO variables everywheretv1-1/+3
possible, just for the sake of doing so, is not a good thing to do: The platform files define _STRIPFLAG_* to determine whether to strip things. But since this is included in bsd.prefs.mk, ".if ..." checks cannot take things set in the Makefile into account. So convert INSTALL_UNSTRIPPED=YES to a defined/undefined variable check in bsd.pkg.mk, and use the :D:U idiom in the _STRIPFLAG_* variables. This should fix PR pkg/28772 and PR pkg/29031.
2005-01-28Don't make pkgsrc depend on dc(1) to be present in the system. Sincejlam1-2/+1
we already use awk so pervasively in pkgsrc, simply use awk in place of dc for simple computations.
2004-11-20add framework support for Tru64 and the Compaq C compiler.grant1-0/+146
patches provided by Tobias Nygren <tnn at netilium dot org> with minor changes by me.