Commit graph

94837 commits

Author SHA1 Message Date
jlam
e10b319ed7 Fix xemacs packages to honor PKGINFODIR in the default INFOPATH when
reading info files.  Also strip the split info files from the PLIST
as the plist module handles them automatically.  Lastly, define
INFO_FILES so that the pkginstall framework properly manages the "dir"
info file database index in the xemacs info directory.

Bump the PKGREVISION.
2006-03-20 18:21:29 +00:00
jlam
741aecb607 * Nuke all references to and definitions of INFO_DIR in package Makefiles
and replace with appropriate references to PKGINFODIR instead.

* Properly account for split info files during installation.

* Move info file listings directly into the package PLISTs.

This fixes info-file-related PLIST problems.
2006-03-20 18:15:37 +00:00
jlam
6132a5c760 Remove patch made unnecessary because the tools framework hides the
GNU auto* tools automatically.
2006-03-20 18:09:52 +00:00
jlam
c5eaa10696 * Honor PKGINFODIR and PKGMANDIR, and remove use of obsolete INFO_DIR.
* List info files directly in the PLIST.
* Don't install the catman pages at all to fix PLIST problems.

Bump the PKGREVISION to 6.
2006-03-20 18:05:22 +00:00
jlam
068ab199e0 * Honor PKGINFODIR and drop use of obsolete INFO_DIR.
* List the info files directly in the PLIST.
2006-03-20 17:16:13 +00:00
jlam
316bdc86fb * Set GNU_CONFIGURE_INFODIR to specify a special location for the info
files.  Passing --infodir directly doesn't work since only the final
  --infodir is honored by configure scripts, and bsd.pkg.mk adds the
  last one based on the setting for GNU_CONFIGURE_INFODIR.  Drop the
  obsolete use of INFO_DIR.

* List the info files directly in the PLIST.

* Fix the build and the PLIST when using xemacs.

Bump the PKGREVISION to 2.
2006-03-20 17:13:57 +00:00
uebayasi
400b674c9b Note initial import of PostgreSQL 8.1.3, from pkgsrc-wip.
This is an overview of new features in 8.1.0 against 8.0.x.  8.1.3 includes
many bug fixes since 8.1.0.  Please read documentation of the detailed changes
and procedure of data migration.

