Commit graph

7632 commits

Author SHA1 Message Date
fredb
f75ed7198c Add and enable htdig. 1999-09-20 02:45:07 +00:00
fredb
fc2dd044f9 Initial import of htdig-3.1.2 package. 1999-09-20 02:40:46 +00:00
tron
2e40173da7 Update dependence on "suse_linux" package. 1999-09-20 00:53:05 +00:00
tron
61dadfb0b3 Adjust for update of SuSE Linux emulation packages. 1999-09-20 00:52:34 +00:00
tron
41c6e8b1dd Assign "DIST_SUBDIR", "MIRROR_DISTFILE", "WRKSRC" and "MANCOMPRESSED" with
"?=" so that they can be overwritten by a package.
1999-09-20 00:51:41 +00:00
tron
0493ff5580 Remove unnecessary "post-install" target. 1999-09-19 23:59:34 +00:00
tron
b6583e7e9b Update SuSE Linux emulation package to version 6.1p1. This patch level
invents a complete new "rpm2pkg" utility which is faster, easier to use
and creates a correct package list more reliably.
1999-09-19 23:58:36 +00:00
mjl
5c2180de06 Update to 1.10.7. 1999-09-19 23:00:39 +00:00
kim
f2c01ca39e Make this work on more operating systems with less effort. 1999-09-19 22:27:36 +00:00
kim
3a0aeb57cb I bet this is needed here too. 1999-09-19 22:07:22 +00:00
kim
ec3a9a1851 I have a feeling USE_LIBZ may be on its way... 1999-09-19 22:06:42 +00:00
kim
93a12a4908 Add and enable zlib. 1999-09-19 21:54:05 +00:00
kim
0c99ebb041 A general purpose data compression library (for Solaris use). 1999-09-19 21:53:29 +00:00
kim
0dd669b887 Unfortunately /usr/bin/patch is not what we want on Solaris. 1999-09-19 19:56:48 +00:00
kim
c67293d211 Make this compile on Solaris. 1999-09-19 19:50:32 +00:00
kim
5e2a374014 Make this look nicer 1999-09-19 19:40:05 +00:00
kim
ac55cc7159 Make this shorter.. 1999-09-19 19:39:37 +00:00
kim
e67338b67c Fix extract here too. 1999-09-19 19:25:00 +00:00
kim
0898a239ab What do you mean "did I ever test this"... 1999-09-19 19:11:32 +00:00
kim
64502a7202 Oops, it is a share for a purpose (assumedly no gzip here yet). 1999-09-19 18:50:11 +00:00
jlam
eca87b2342 Apply fix suggested in PR#7445 to check for existence of group before
adding PostgreSQL user to the group.

Closes PR#7445.
1999-09-19 17:05:31 +00:00
fredb
6c64e5c244 Update afterstep-current to 1.7.149. Bug fixes. 1999-09-19 13:53:50 +00:00
dmcmahill
b80707829d add and enable:
ted-cs
     ted-da
     ted-de
     ted-en-gb
     ted-en-us
     ted-es
     ted-fr
     ted-it
     ted-nl
     ted-no
     ted-pt
     ted-sv
1999-09-19 11:32:52 +00:00
dmcmahill
96435a910d add ted-nl-2.5.
Dutch spelling dictionary for the Ted word processor.
1999-09-19 11:30:46 +00:00
dmcmahill
3a55bdae7d add ted-sv-2.5.
Swedish spelling dictionary for the Ted word processor.
1999-09-19 11:29:36 +00:00
dmcmahill
87e92e2f66 add ted-pt-2.5.
Portuguese spelling dictionary for the Ted word processor.
1999-09-19 11:29:18 +00:00
dmcmahill
b2755dda8f add ted-no-2.5.
Norwegian spelling dictionary for the Ted word processor.
1999-09-19 11:28:59 +00:00
dmcmahill
5808a2af8f add ted-it-2.5.
Italian spelling dictionary for the Ted word processor.
1999-09-19 11:28:12 +00:00
dmcmahill
f90f8768f6 add ted-fr-2.5.
French spelling dictionary for the Ted word processor.
1999-09-19 11:27:54 +00:00
dmcmahill
d850575f9a add ted-es-2.5.
Spanish spelling dictionary for the Ted word processor.
1999-09-19 11:27:36 +00:00
dmcmahill
bc9431fc24 add ted-en-us-2.5.
US English spelling dictionary for the Ted word processor.
1999-09-19 11:27:19 +00:00
dmcmahill
1a3fe7c399 add ted-en-gb-2.5.
UK English spelling dictionary for the Ted word processor.
1999-09-19 11:26:59 +00:00
dmcmahill
ca118ec8ce add ted-de-2.5.
German spelling dictionary for the Ted word processor.
1999-09-19 11:25:13 +00:00
dmcmahill
23b4d649e8 add ted-da-2.5.
Danish spelling dictionary for the Ted word processor.
1999-09-19 11:23:13 +00:00
dmcmahill
71d81adcd7 add ted-cs-2.5.
Czech spelling dictionary for the Ted word processor.
1999-09-19 11:22:51 +00:00
jlam
9c93f7739f Document new PGSQL_USE_TCL variable which enables building the Tcl/Tk
interface for PostgreSQL.
1999-09-19 04:29:11 +00:00
jlam
cbd51db2e0 Update postgresql to 6.5.1. Completely libtoolized and ldconfig statements
removed, but this should still function correctly on a.out systems.  This
package was originally submitted by D'Arcy J.M. Cain, but with major
overhauling by me.

