summaryrefslogtreecommitdiff
path: root/mk/platform
AgeCommit message (Collapse)AuthorFilesLines
2006-12-19Add share/locale/si for gdm-2.16.4.wiz22-22/+110
2006-12-15Remove trailing spaces.martti1-2/+2
2006-11-18Added an empty line to make "make help topic=ABI" work better.rillig1-1/+2
2006-10-06Kill ancient runes: /usr/local as LOCALBASE was not the default forjoerg1-17/+1
ages and mk.conf from bootstrap sets it explicitly anyway. The pkg_install stuff also lives in sbin.
2006-10-06Always use LOCALBASE setting from mk/defaults/mk.conf.joerg5-14/+5
Setting it with ?= in the platform files is a nop anyway.
2006-09-18Define "NOLOGIN" to "/usr/bin/false" rather than ${FALSE} (which doesn'ttron1-3/+2
contain the directory name) and don't set "_PKG_USER_SHELL" which should really be private to "bsd.pkginstall.mk".
2006-09-12Add the nds@NFE locale directory, initially used by yelp-2.16.0.jmmv13-13/+65
2006-09-12Add a bunch of Spanish locale directories (es_*), initially used byjmmv13-13/+689
gnome2-applets-2.16.0.
2006-09-10Add the gn locale directory, initially used by gnome-menus 2.16.0.jmmv13-13/+65
2006-09-10improve imake support on IRIX 5schwarz1-4/+2
2006-09-07Add the share/gtk-doc/html directory. This is already used by severaljmmv13-13/+65
packages that do not remove this at all, and others will be migrated to use it in the future.
2006-08-06Add the mg locale directory (to be used by libgtop2).jmmv13-13/+65
2006-08-06Handle the share/pkgconfig directory where platform-independent packagesjmmv13-13/+39
(e.g. gtk-doc 1.6) want to install .pc files.
2006-07-20Remove USE_GNU_GETTEXT from pkgsrc. Packages generally only neededjlam13-26/+13
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-07-20Remove ${SED} check that no longer works.jlam1-19/+1
2006-07-12Add bn_IN locale for atk-1.12.1.wiz13-13/+65
2006-07-10Back out revision 1.172 of mk/tools/replace.mk -- we never want tojlam1-4/+1
allow IMAKE to be set by anything other than the tools framework. Modify the IRIX files so that the native imake is listed as a built-in tool in the case where X11_TYPE is "native". Also, move the include of tools/default.mk a bit lower in bsd.prefs.mk so that tools.${OPSYS}.mk files can use the value of X11_TYPE. This should properly set and point IMAKE to the right binary on IRIX without destroying the configuration for platforms where IMAKE was not explicitly set, i.e. every non-IRIX platform.
2006-04-12Add INSTALL_GAME_DIR to complement INSTALL_GAME_DATA. The directoriesjoerg12-12/+24
are group-writeable by the games user on those platforms, where GAMEMODE includes setgid. It defaults to PKGDIRMODE otherwise.
2006-04-10Modified xmkmf support for Darwin and IRIX:schwarz2-4/+33
- on Darwin, pkgsrc no longer tries to set user or group when installing as unprivileged user, i.e. with UNPRIVILEGED set to yes. - on IRIX (5 and 6) the system's xmkmf config files are no longer modified. Instead copies (that take priority with pkgsrc's xmkmf) are used for that purpose.
2006-04-09Remove ua locale dir again, it was a typo.wiz22-110/+22
2006-04-08Add ua (Ukraine) locale dir for xchm-1.6.wiz22-22/+110
2006-04-08Add dz locale, used by glib2-2.10.2.wiz22-22/+110
2006-04-02Add the ca_ES@valencian directory, initially used by gaim 2.0.0beta3.jmmv13-13/+65
2006-04-01require libtool >=1.5.22nb3 for /bin/sh fix.grant1-2/+3
2006-03-21Add the pa_IN locale directory, initially used by the iso-codes 0.50jmmv13-13/+65
package (coming after the freeze).
2006-03-18Remove leftover code sections guarded by _USE_PLIST_MODULE which wasjlam13-117/+13
mainlined long ago.
2006-02-22Add man/ru/*.wiz21-21/+987
2006-02-22Drop trailing whitespace.wiz14-1377/+1377
2006-02-16Add nl_BE and sv_SE locale dirs for gourmet.wiz22-22/+198
2006-02-10Add es_NI locale, for gnucash-devel.wiz22-22/+110
2006-02-06Set required libtool version to 1.5.22nb1, to skip regression issue in thetv1-1/+2
original 1.5.22 package.
2006-01-28Add zh_HK locale for gtk2+-2.8.11.wiz22-22/+110
2006-01-12Initial commit of a new module that encapsulates all of the codejlam13-13/+104
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.
2006-01-10Also set ABI like SGI does; from Benjamin Shi.christos1-1/+2
2006-01-06set the LIBABISUFFIX to 64 for amd64...christos1-1/+4
2005-12-11Add the 'km' locale, initially used by kde3-i18n-km 3.5.0.markd13-13/+65
2005-12-08Pass correct flags to install.sh to invoke IRIX's strip commandjschauma1-2/+2
2005-12-05Applied all quoting fixes found by "pkglint --autofix".rillig1-3/+3
2005-12-04Add IMAKE_GAMEMAN_SUFFIX and IMAKE_GAMEMAN_DIR to allow PLISTsjoerg13-13/+39
to pick up the correct locations. XXX Default values are guessed, x11/xsnow can be used for testing
2005-11-16Add lo and ss locale directories, used by the upcoming audio/amarokseb13-13/+117
update.
2005-11-09libtool-base-1.5.18nb6:tv1-1/+2
Fix major problem brought to the surface by buildlink3 on Interix. For C++ or F77 libraries only, the soname did not always make it into the final binary, resulting in runtime link failures in some cases and runtime linking with a missing major version in others. This is unfortunately a flag day for Interix + pkgsrc. Identifying all the PKGREVISIONs normally requiring a bump is a little too unwieldy. However, existing binaries not experiencing the runtime link failure will continue to run, but will be linking against the unversioned ".so" at runtime until the binaries have been rebuilt. While here, fix a couple wrong assumptions in the libtool config for Interix. shlibvar_overrides_runpath should have been "no", and hardcode_direct should have been "yes".
2005-11-09DragonFly does not provide an X11, so default to X.org's X11.reed1-1/+4
This is the X11 tested and used by the pkgsrc developers on DragonFly. And far as I know, this is the only X11 used on DragonFly -- not saying that others are not used though.
2005-11-06Bless FreeBSD with the usergroup functions used by DragonFly.joerg1-1/+2
2005-11-04Add comment about possibly supporting SIOCGIFADDR in the future.tv1-1/+8
2005-11-01Abstract [LOWER_]OS_VERSION into a ${...:sh} construct, so that other OStv1-10/+1
blocks can override it without running the commands at all. Move Interix [LOWER_]OS_VERSION speedup hack into bsd.prefs.mk, since it must happen early at runtime. While here, speed up the OS_VERSION calculation slightly for OSF1.
2005-11-01Add some extra default overrides for Interix, to:tv1-1/+44
- speed up the build (avoiding a few != settings that are inferrable instead) - reduce the number of settings that the user needs to have in mk.conf
2005-10-31Force recognition of hstrerror(3) on Interix when GNU_CONFIGURE.tv1-1/+4
2005-10-28Implement usergroupfuncs for DragonFly using pw(8).joerg1-1/+2
2005-10-27a.out has never existed on DragonFly; that OS was created long after itstv1-2/+2
parent (FreeBSD) went ELF-only.
2005-10-27UnixWare has never used a.out. It descends directly from SVR4, and thustv1-2/+2
is ELF by definition.