summaryrefslogtreecommitdiff
path: root/mk/platform/OSF1.mk
AgeCommit message (Collapse)AuthorFilesLines
2008-09-22Reverting my previous openmotif->lesstif changes.ahoka1-2/+2
2008-09-14As the openmotif license doesnt allow usage on close source systems,ahoka1-2/+2
there is no good reason to be default on those platforms. Change the default to lesstif on AIX, BSDOS, Darwin, HPUX, Interix, OSF1.
2008-05-20Use gamin instead of fam on OSF1. Closes PR pkg/31489.tnn1-1/+4
2008-01-16Delete comment about bmake not accepting .SHELL, that PR was fixed longtnn1-9/+4
ago ... XXX: I would enable /bin/ksh as bmake's default shell but it fails on one of the bmake unit tests. Will need to figure out why ... Maybe some day we can provide a posixly correct shell as part of the bootstrap process.
2007-10-19Reverted the last changes, which factored out some definitions that arerillig1-3/+9
usually the same on the supported platforms. The reason for having duplicate code in these files is to make it easier to port pkgsrc to a new platform: You just have to copy one of the existing platform files and edit the values in it. With some values factored out, you would have to look at one more file. Pointed out by agc@.
2007-10-18Factored out the parts that are common between all the supportedrillig1-9/+3
platforms, mainly because it wouldn't have made sense to document the variables in one of those files, but they need to be documented somewhere. Added the file defaults.mk, which now serves as the reference document which provides useful default values and _explains_ the variables.
2007-10-16Allow PKGLOCALEDIR to be overridden.tnn1-2/+2
2007-07-29* Add new emulator framework in pkgsrc/mk/emulator that handles alljlam1-1/+3
binary-only packages that require binary "emulation" on the native operating system. Please see pkgsrc/mk/emulator/README for more details. * Teach the plist framework to automatically use any existing PLIST.${EMUL_PLATFORM} as part of the default PLIST_SRC definition. * Convert all of the binary-only packages in pkgsrc to use the emulator framework. Most of them have been tested to install and deinstall correctly. This involves the following cleanup actions: * Remove use of custom PLIST code and use PLIST.${EMUL_PLATFORM} more consistently. * Simplify packages by using default INSTALL and DEINSTALL scripts instead of custom INSTALL/DEINSTALL code. * Remove "SUSE_COMPAT32" and "PKG_OPTIONS.suse" from pkgsrc. Packages only need to state exactly which emulations they support, and the framework handles any i386-on-x86_64 or sparc-on-sparc64 uses. * Remove "USE_NATIVE_LINUX" from pkgsrc. The framework will automatically detect when the package is installing on Linux. Specific changes to packages include: * Bump the PKGREVISIONs for all of the suse100* and suse91* packages due to changes in the +INSTALL/+DEINSTALL scripts used in all of the packages. * Remove pkgsrc/emulators/suse_linux, which is unused by any packages. * cad/lc -- remove custom code to create the distinfo file for all supported platforms; just use "emul-fetch" and "emul-distinfo" instead. * lang/Cg-compiler -- install the shared libraries under ${EMULDIR} instead of ${PREFIX}/lib so that compiled programs will find the shared libraries. * mail/thunderbird-bin-nightly -- update to latest binary distributions for supported platforms. * multimedia/ns-flash -- update Linux version to 9.0.48 as the older version is no longer available for interactive fetch. * security/uvscan -- set LD_LIBRARY_PATH explicitly so that it's not necessary to install library symlinks into ${EMULDIR}/usr/local/lib. * www/firefox-bin-flash -- update Linux version to 9.0.48 as the older version is no longer available for interactive fetch.
2007-04-14correct ulimit commands, cleanup obsolete definitionstnn1-8/+5
2007-04-11OSF1 uses ECOFF libraries. Rename COFF to ECOFF to distinguish it from othertnn1-2/+2
variants of COFF.
2007-04-11Kill _OPSYS_RPATH_NAME; it was renamed to COMPILER_RPATH_FLAG years ago.tnn1-2/+1
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.