Commit graph

765 commits

Author SHA1 Message Date
agc
fa9ef25e61 Initial import of rdb-2.6d into the NetBSD Packages Collection.
RDB is a fast, portable Relational Database Management System without
arbitrary limits (other than memory and processor speed). It uses the
"operator/stream" DBMS paradigm. The operators are Unix filters (i.e.
they read STDIN and write STDOUT), so they can be connected by pipes.

Provided in PR 15009 by natej@aol.net, modified by me to conform to
NetBSD standards - use perl buildlink functionality, use REPLACE_PERL,
modify PLIST to conform to standards, general cleanup to pass pkglint.
2001-12-20 17:22:16 +00:00
reinoud
4dae5bda09 Small typo fixes to make `pkglint' happier.... 2001-12-15 22:21:22 +00:00
reinoud
8967b5bd52 Updated SQLite package to version 2.1.7 fixing
1) locking problems due to a few race conditions

2)  fixing a bug in `create temporary table' wich could contaminate the
main database file opened too

3) bug fix in b-tree subsystem that could sometimes cause the first row of
a table to be repeated during a database scan.
2001-12-15 22:18:41 +00:00
martti
c2f822fdc3 Added cdb 2001-12-10 18:12:28 +00:00
martti
e9a6821cc4 Added cdb-0.75 (provided by Amitai Schlair in pkg/14879)
cdb is a fast, reliable, simple package for creating and reading
constant databases.

cdb is designed to be used in mission-critical applications like
e-mail. Database replacement is safe against system crashes. Readers
don't have to pause during a rewrite.
2001-12-10 18:11:46 +00:00
jlam
219833889a Add -Wl flags from LDFLAGS to the EXTRA_LIBS. This allows libpq.so to be
found at run-time, as before, the -Wl,-R options that set the run-time
library search path weren't being used.  Simply using LDFLAGS without
filtering doesn't work because the configure script appends CFLAGS to
LDFLAGS, and some commonly-used compiler options, e.g. -mcpu=..., which
causes python's makesetup to choke because the options aren't in the list
of recognized linker options.  Thanks to D'Arcy J.M. Cain <darcy@druid.net>
for pointing out the error and possible solution.
2001-12-06 03:46:21 +00:00
explorer
d7017509b6 upgrade DBI from 1.19 to 1.20 to fix a nasty memory leak 2001-12-05 17:36:39 +00:00
agc
a3c645a3eb Normalise all the uses of "wheel", and "root" for ${ROOT_GROUP}, now that
the definition is available in all the defs.${OPSYS}.mk files.
2001-12-05 16:03:56 +00:00
reinoud
1aef1825b8 Update sqlite package to version 2.1.4 (2001-12-04) incorporating lockup
bugs removal, fixing the behaviour of comparison operators so that they are
consistent with the order of entries in an index, correct handling of
integers in SQL expressions that are larger than what can be represented by
the machine integer and locking protocol fixes.