Overview

   Major changes in this release:

   Improve concurrent access to the shared buffer cache (Tom)
          Access to the shared buffer cache was identified as a
          significant scalability problem, particularly on multi-CPU
          systems. In this release, the way that locking is done in the
          buffer manager has been overhauled to reduce lock contention and
          improve scalability. The buffer manager has also been changed to
          use a "clock sweep" replacement policy.

   Allow index scans to use an intermediate in-memory bitmap (Tom)
          In previous releases, only a single index could be used to do
          lookups on a table. With this feature, if a query has "WHERE
          tab.col1 = 4 and tab.col2 = 9", and there is no multicolumn
          index on col1 and col2, but there is an index on col1 and
          another on col2, it is possible to search both indexes and
          combine the results in memory, then do heap fetches for only the
          rows matching both the col1 and col2 restrictions. This is very
          useful in environments that have a lot of unstructured queries
          where it is impossible to create indexes that match all possible
          access conditions. Bitmap scans are useful even with a single
          index, as they reduce the amount of random access needed; a
          bitmap index scan is efficient for retrieving fairly large
          fractions of the complete table, whereas plain index scans are
          not.

   Add two-phase commit (Heikki Linnakangas, Alvaro, Tom)
          Two-phase commit allows transactions to be "prepared" on several
          computers, and once all computers have successfully prepared
          their transactions (none failed), all transactions can be
          committed. Even if a machine crashes after a prepare, the
          prepared transaction can be committed after the machine is
          restarted. New syntax includes "PREPARE TRANSACTION" and
          "COMMIT/ROLLBACK PREPARED". A new system view pg_prepared_xacts
          has also been added.

   Create a new role system that replaces users and groups (Stephen Frost)
          Roles are a combination of users and groups. Like users, they
          can have login capability, and like groups, a role can have
          other roles as members. Roles basically remove the distinction
          between users and groups. For example, a role can:

          + Have login capability (optionally)
          + Own objects
          + Hold access permissions for database objects
          + Inherit permissions from other roles it is a member of

          Once a user logs into a role, she obtains capabilities of the
          login role plus any inherited roles, and can use "SET ROLE" to
          switch to other roles she is a member of. This feature is a
          generalization of the SQL standard's concept of roles. This
          change also replaces pg_shadow and pg_group by new role-capable
          catalogs pg_authid and pg_auth_members. The old tables are
          redefined as read-only views on the new role tables.

   Automatically use indexes for MIN() and MAX() (Tom)
          In previous releases, the only way to use an index for MIN() or
          MAX() was to rewrite the query as "SELECT col FROM tab ORDER BY
          col LIMIT 1". Index usage now happens automatically.

   Move /contrib/pg_autovacuum into the main server (Alvaro)
          Integrating autovacuum into the server allows it to be
          automatically started and stopped in sync with the database
          server, and allows autovacuum to be configured from
          "postgresql.conf".

   Add shared row level locks using SELECT ... FOR SHARE (Alvaro)
          While PostgreSQL's MVCC locking allows "SELECT" to never be
          blocked by writers and therefore does not need shared row locks
          for typical operations, shared locks are useful for applications
          that require shared row locking. In particular this reduces the
          locking requirements imposed by referential integrity checks.

   Add dependencies on shared objects, specifically roles (Alvaro)
          This extension of the dependency mechanism prevents roles from
          being dropped while there are still database objects they own.
          Formerly it was possible to accidentally "orphan" objects by
          deleting their owner. While this could be recovered from, it was
          messy and unpleasant.

   Improve performance for partitioned tables (Simon)
          The new constraint_exclusion configuration parameter avoids
          lookups on child tables where constraints indicate that no
          matching rows exist in the child table.

          This allows for a basic type of table partitioning. If child
          tables store separate key ranges and this is enforced using
          appropriate "CHECK" constraints, the optimizer will skip child
          table accesses when the constraint guarantees no matching rows
          exist in the child table.
2006-03-20 14:51:21 +00:00
uebayasi
b79cc5ce5a postgresql81 has moved from wip to pkgsrc. 2006-03-20 14:48:45 +00:00
uebayasi
16f80e0e50 Add postgresql81, postgresql81-client, postgresql81-plperl,
postgresql81-plpython, postgresql81-pltcl, and postgresql81-server.
2006-03-20 14:47:43 +00:00
uebayasi
8370df5f81 Initial import of PostgreSQL 8.1.3, from pkgsrc-wip.
This is an overview of new features in 8.1.0 against 8.0.x.  8.1.3 includes
many bug fixes since 8.1.0.  Please read documentation of the detailed changes
and procedure of data migration.

