2008-05-11 16:29:23 by Tonnerre Lombard | Files touched by this commit (8) |
Log message:
Fix several plists that use imake after some modifications in the imake
framework several monthes ago. This resolves various build problems on
Linux.
Should fix PR 37646. Patch from cheusov. Confirmed by joerg.
|
2007-07-16 00:56:23 by Roland Illig | Files touched by this commit (1) |
Log message:
Oops, forgot to rename a variable in all instances.
|
2007-07-16 00:09:35 by Roland Illig | Files touched by this commit (1) |
Log message:
Using the SUBST framework instead of self-written code.
|
2007-06-15 16:47:06 by Johnny C. Lam | Files touched by this commit (1) |
Log message:
Use the standard SETUID_ROOT_PERMS definition, which defaults to 4555.
|
2007-02-22 20:27:30 by Thomas Klausner | Files touched by this commit (721) |
Log message:
Whitespace cleanup, courtesy of pkglint.
Patch provided by Sergey Svishchev in private mail.
|
2007-01-02 15:58:53 by Roland Illig | Files touched by this commit (1) |
Log message:
Fixed PKGMANDIR.
|
2006-12-18 12:15:19 by Matthias Scheler | Files touched by this commit (1) |
Log message:
Fix build with "CHECK_PERMS=yes":
1.) Ignore directory "lib/X11/xmcd/discog" because it's supposed to be
group writable.
2.) Don't install binaries as setuid-root and writable.
|
2006-12-15 21:33:06 by Joerg Sonnenberger | Files touched by this commit (236) |
Log message:
Mechanically replace all includes of buildlink3.mk of the following
packages with the modular Xorg equivalent. Those are falling back
to the old location by default, so this commmit doesn't change
dependencies.
graphics/xpm ==> x11/libXpm
fonts/Xft2 ==> x11/libXft
x11/Xfixes ==> x11/libXfixes
x11/xcursor ==> x11/libXcursor
x11/Xrender ==> x11/libXrender
x11/Xrandr ==> libXrandr
|
2006-10-04 22:44:20 by Thomas Klausner | Files touched by this commit (45) |
Log message:
Update MASTER_SITES and HOMEPAGE, from Sergey Svishchev.
|
2006-03-14 02:14:36 by Johnny C. Lam | Files touched by this commit (134) |
Log message:
Modify the pkginstall framework so that it manages all aspects of
INSTALL/DEINSTALL script creation within pkgsrc.
If an INSTALL or DEINSTALL script is found in the package directory,
it is automatically used as a template for the pkginstall-generated
scripts. If instead, they should be used simply as the full scripts,
then the package Makefile should set INSTALL_SRC or DEINSTALL_SRC
explicitly, e.g.:
INSTALL_SRC= ${PKGDIR}/INSTALL
DEINSTALL_SRC= # emtpy
As part of the restructuring of the pkginstall framework internals,
we now *always* generate temporary INSTALL or DEINSTALL scripts. By
comparing these temporary scripts with minimal INSTALL/DEINSTALL
scripts formed from only the base templates, we determine whether or
not the INSTALL/DEINSTALL scripts are actually needed by the package
(see the generate-install-scripts target in bsd.pkginstall.mk).
In addition, more variables in the framework have been made private.
The *_EXTRA_TMPL variables have been renamed to *_TEMPLATE, which are
more sensible names given the very few exported variables in this
framework. The only public variables relating to the templates are:
INSTALL_SRC INSTALL_TEMPLATE
DEINSTALL_SRC DEINSTALL_TEMPLATE
HEADER_TEMPLATE
The packages in pkgsrc have been modified to reflect the changes in
the pkginstall framework.
|