Closes PR#7865 and relevant part of PR#8299.

Major changes from version 6.4.2:

        Multi-version concurrency control(MVCC)
          This removes our old table-level locking, and replaces it with a
         locking system that is superior to most commercial database
         systems. In a traditional system, each row that is modified is
         locked until committed, preventing reads by other users. MVCC
         uses the natural multi-version nature of PostgreSQL to allow
         readers to continue reading consistent data during writer
         activity. Writers continue to use the compact pg_log transaction
         system. This is all performed without having to allocate a lock
         for every row like traditional database systems. So, basically,
         we no longer are restricted by simple table-level locking; we
         have something better than row-level locking.

        Hot backups from pg_dump
          pg_dump takes advantage of the new MVCC features to give a
         consistant database dump/backup while the database stays online
         and available for queries.

        Numeric data type
          We now have a true numeric data type, with user-specified
         precision.

        Temporary tables
          Temporary tables are guaranteed to have unique names within a
         database session, and are destroyed on session exit.

        New SQL features
          We now have CASE, INTERSECT, and EXCEPT statement support. We
         have new LIMIT/OFFSET, SET TRANSACTION ISOLATION LEVEL, SELECT
         ... FOR UPDATE, and an improved LOCK TABLE command.

        Speedups
          We continue to speed up PostgreSQL, thanks to the variety of
         talents within our team. We have sped up memory allocation,
         optimization, table joins, and row transfer routines.

        Ports
          We continue to expand our port list, this time including
         WinNT/ix86 and NetBSD/arm32.

        Interfaces
          Most interfaces have new versions, and existing functionality
         has been improved.

        Documentation
          New and updated material is present throughout the
         documentation. New FAQs have been contributed for SGI and AIX
         platforms. The Tutorial has introductory information on SQL from
         Stefan Simkovics. For the User's Guide, there are reference pages
         covering the postmaster and more utility programs, and a new
         appendix contains details on date/time behavior. The
         Administrator's Guide has a new chapter on troubleshooting from
         Tom Lane. And the Programmer's Guide has a description of query
         processing, also from Stefan, and details on obtaining the
         Postgres source tree via anonymous CVS and CVSup.
1999-09-19 04:24:53 +00:00
dmcmahill
f803a09b14 update CATEGORIES to reflect moving ted. (was print, is textproc) 1999-09-19 02:05:48 +00:00
dmcmahill
83552942d6 add and enable ted 1999-09-19 02:03:07 +00:00
dmcmahill
76e031e596 delete ted from Makefile. ted has been moved to textproc. 1999-09-19 02:00:45 +00:00
dmcmahill
dc343841be Moved from print/ted/pkg/PLIST,v 1999-09-19 01:57:58 +00:00
dmcmahill
e984f8e4a9 Moved to textproc/ted/pkg/PLIST,v 1999-09-19 01:57:57 +00:00
dmcmahill
e6b7a228fa Moved from print/ted/pkg/MESSAGE,v 1999-09-19 01:57:49 +00:00
dmcmahill
509a80b0f1 Moved to textproc/ted/pkg/MESSAGE,v 1999-09-19 01:57:48 +00:00
dmcmahill
fb6825f3b1 Moved from print/ted/pkg/DESCR,v 1999-09-19 01:57:40 +00:00
dmcmahill
5bd29063a3 Moved to textproc/ted/pkg/DESCR,v 1999-09-19 01:57:39 +00:00
dmcmahill
e323d026b9 Moved from print/ted/pkg/COMMENT,v 1999-09-19 01:54:47 +00:00
dmcmahill
5fb1baada5 Moved to textproc/ted/pkg/COMMENT,v 1999-09-19 01:54:46 +00:00
dmcmahill
a1c792a44e Moved from print/ted/patches/patch-aa,v 1999-09-19 01:54:35 +00:00
dmcmahill
52e8bc1f54 Moved to textproc/ted/patches/patch-aa,v 1999-09-19 01:54:34 +00:00