Overview

   Major changes in this release:

   Improve concurrent access to the shared buffer cache (Tom)
          Access to the shared buffer cache was identified as a
          significant scalability problem, particularly on multi-CPU
          systems. In this release, the way that locking is done in the
          buffer manager has been overhauled to reduce lock contention and
          improve scalability. The buffer manager has also been changed to
          use a "clock sweep" replacement policy.

   Allow index scans to use an intermediate in-memory bitmap (Tom)
          In previous releases, only a single index could be used to do
          lookups on a table. With this feature, if a query has "WHERE
          tab.col1 = 4 and tab.col2 = 9", and there is no multicolumn
          index on col1 and col2, but there is an index on col1 and
          another on col2, it is possible to search both indexes and
          combine the results in memory, then do heap fetches for only the
          rows matching both the col1 and col2 restrictions. This is very
          useful in environments that have a lot of unstructured queries
          where it is impossible to create indexes that match all possible
          access conditions. Bitmap scans are useful even with a single
          index, as they reduce the amount of random access needed; a
          bitmap index scan is efficient for retrieving fairly large
          fractions of the complete table, whereas plain index scans are
          not.

   Add two-phase commit (Heikki Linnakangas, Alvaro, Tom)
          Two-phase commit allows transactions to be "prepared" on several
          computers, and once all computers have successfully prepared
          their transactions (none failed), all transactions can be
          committed. Even if a machine crashes after a prepare, the
          prepared transaction can be committed after the machine is
          restarted. New syntax includes "PREPARE TRANSACTION" and
          "COMMIT/ROLLBACK PREPARED". A new system view pg_prepared_xacts
          has also been added.

   Create a new role system that replaces users and groups (Stephen Frost)
          Roles are a combination of users and groups. Like users, they
          can have login capability, and like groups, a role can have
          other roles as members. Roles basically remove the distinction
          between users and groups. For example, a role can:

          + Have login capability (optionally)
          + Own objects
          + Hold access permissions for database objects
          + Inherit permissions from other roles it is a member of

          Once a user logs into a role, she obtains capabilities of the
          login role plus any inherited roles, and can use "SET ROLE" to
          switch to other roles she is a member of. This feature is a
          generalization of the SQL standard's concept of roles. This
          change also replaces pg_shadow and pg_group by new role-capable
          catalogs pg_authid and pg_auth_members. The old tables are
          redefined as read-only views on the new role tables.

   Automatically use indexes for MIN() and MAX() (Tom)
          In previous releases, the only way to use an index for MIN() or
          MAX() was to rewrite the query as "SELECT col FROM tab ORDER BY
          col LIMIT 1". Index usage now happens automatically.

   Move /contrib/pg_autovacuum into the main server (Alvaro)
          Integrating autovacuum into the server allows it to be
          automatically started and stopped in sync with the database
          server, and allows autovacuum to be configured from
          "postgresql.conf".

   Add shared row level locks using SELECT ... FOR SHARE (Alvaro)
          While PostgreSQL's MVCC locking allows "SELECT" to never be
          blocked by writers and therefore does not need shared row locks
          for typical operations, shared locks are useful for applications
          that require shared row locking. In particular this reduces the
          locking requirements imposed by referential integrity checks.

   Add dependencies on shared objects, specifically roles (Alvaro)
          This extension of the dependency mechanism prevents roles from
          being dropped while there are still database objects they own.
          Formerly it was possible to accidentally "orphan" objects by
          deleting their owner. While this could be recovered from, it was
          messy and unpleasant.

   Improve performance for partitioned tables (Simon)
          The new constraint_exclusion configuration parameter avoids
          lookups on child tables where constraints indicate that no
          matching rows exist in the child table.

          This allows for a basic type of table partitioning. If child
          tables store separate key ranges and this is enforced using
          appropriate "CHECK" constraints, the optimizer will skip child
          table accesses when the constraint guarantees no matching rows
          exist in the child table.
2006-03-20 14:45:49 +00:00
jlam
b9c9e9c92b Note that this package uses C++. 2006-03-20 07:42:28 +00:00
jlam
48c33558de * Set GNU_CONFIGURE_PREFIX instead of setting each of the --bindir,
--infodir, --mandir, etc.  As a side-effect, this corrects the location
  of the installed info files and man pages to be under "gdbada".

* Pass LDFLAGS through to the build via MAKE_FLAGS so that pkgsrc's rpath
  flags are passed to the linker.

* Remove deprecated USE_NEW_TEXINFO.

* List info files in the PLIST instead of the package Makefile.

Bump the PKGREVISION to 2.
2006-03-20 07:26:29 +00:00
wiz
245ff921a0 Note gnumeric PKGREVISION bump. 2006-03-20 07:16:26 +00:00
wiz
ecd30ce90f Do not build perl plugin:
it is broken on 3.0, and makes the compilation fail on -current,
because the name of the dynamic library is transformed by bl3
and then the transformed name is handed off to ar(1), which then
doesn't find it.

