summaryrefslogtreecommitdiff
path: root/databases
AgeCommit message (Collapse)AuthorFilesLines
2005-07-21Change path from devel/pkgconfig to devel/pkg-config.wiz9-18/+18
No PKGREVISION bump since pkg-config is only a BUILD_DEPENDS.
2005-07-21Add and enable pgtcl.wiz1-1/+2
2005-07-19adddrochner1-0/+20
2005-07-19+gourmetdrochner1-1/+2
2005-07-19import gourmet-0.8.5.5, another recipe databasedrochner4-0/+304
2005-07-19+krecipesdrochner1-1/+2
2005-07-19import krecipes-0.8, a recipe database (for KDE)drochner4-0/+212
2005-07-19depends should be ../../<category>/<pkg>grant1-2/+2
2005-07-17Include mk/pthread.buildlink3.mk.kristerw1-1/+3
2005-07-16Remove some unnecessarily strong dependencies on perl that resultedjlam2-4/+9
from including perl5/buildlink3.mk. These packages just need the Perl interpreter, and can just add "perl" to USE_TOOLS instead.
2005-07-16Get rid of USE_PERL5. The new way to express needing the Perl executablejlam6-17/+12
around at either build-time or at run-time is: USE_TOOLS+= perl # build-time USE_TOOLS+= perl:run # run-time Also remove some places where perl5/buildlink3.mk was being included by a package Makefile, but all that the package wanted was the Perl executable.
2005-07-15Drop distinction between PKGSRC_USE_TOOLS and USE_TOOLS by makingjlam8-16/+16
PKGSRC_USE_TOOLS go away. There is now only a single USE_TOOLS variable that specifies all of the tools we need to build/run the package.
2005-07-14Define BUILDLINK_INCDIRS.mysql-client to ensure that the MySQLschmonz2-2/+4
include dir is automatically available in ${CPPFLAGS}, following the example of postgres74-lib.
2005-07-13Turn PERL5_PACKLIST into a relative path instead of an absolute path.jlam33-67/+67
These paths are now relative to PERL5_PACKLIST_DIR, which currently defaults to ${PERL5_SITEARCH}. There is no change to the binary packages.
2005-07-13add template for IRIXjschauma1-1/+2
2005-07-13Specify template for IRIXjschauma1-1/+8
2005-07-11Update pgpool to 2.5.1.minskim2-7/+7
Changes: * fix bug in heal checking * accept fast/immediate shutdown request while blocking in smart shutdown * use asprintf to avoid log output confusion * use strok rather than strsep * emit log when starting up * make some logs from log level to debug level
2005-07-09Bump pkgrevision due to startup script fix.cjs1-1/+2
2005-07-09Remove any -m ... options from common_args when doing an initdb, as thiscjs1-2/+4
command doesn't accept that option.
2005-07-07I said 2.0.5 in CHANGES... the diff is a single bugfixdrochner2-6/+6
2005-07-07Mention other pgtcl-like projects.cjs1-0/+6
2005-07-07TCL interface to PostgreSQL, version 1.5.cjs5-0/+54
2005-07-06+gramps2drochner1-1/+2
2005-07-06import gramps-2.0.4drochner8-0/+625
This is a significant rework of the "gramps" genealogical database (databases/gramps in pkgsrc), in particular it uses a bsd/sleepycat binary database now an d alot of the GNOME framework. Thanks to Jeremy C. Reed for ideas and patches.
2005-07-06update to 3.2.2drochner2-6/+6
from the announcement: This release includes numerous minor bug fixes, speed improvements, and code size reductions. There is no reason to upgrade unless you are having problems or unless you just want to.
2005-07-05bump PKGREVISION for PLIST change.grant1-2/+2
2005-07-05add missing files.grant1-1/+6
from Pierre Bourgin in PR pkg/30669.
2005-07-05fix man page suffix on Solaris.grant2-1/+12
from Pierre Bourgin in PR pkg/30668.
2005-07-05use {CFLAGS,CXXFLAGS}.SunOS instead of conditional.grant1-5/+3
2005-07-05specify path to openssl in --with-openssl argument.grant1-2/+2
noted by Pierre Bourgin on tech-pkg@
2005-07-04Updated rrdtool to 1.2.10: Bug fix releasewulf6-38/+44
2005-07-03Update of rrdtool to 1.2.9:wulf29-1032/+174
Major Changes between 1.0.x and 1.2.x Graphing -------- * rewritten graphics generation based on libart. - anti-aliased output - alpha transparency support - truetype fonts * additional graphics formats: EPS, PDF, SVG * extended multi-part documentation * VDEF support; define and use variables. Find, and use, the maximum rate seen by rrdtool; compute and show the average * Sliding window (trend) analysis Compute a smoother average, for instance over the last 6 CDPs * percentile (95th or other) Remove peaks, 95 percent of all rates are at or below the returned value Logging ------- * a second logging interface: rrdtool updatev Verbose updating of the database; show CPDs being created * Aberrant Behavior Detection with Holt-Winters Forecasting Compare current data with expected data, detect and log when the rates are outside expected levels * COMPUTE data type for artificial data-sources calculating their input using RPN math and data from the other data-sources.
2005-07-02Added missing RCS tag.rillig1-0/+1
2005-07-02Avoid implicit gtar dependency.wiz1-2/+2
2005-07-01Disable optimizations for GCC <3.4. This fixes PR pkg/30647 by Ian Spray.tron1-5/+5
2005-07-01Add 24 to PYTHON_VERSIONS_ACCEPTED (since using PYTHON_VERSION_DEFAULT=24).reed1-2/+2
I tested this build and packaging a couple months ago.
2005-06-30Update postgresql74* packages to 7.4.8.wiz10-108/+146
Release Notes Release 7.4.8 Release date: 2005-05-09 This release contains a variety of fixes from 7.4.7, including several security-related issues. __________________________________________________________________ Migration to version 7.4.8 A dump/restore is not required for those running 7.4.X. However, it is one possible way of handling two significant security problems that have been found in the initial contents of 7.4.X system catalogs. A dump/initdb/reload sequence using 7.4.8's initdb will automatically correct these problems. The larger security problem is that the built-in character set encoding conversion functions can be invoked from SQL commands by unprivileged users, but the functions were not designed for such use and are not secure against malicious choices of arguments. The fix involves changing the declared parameter list of these functions so that they can no longer be invoked from SQL commands. (This does not affect their normal use by the encoding conversion machinery.) The lesser problem is that the "contrib/tsearch2" module creates several functions that are misdeclared to return internal when they do not accept internal arguments. This breaks type safety for all functions using internal arguments. It is strongly recommended that all installations repair these errors, either by initdb or by following the manual repair procedures given below. The errors at least allow unprivileged database users to crash their server process, and may allow unprivileged users to gain the privileges of a database superuser. While here, fix postgresql74-client package installation on 2.0 (broken -X), and avoid the need for gtar in tcl-postgresql74.
2005-06-27Update libpqxx{,-doc} to version 2.5.4markd7-96/+291
Changes: Lots of bugfixes and compatibility issues addressed.
2005-06-26Update to 1.2.2:jmmv4-66/+68
- Fixed typo in GnomeDbList class signal creation (Mike Kestner) While here, move documentation out of share/doc/html.
2005-06-26Update to 1.2.2:jmmv4-120/+120
- Fixed typo in GdaXqlUpdate object declaration (Murray) - GCC 4 compilation fixes (Murray, Magnus) - Made Oracle provider work with Oracle 10 headers (Magnus) - Fixed MySQL header/libs detection (Jean) - Fixed typo in GdaExport class signal creation (Mike Kestner) - Set correctly unsigned values in MySQL provider (Mike Fish) - Fixed leak in PostgreSQL provider (Alex) While here, move documentation out of share/doc/html.
2005-06-24Update to 1.48:wiz2-7/+6
Changes in DBI 1.48 (svn rev 928), 14th March 2005 Fixed DBI::DBD::Metadata generation of type_info_all thanks to Steffen Goeldner (driver authors who have used it should rerun it). Updated docs for NULL Value placeholders thanks to Brian Campbell. Added multi-keyfield nested hash fetching to fetchall_hashref() thanks to Zhuang (John) Li for polishing up my draft. Added registered driver prefixes: amzn_ for DBD::Amazon and yaswi_ for DBD::Yaswi.
2005-06-24Drop the perl-5.6.x package from pkgsrc. Remove lang/perl58 and updatejlam2-11/+15
lang/perl5 to perl-5.8.6nb4. Modify packages that referred to lang/perl58 to point to lang/perl5 instead.
2005-06-24Remove lang/libperl and modify packages that used libperl to dependjlam2-4/+7
instead on perl>=5.8.0. Bump the PKGREVISIONs of the following packages due to the possible perl dependency changes after the removal of libperl: audio/ices-mp3 databases/postgresql73-plperl databases/postgresql74-plperl textproc/eperl www/ap-perl
2005-06-19Add missing rc.d script entry in PLIST.seb2-3/+4
Bump PKGREVISION to 1.
2005-06-17Fix inappropriate uses of ${LOCALBASE} or ${X11PREFIX} instead ofjlam1-2/+2
${PREFIX}.
2005-06-16Create directories before installing files into them.jlam12-12/+34
2005-06-12Update ruby-mysql package to 2.6. (not security fix but leaf pacakge.)taca3-11/+11
pkgsrc changes: - Change HOMEPAGE in English. - Add style sheet to installed documents. distribution changes: 2005-04-25: version 2.6 * add constants for Mysql#option(): Mysql::OPT_PROTOCOL, Mysql::OPT_READ_TIMEOUT, Mysql::OPT_WRITE_TIMEOUT, Mysql::SET_CHARSET_DIR, Mysql::SET_CHARSET_NAME, Mysql::SHARED_MEMORY_BASE_NAME, Mysql::SECURE_AUTH * add methods: Mysql#more_results?(), Mysql#next_result(), Mysql#set_server_option(), Mysql#sqlstate() * add constants for Mysql#connect(): Mysql::CLIENT_MULTI_STATEMENTS, Mysql::CLIENT_MULTI_RESULTS * add constants for Mysql#set_server_option(): Mysql::OPTION_MULTI_STATEMENTS_ON, Mysql::OPTION_MULTI_STATEMENTS_OFF * add Mysql#query() with block * add Mysql#reconnect(), Mysql#reconnect=() * When connection was closed, it don't try to reconnect by default. 2005-02-12: version 2.5.2 * BUG: Mysql#connect make object to not close. (Thanks Andres Salomon)
2005-06-08Remove just "A" line. Fix PR pkg/30467 provided by Damon Brodie.taca1-2/+1
2005-06-04- Update adodb to 4.63adrianp3-27/+73
- There are a massive amount of changes/updates/bugfixes as the pkgsrc version was quite old (4.00) - For the full details referr to: http://phplens.com/lens/adodb/docs-adodb.htm#changes
2005-06-01Remove mk/autoconf.mk and mk/automake.mk and replace their usage withjlam2-9/+6
USE_TOOLS and any of "autoconf", "autoconf213", "automake" or "automake14". Also, we don't need to call the auto* tools via ${ACLOCAL}, ${AUTOCONF}, etc., since the tools framework takes care to symlink the correct tool to the correct name, so we can just use aclocal, autoconf, etc.