2008-04-13 00:43:15 by Johnny C. Lam | Files touched by this commit (370) |
Log message:
Convert to use PLIST_VARS instead of manually passing "@comment "
through PLIST_SUBST to the plist module.
|
2007-07-26 14:24:52 by Joerg Sonnenberger | Files touched by this commit (1) |
Log message:
Thinking again, include bsd.prefs.mk *first* and override CHECK_PERMS
afterwards, the user might have set it.
|
2007-07-26 14:24:08 by Joerg Sonnenberger | Files touched by this commit (1) |
Log message:
Skip the permission check for libkver as well to avoid cyclic
dependencies.
|
2007-05-19 00:44:32 by Joerg Sonnenberger | Files touched by this commit (1) |
Log message:
Silence make. If /sbin/sysctl is static or non-existent, ldd would return
an error and make complain rather verbosely. Use || true to hide that
error.
|
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.
|
2006-08-11 16:44:29 by Takahiro Kambe | Files touched by this commit (1) |
Log message:
Fix compile problem on gcc-4; added simply includes of <stdio.h>.
|
2006-06-01 00:10:30 by Stoned Elipot | Files touched by this commit (1) |
Log message:
placate pkglint
|
2006-06-01 00:04:55 by Stoned Elipot | Files touched by this commit (1) |
Log message:
If I should be steward of one be it this one!
|
2006-04-09 19:47:47 by Quentin Garnier | Files touched by this commit (1) |
Log message:
Adapt sysctl prototype for -current. The boundary is chosen as 3.99.16.
The broken area is -current between Feb 24th 2006 and Mar 2nd 2006.
Fixes PR#33226 by Cesar Catrian Carreno.
|
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.
|