Bump PKGREVISION.
2006-03-20 07:14:36 +00:00
martti
793dff41ba xfce4-utils-4.2.3nb3 2006-03-20 06:29:30 +00:00
martti
2a382a9c94 Updated x11/xfce4-utils to 4.2.3nb3
Fix the 'id -u' issue on Solaris (pkg/33027). The remaining changes (like
sshagent startup) should go via xfce.org.
2006-03-20 06:29:09 +00:00
martti
2cbefd82ad proftpd-1.3.0rc5 2006-03-20 05:53:00 +00:00
martti
14dde59a63 Updated net/proftpd to 1.3.0rc5
The 1.3.0rc5 release includes a number of minor bugfixes, including a
workaround for getting proper timestamps in chrooted process logs
if glibc-2.3 is present, and a fix for daemon processes hanging when
shutting down on Mac OS X.
2006-03-20 05:52:48 +00:00
jlam
26e00a350f Replace INFO_DIR with EMACS_INFOPREFIX, which is the correct location for
info files for both emacs and xemacs.  Handle the split info file case
correctly when installing the info files.
2006-03-20 05:35:58 +00:00
jlam
9e69d02625 Replace INFO_DIR with EMACS_INFOPREFIX, which is the correct location for
info files for both emacs and xemacs.  Install the info files correctly
by handling the case where there may be split info files.  List the info
files in the PLIST.  Use EMACS_MODULES where appropriate to replace the
conditional dependency on xemacs-packages.  Bump the PKGREVISION.
2006-03-20 05:34:27 +00:00
jlam
0a3bd63e8a Use EMACS_MODULES instead of EMACS_USE_LEIM and the conditional dependency
on xemacs-packages.  In the "lookup" option dependency, correct the
package dependency name in the xemacs case by fixing a typo.  Bump the
PKGREVISION to 4.
2006-03-20 05:30:33 +00:00
jlam
fcd3480c66 Bump PKGREVISION for previous since the xemacs-packages dependency changed. 2006-03-20 05:28:37 +00:00
jlam
7ed707faba Use EMACS_MODULES appropriately to replace EMACS_USE_LEIM and conditional
dependency on xemacs-packages.
2006-03-20 05:27:50 +00:00
jlam
78c3fbd8fe Create a new variable EMACS_MODULES that is a list of "standard" elisp
modules that is required by the package.  The allowed modules are
"base" and "leim".  EMACS_USE_LEIM is deprecated and should be replaced
with EMACS_MODULES+=leim.
2006-03-20 05:24:33 +00:00
jlam
87a4e19255 Remove a patch made unnecessary since the tools framework already
appropriately hides "makeinfo".  Install possibly split info files
correctly, and install them all into ${EMACS_INFOPREFIX}, which is
correct for either Emacs or XEmacs.  List the info files in the PLIST.
Bump the PKGREVISION to 2.
2006-03-20 04:59:08 +00:00
jlam
f7b1a25702 Use PKGINFODIR to refer to the installation directory for info files.
Modify the default INFOPATH to use ${PKGINFODIR} consistently.  List
the info files in the PLIST.  Bump the PKGREVISON to 4.
2006-03-20 04:23:37 +00:00
jlam
f771f3e5f9 Add CONFLICT with gcpio (libexec/rmt). Bump PKGREVISION to 2. 2006-03-20 04:15:42 +00:00
jlam
129ff4b22e * Add a CONFLICT with gtar-base (libexec/rmt).
* LIBS is an "OPSYS" variable, so avoid the unnecessary conditional.
* List the info files in the PLIST.

Bump the PKGREVISION to 3.
2006-03-20 04:14:47 +00:00
jlam
2c46420eaf * Remove unnecessary INSTALL and DEINSTALL scripts and replace with an
appropriate OWN_DIRS_PERMS definition.

* Simplify the patches by overriding the value of CONFDIR at build time
  and at installation time.

* Honor PKGINFODIR and PKGMANDIR.

Bump PKGREVISION to 4 due to INSTALL script changes.
2006-03-20 04:09:37 +00:00
jlam
c26dbe6d03 Honor PKGINFODIR and clean up the install process to avoid an unnecessary
pre-install target.
2006-03-20 03:59:39 +00:00
jlam
ba5ff8e067 Honor PKGINFODIR and PKGMANDIR. 2006-03-20 03:53:27 +00:00
jlam
29fefe52e3 * Creates a new variable PKGINFODIR (named similarly to PKGMANDIR)
that is a purely user-settable variable to represent the relative
  path under ${PREFIX} where info files are stored and "dir" files
  are managed.  PKGINFODIR defaults to "info".  INFO_DIR still works,
  but will be obsoleted after the 2006Q1 branch.

