2012-03-23 12:00:14 by OBATA Akio | Files touched by this commit (2) |
Log message:
Add missing RCS Id to patch-aa.
|
2010-03-21 17:29:44 by Thomas Klausner | Files touched by this commit (66) |
Log message:
Reset maintainer, developer lost his commit bit.
|
2010-02-12 00:59:39 by Joerg Sonnenberger | Files touched by this commit (1) |
Log message:
DESTDIR support
|
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-10-10 02:27:30 by Dan McMahill | Files touched by this commit (1) |
Log message:
Don't try and install the man page on solaris. It is broken with
solaris nroff right now. This lets this package build and package on
solaris.
|
2006-10-03 02:30:05 by Jeremy C. Reed | Files touched by this commit (3) |
Log message:
Change test string checking to use one equal sign.
Noticed on NetBSD when my print job didn't work
(using pdq and foomatic-rip).
Bump package revision.
I also reported upstream.
|
2006-06-16 00:13:59 by Johnny C. Lam | Files touched by this commit (21) |
Log message:
Pluralize INSTALL_TEMPLATE and DEINSTALL_TEMPLATE variable names as per
the pkglint warning:
As {INSTALL,DEINSTALL}_TEMPLATE is modified using "+=", its name
should indicate plural.
This does make the variables a bit more suggestive of the fact that they
hold lists of values.
|
2006-06-15 22:40:16 by Johnny C. Lam | Files touched by this commit (37) |
Log message:
Split out deinstall portions of INSTALL scripts into DEINSTALL scripts.
This avoids the need for a confusing line of the form:
DEINSTALL_TEMPLATE+= path/to/INSTALL
in the package Makefile, and actually removes the need to specify it
altogether since by convention, the existence of the DEINSTALL script
is enough to add it to DEINSTALL_TEMPLATE.
|
2006-06-04 18:26:56 by Joerg Sonnenberger | Files touched by this commit (73) |
Log message:
Fix CONFLICTS of php/pear packages, the asterix was missing (thanks tv).
While going through the tree, fix some more packages which had similiar
issues with too strict conflicts, bump the revisions of those.
|
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.
|