The author also incorporated my suggestions after the messy LP64 patches I
made; its now a lot more clean allthough there are still a few warnings but
they are checked and OK.
2001-12-05 02:04:04 +00:00
jlam
b68223d882 Remove unused variables now that we use PKGREVISION. 2001-12-04 15:55:47 +00:00
jlam
478cba00bb By default, prevent invocation of GNU "auto*" driven by the generated
Makefiles during the build process by touching various auto{conf,make}
source files to make them up-to-date.  Packages that require regenerating
the configure script and Makefile.in files should make the appropriate
calls to auto{conf,make} in a pre-configure target.  This allows the
various targets listed in ${_CONFIG_PREREQ} to modify the generated files
without triggering the GNU auto* tools and having the modifications be
overwritten.
2001-12-04 06:14:57 +00:00
jlam
8cc6055063 Use PKGREVISION to manage the package-specific version number when it
differs from the distfile version number.  G/C some the unused variables
in php4/Makefile.common related to the old way of handling version numbers.
2001-12-03 08:30:58 +00:00
jlam
6658ed60e1 Use PKGREVISION to manage the package-specific version number when it
differs from the distfile version number.  G/C some the unused variables
in unixodbc/Makefile.common related to the old way of handling version
numbers.
2001-12-03 08:09:05 +00:00
jlam
35cdfd9d76 Use PKGREVISION to manage the package-specific version number when it
differs from the distfile version number.  G/C some the unused variables
in postgresql/Makefile.common related to the old way of handling version
numbers.
2001-12-03 08:06:24 +00:00
jlam
55ffb37406 bsd.pkg.install.mk calls the INSTALL script at the right times
automatically, so no need to do it ourselves.
2001-12-02 06:56:38 +00:00
mjl
9640be0df1 Update to 0.1021
* Yet another attempt to get rid of those CR/LF line endings. :-(
2001-11-30 14:19:59 +00:00
mjl
832f16ee21 Update to 0.1029
* lib/DBD/CSV.pm (fetch_row): A numeric value must be assigned to $!.
 * lib/DBD/CSV.pm (fetch_row): Changed "undef $!" to "$! = ''".
2001-11-30 14:15:33 +00:00
martti
97e17385d1 Sync with db3. Changes since 2.9.2:
- Fix a bug where calling the env.log_put method caused a core dump. [#3401]
- Fix a bug where the Java lock statistics structure was out-of-date with
  the C version and the documentation. [#3489]
2001-11-30 11:58:31 +00:00
martti
99a86d0869 Updated to 3.11.2 (provided by ORI Manabu in pkg/14765).
This is a bugfix release (too many fixes to list here).

The following link (as long as it exists) gives an overview
of the changes:

http://www.sleepycat.com/update/3.3.11/if.3.3.11.html
2001-11-30 11:58:28 +00:00
jmc
39b16847fe Fix bad path for DEPENDS entry for p5-IO-Socket-SSL 2001-11-30 07:31:43 +00:00
hubertf
5542206cba Get rid of manually adding "nbX" to PKGNAME when a pkg was changed in
pkgsrc. Instead, a new variable PKGREVISION is invented that can get
bumped independent of DISTNAME and PKGNAME.

Example #1:
        DISTNAME=       foo-X.Y
        PKGREVISION=    Z
     => PKGNAME=        foo-X.YnbZ

Example #2:
        DISTNAME=       barthing-X.Y
        PKGNAME=        bar-X.Y
        PKGREVISION=    Z
     => PKGNAME=        bar=X.YnbZ (!)

On subsequent changes, only PKGREVISION needs to be bumped, no more risk
of getting DISTNAME changed accidentally.
2001-11-29 01:12:24 +00:00
kleink
86cb6d973a Update p5-perl-ldap to 0.25; notable changes since 0.23 include:
perl-ldap 0.25 29 Oct 2001
==========================

* Added support for EXTERNAL SASL authentication
* Caller can now specify attributes to return from root_dse
* More scripts added to contrib
* Various bug fixes
* Caller can now specify sslversion for LDAPS and start_tls

perl-ldap 0.24 17 July 2001
===========================

* Added support for startTLS
* Better error checking in Net::LDAP methods
* VLV control now works
* Can now use oid or name for the matchingRule in filter extensible matches
* Major overhaul of LDIF.pm
* $schema->name2oid is now context sensetive
* test suite now works with openldap2
2001-11-28 21:16:13 +00:00
mjl
ddf276511b Update to 0.47, as this is needed by the newest RT. No up to date
changes are available unfortunately.
2001-11-28 14:51:38 +00:00
jlam
96904a0049 Buildlinkify. 2001-11-28 05:20:38 +00:00
jlam
678c0f86f8 Use PKG_{USERS,GROUPS} instead of PKG_{USER,GROUP}. 2001-11-26 20:38:31 +00:00
jlam
6e896e42e0 Forgot a CONFDIR -> PKG_SYSCONFDIR replacement. 2001-11-26 07:30:44 +00:00
jlam
cc4128d97e Buildlinkify, in the sense that only the perl headers are found in
${PREFIX} -- everything else is pickup up from ${BUILDLINK_DIR}.
2001-11-26 06:49:36 +00:00
jlam
ffceca11a9 PKG_SYSCONFDIR is where the configuration files for a package may be found.
This value may be customized in various ways:

PKG_SYSCONFBASE is the main config directory under which all package
	configuration files are to be found.

PKG_SYSCONFSUBDIR is the subdirectory of PKG_SYSCONFBASE under which the
	configuration files for a particular package may be found.

PKG_SYSCONFDIR.${PKGBASE} overrides the value of ${PKG_SYSCONFDIR} for a
	particular package.

Users will typically want to set PKG_SYSCONFBASE to /etc, or accept the
default location of ${PREFIX}/etc.

This obsoletes the use of CONFDIR, which was active for only 6 days, so no
need to have a workaround to still accept old CONFDIR settings.
2001-11-25 18:59:45 +00:00
tron
032fedc78a Use download sites suggested by Indrek Siitan by MySQL AB. This fixes
PR pkg/14605 by Michael Richardson.
2001-11-22 10:33:10 +00:00
jlam
638788de07 Use libtool to install programs that were linked with libtool. 2001-11-21 23:40:47 +00:00
jlam
cdec44e8b4 RCD_SCRIPTS now just lists the filenames (see bsd.pkg.install.mk). 2001-11-21 15:44:22 +00:00
jlam
d18976894d Note addition of databases/php4-odbc. 2001-11-19 22:58:12 +00:00
jlam
cd1333fae9 databases/php4-odbc - PHP4 access to ODBC data sources 2001-11-19 22:54:09 +00:00
jlam
b23d2e8626 Adapt to use shared INSTALL/DEINSTALL scripts by using the logic in
bsd.pkg.install.mk:

	* Remove old DEINSTALL/INSTALL scripts.
	* Move some text printed at POST-INSTALL time into the MESSAGE file.
	* Adjust rc.d scripts to respect rc.conf settings, so that the
	  script may be directly copied into /etc/rc.d.
2001-11-19 16:23:08 +00:00
reinoud
b2609cb011 SQLite is now on version 2.1.1 incorporating many changes, enhancements
and bugfixes including support for 16Mb rows. For a full change see the
website's changelog at http://www.hwaci.com/sw/sqlite/changes.html

The file format changed! so please dump the database in SQL with .dump in
the old version and import it later in the new version.
2001-11-19 15:43:16 +00:00
reinoud
dd74500881 Just noted that some important bugfixes were made to version 2.1.0 to make
version 2.1.1
2001-11-19 01:15:46 +00:00
reinoud
df59114aa4 Update SQLite package to version 2.1.0 from 2.0.5 2001-11-19 00:41:06 +00:00
jlam
30cd115b22 * Strongly buildlinkify. 2001-11-13 21:13:38 +00:00
hubertf
09c1f15d9d Adjust format a bit:
* 75 * '='
 * RCS ID
 * blank line
 * message text
 * optional blank line
 * 75 * '='
2001-11-11 06:17:26 +00:00
jlam
8bae87330d Workaround differences in "make" behaviour between 1.5.2 and -current.
These packages use GNU-automake-generated Makefiles, so we can pass our
${MAKE_FLAGS} in through AM_MAKEFLAGS.
2001-11-07 06:12:19 +00:00
jlam
848b372f8b Note additions of:
databases/unixodbc
	databases/unixodbc-DataManager
	databases/unixodbc-ODBCConfig
2001-11-06 04:11:02 +00:00
jlam
7d2d3c8b0f databases/unixodbc-DataManager:
GUI tool for unixODBC data source management

The ODBC Data Manager can be used to browse/explore ODBC Data Sources, to
drill down a data source, or to edit and to submit SQL.
2001-11-06 04:10:12 +00:00
jlam
bc0ea5f67d databases/unixodbc-ODBCConfig - GUI tool for unixODBC driver configuration
The ODBC Config program is a graphical program used to make configuration
of ODBC Data Sources extremely easy.  It has been designed to be user-
compatible with the Microsoft(R) ODBC Administrator.
2001-11-06 04:09:25 +00:00
jlam
9586b56687 databases/unixodbc - ODBC 2.x/3.x driver manager
The unixODBC project provides UNIX applications with the same ODBC 3.51
API and facilities available under MS Windows. It provides a Driver Manager
that supports the full ODBC API and performs the ODBC 3 to ODBC 2
translations with UNICODE to ANSI conversion.  It also includes a collection
of ODBC drivers including a simple text-based driver, an NNTP driver, a
Postgres driver and others, and a selection of templates and libraries that
to aid in the construction of ODBC drivers. It works with MySQL, Postgres,
StarOffice, Applixware, iHTML, PHP, Perl DBD::ODBC, Paradox 9, and many
other applications and drivers.  Connection pooling is also provided to
increase performance with applications such as PHP.
2001-11-06 04:08:33 +00:00
jlam
f7b731046b Note conflict with forthcoming unixodbc package. 2001-11-05 08:23:27 +00:00
darcy
3d310da89a The PyGreSQL module here has some nasty bugs which will be fixed in the
next distribution.  This patch brings it up to date now.  Major fixes:

- Support for more types.  This fixes a bug introduced in the current
  PostgreSQL because of the different way of handling agregates.
- Add WIN32 support
- Fix some DB-API quoting problems
2001-11-04 21:25:48 +00:00
jlam
6091f731ba Strongly buildlinkify. Note dependency on tcp_wrappers for platforms
without -lwrap.  Also prevent finding any existing Berkeley DB 3.x in
/usr/local.
2001-11-02 02:59:28 +00:00
jlam
f8d6e1d4b5 Strongly buildlinkify. Note missing dependency on zlib for platforms that
don't have a system zlib.  Add a buildlink.mk file for use by other
package Makefiles.
2001-11-02 02:57:28 +00:00
zuntum
a437fd43cc Move pkg/ files into package's toplevel directory 2001-11-01 00:20:13 +00:00
zuntum
d16ce86994 Oops, restore proper distinfo 2001-11-01 00:19:22 +00:00