* Modify GNU_CONFIGURE_INFODIR to only honor ${PKGINFODIR} if the
  package installs directly into ${PREFIX} and not some subdirectory
  under ${PREFIX}.  This fixes packages that don't really honor
  $(infodir) all that well, and also avoids PLIST problems relating
  to directory removal for those packages.

* Since the majority of Emacs Lisp packages use GNU_CONFIGURE, just
  set GNU_CONFIGURE_INFODIR directly to ${EMACS_INFOPREFIX}, which is
  the Emacs-distro-specific location for info files.  Also pass
  EMACS_INFOPREFIX through PLIST_SUBST for PLIST substitution.

* INFO_FILES should be defined if the package installs info files.
  If the info files are not listed in the PLIST, then INFO_FILES
  must list the filenames for the info files installed by the package,
  which are assumed to be located in ${PREFIX}/${PKGINFODIR}.

* The plist module can now better detect info files listed in PLISTs
  and exports a command to the pkginstall module to append info file
  names to the +INFO_FILES scriptlet at install-time.

* The print-PLIST target is updated to properly list info files in
  the auto-generated PLIST.

* The check-files code is updated to skip all "dir" Info database files.
2006-03-20 01:48:57 +00:00
jlam
44b11e928c Modify the INSTALL script to allow for selective unpacking of a scriptlet. 2006-03-19 23:58:14 +00:00
jlam
766f664aef Teach the tools framework about "texi2html". 2006-03-19 23:40:07 +00:00
kristerw
af346ae99f Do not use ${INSTALL} to copy files into ${WRKSRC} -- this is wrong for
e.g. NetBSD 1.6 whose /usr/bin/install does not set -c by default.

${CP} is much better if you just want to copy a file...
2006-03-19 22:36:03 +00:00
jmmv
29554842aa Break too-long line. 2006-03-19 22:17:44 +00:00
joerg
39f413f8d7 Add DragonFly support. 2006-03-19 22:10:38 +00:00
joerg
4f4f2784c1 PLIST change in net-snmp for DragonFly support. 2006-03-19 22:04:05 +00:00
joerg
fd121328ce Add DragonFly support. Bump revision due to PLIST changes. 2006-03-19 22:03:29 +00:00
minskim
550e9bad97 Turn off optimization as a workaround for PR toolchain/33097. No PKGREVSION
bump because this package has never built in bulk-builds since the last bump.
Remove BROKEN_IN.
2006-03-19 20:06:05 +00:00
adrianp
acc9e2db4c Watchout for shared directories
Standardise MESSAGE
2006-03-19 16:54:35 +00:00
adrianp
2d5e7120d8 Make pkglint happy
Watchout for shared directories
2006-03-19 16:53:22 +00:00
joerg
16eb5cfa6d Since the usergroup frameworks requires explicit groups for each users,
just create a cvmlog group as well.
2006-03-19 16:11:07 +00:00
joerg
dc2f820d75 DragonFly support. 2006-03-19 15:57:36 +00:00
wiz
88289cd3dd Mention darcs and wxhaskell PKGREVISION bumps. 2006-03-19 15:54:59 +00:00
wiz
d63e65f2fa Manually add dependency on gmp. Should be implied by ghc dependency,
but that doesn't seem to work.

Workaround for PR 33100.
Bump PKGREVISION.
2006-03-19 15:54:13 +00:00
wiz
cd05be9343 + GConf2-2.14.0, ImageMagick-6.2.6.4, evolution-data-server-1.6.0,
glitz-0.5.3, gnome-desktop-2.14.0, libcdio-0.77, nautilus-2.14.0,
  p5-Image-Info-1.20, p5-Locale-Maketext-Lexicon-0.54, p5-MIME-tools-5.420,
  qt3-libs-3.3.6, shared-mime-info-0.17.
2006-03-19 15:41:25 +00:00
wiz
bdcab8cc62 Fix installation after info framework changes. 2006-03-19 15:26:57 +00:00
joerg
c0b3d5c378 Don't thrash %ebx in inline assembly, fixes GCC 3.4+. 2006-03-19 15:05:39 +00:00
jdolecek
846e1b7945 ftp.fi.muni.cz mirrors GNU, CPAN and CTAN, add it to the appropriate
MASTER_SITE_* lists as a courtesy for Czech users
2006-03-19 13:12:53 +00:00