2007-12-02 12:33:01 by Thomas Klausner | Files touched by this commit (1) |
Log message:
Remove Ex-MASTER_SITE. From Zafer Aydogan.
|
2007-07-31 21:22:10 by Roland Illig | Files touched by this commit (2) |
Log message:
Fixed a gcc4 warning that pointed to really buggy code. Pointed out in
PR 36713.
|
2007-03-07 12:04:41 by Roland Illig | Files touched by this commit (1) |
Log message:
Added a kerberos option. Fixes PR 12292.
|
2006-09-04 10:47:17 by Martti Kuparinen | Files touched by this commit (3) |
Log message:
Reset MAINTAINER as I don't have time to maintain this any more.
|
2006-08-06 07:16:51 by Krister Walfridsson | Files touched by this commit (13) |
Log message:
Reomove BROKEN_IN for packages that built in the latest
NetBSD 3.0_STABLE/i386 bulk build.
|
2006-07-19 21:14:40 by Johnny C. Lam | Files touched by this commit (43) |
Log message:
Drop support for LTCONFIG_OVERRIDE. For quite a long time, pkgsrc
had actually been ignoring LTCONFIG_OVERRIDE anyway and just using
the default LIBTOOL_OVERRIDE to replace libtool scripts in packages.
This just formalizes the fact that LTCONFIG_OVERRIDE is not used
meaningfully by pkgsrc.
|
2006-06-21 15:50:47 by Johnny C. Lam | Files touched by this commit (6) |
Log message:
Fully convert to using the pkginstall framework, and make the rc.d script
use /etc/rc.subr. Bump the PKGREVISION to 3.
|
2006-06-21 15:49:55 by Johnny C. Lam | Files touched by this commit (2) |
Log message:
This is a Makefile, not a shell script... don't set SHELL="/bin/sh",
but rather SHELL=/bin/sh. This fixes the error noted in the bulk
build results:
http://mail-index.netbsd.org/pkgsrc-bulk/2006/06/20/0000.html
|
2006-05-18 22:30:02 by Thomas Klausner | Files touched by this commit (65) |
Log message:
Mark as BROKEN_IN pkgsrc-2006Q1 according to
ftp://ftp.NetBSD.org/pub/pkgsrc/misc/kristerw/pkgstat/i386-3.0/20060501.1050/broken.html
|
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.
|