summaryrefslogtreecommitdiff
path: root/databases/db3
AgeCommit message (Collapse)AuthorFilesLines
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2005-12-02Add case for DragonFly and modify -lpthread detection to check forjoerg2-8/+80
-pthread as well. This can be simplified once PTHREAD_* on NetBSD is fixed.
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-27Start to make this work on (even older) IRIX: check for __sgi rather than sgijschauma2-1/+15
This was originally reported in PR 28819 by Georg Schwarz for db4 and also noted by Georg to apply to this package.
2005-02-23Add RMD160 digests in addition to SHA1 ones.agc1-1/+4
2004-12-18tell configure to ignore inttypes.h on irix 5 because it is known togrant1-1/+7
be incompatible with sys/types.h. fixes PR pkg/28545 from Georg Schwarz.
2004-12-16fix URL in MASTER_SITES.grant1-2/+3
2004-11-15Rework the Berkeley DB detection in buildlink3:jlam1-7/+5
* Add a db1.builtin.mk file that detects whether DB-1.85 functionality exists in the base system, and remove the distinction between "native" and the other Berkeley DB packages -- we now refer to db[1234]. This paves the way for any future databases/db1 package. * USE_DB185 shouldn't need to be set by any packages -- its correct value is now automatically determined by bdb.buildlink3.mk depending on whether we explicitly request db1 or not. By default, if you include bdb.buildlink3.mk, you want DB-1.85 functionality and USE_DB185 defaults to "yes", but if you explicitly remove db1 from the list of acceptable DBs, then USE_DB185 defaults to "no". * Set BDB_LIBS to the library options needed to link against the DB library when bdb.buildlink3.mk is included. * We only add the DB library to the linker command automatically if we want DB-1.85 functionality; otherwise assume that the package configure process can figure out how to probe for the correct headers and libraries. Edit package Makefiles to nuke redundant settings of USE_DB185.
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv2-3/+4
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-09-22Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.jlam1-9/+1
All library names listed by *.la files no longer need to be listed in the PLIST, e.g., instead of: lib/libfoo.a lib/libfoo.la lib/libfoo.so lib/libfoo.so.0 lib/libfoo.so.0.1 one simply needs: lib/libfoo.la and bsd.pkg.mk will automatically ensure that the additional library names are listed in the installed package +CONTENTS file. Also make LIBTOOLIZE_PLIST default to "yes".
2004-08-27Replace RPATH_FLAG with LINKER_RPATH_FLAG and COMPILER_RPATH_FLAG,jlam1-2/+2
which are the full option names used to set rpath directives for the linker and the compiler, respectively. In places were we are invoking the linker, use "${LINKER_RPATH_FLAG} <path>", where the space is inserted in case the flag is a word, e.g. -rpath. The default values of *_RPATH_FLAG are set by the compiler/*.mk files, depending on the compiler that you use. They may be overridden on a ${OPSYS}-specific basis by setting _OPSYS_LINKER_RPATH_FLAG and _OPSYS_COMPILER_RPATH_FLAG, respectively. Garbage-collect _OPSYS_RPATH_NAME and _COMPILER_LD_FLAG.
2004-07-10provide BUILDLINK_CPPFLAGS, LDFLAGS and LIBS for each pkgsrc dbgrant1-1/+4
implementation.
2004-07-07Set BUILDLINK_LIBDIRS.db?, as mail/exim expects.wiz1-1/+2
2004-07-04Unused.wiz1-24/+0
2004-06-28Move the HTML documentation into ${PREFIX}/share/doc/html. Bump thejlam4-824/+824
PKGREVISION due to user-visible difference.
2004-05-13Include "../../mk/pthread.buildlink3.mk"kristerw1-1/+3
2004-04-07When -lpthread is used, link the db3 library against it, so that programsjmmv3-6/+15
using -ldb3 alone don't complain about missing symbols. This fixes the build of some programs (like nvi), as exposed in Linux.
2004-03-31Add missing .if eaten by my fat fingers in vi.jlam1-2/+2
2004-03-30Always pass the location of the db[34] headers since we install them in ajlam1-2/+3
non-standard location. Also match the new USE_DB185 behaviour where it defaults to "yes".
2004-03-22Transform -ldb-[34] to -ldb[34], respectively, as they're the better knownjlam1-1/+2
names for the newer Sleepycat DB libraries.
2004-03-18Fix serious bug where BUILDLINK_PACKAGES wasn't being ordered properlyjlam1-7/+7
by moving the inclusion of buildlink3.mk files outside of the protected region. This bug would be seen by users that have set PREFER_PKGSRC or PREFER_NATIVE to non-default values. BUILDLINK_PACKAGES should be ordered so that for any package in the list, that package doesn't depend on any packages to the left of it in the list. This ordering property is used to check for builtin packages in the correct order. The problem was that including a buildlink3.mk file for <pkg> correctly ensured that <pkg> was removed from BUILDLINK_PACKAGES and appended to the end. However, since the inclusion of any other buildlink3.mk files within that buildlink3.mk was in a region that was protected against multiple inclusion, those dependencies weren't also moved to the end of BUILDLINK_PACKAGES.
2004-03-10bdb.buildlink3.mk is used to select a Berkeley DB implementation forjlam1-1/+7
use by pkgsrc. It will automatically depend on either db, db3, or db4 if the native one isn't sufficient. The two variables that control its behaviour are: BDB_DEFAULT is a user-settable variable whose value is the default Berkeley DB implementation to use. BDB_ACCEPTED is a package-settable list of Berkeley DB implementations that may be used by the package. E.g., if you always want to use DB4 as the Berkeley DB for all of the packages, then you can just set: BDB_DEFAULT= db4 in your /etc/mk.conf. Packages that currently include db*/buildlink3.mk should be made to include bdb.buildlink3.mk instead.
2004-03-05Reorder location and setting of BUILDLINK_PACKAGES to match templatejlam1-2/+4
buildlink3.mk file in revision 1.101 of bsd.buildlink3.mk.
2004-02-14LIBTOOL_OVERRIDE and SHLIBTOOL_OVERRIDE are now lists of shell globsjlam1-2/+1
relative to ${WRKSRC}. Remove redundant LIBTOOL_OVERRIDE settings that are automatically handled by the default setting in bsd.pkg.mk.
2004-02-14CONFIG_{GUESS,SUB}_OVERRIDE are now relative to ${WRKSRC} and willjlam1-3/+3
automatically substitute for any config.{guess,sub} files found up to a directory depth of 2.
2004-02-11USE_LANGUAGES=c c++abs1-1/+2
2004-02-08Override config.sub and config.guess. For mipseb support.sekiya1-1/+4
2004-01-24Append to BUILDLINK_DEPENDS.<pkg> instead of setting a default value. Injlam1-2/+2
the normal case when BUILDLINK_DEPENDS.<pkg> isn't specified, it receives a value only once due to the multiple inclusion protection in the bulldlink3.mk files. In the case where a package includes several buildlink3.mk files that each want a slightly different version of another dependency, having BUILDLINK_DEPENDS.<pkg> be a list allows for the strictest <pkg> dependency to be matched.
2004-01-20Move WRKSRC definition away from the first paragraph in a Makefile.agc1-2/+2
2004-01-05bl3ifyjlam1-2/+4
2004-01-05Use S/+$// instead of C/\+$// to save a backslash. Very highlyjlam1-2/+2
recommended by seb :)
2004-01-04Re-arrange to match example buildlink3.mk file in bsd.buildlink3.mk.jlam1-9/+6
2004-01-03Initial sprinkling of work-in-progress buildlink3.mk files for using thejlam1-0/+19
buildlink3 framework.
2003-10-20Update db3 to db3-3.11.2nb1.agc3-3/+7
Add db_185 compatibility to databases/db3, from Jeremy Reed in PR 21237.
2003-08-02use <iostream>mrg2-1/+16
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-06-02Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.jschauma1-2/+2
Should anybody feel like they could be the maintainer for any of thewe packages, please adjust.
2003-05-07I haven't maintained this for years, so remove my name from thewrstuden1-2/+2
maintainership.
2003-03-29Place WRKSRC where it belongs, to make pkglint happy; ok'ed by wiz.jmmv1-3/+2
2003-02-26What's going on there ? Either the previous file patch.3.3.11.1 wasseb1-3/+3
restored on master site either I'm delirious...
2003-02-23Patch file patch.3.3.11.1 has changed on master patch site.seb1-3/+3
Diff with previous version: 23c23 < * $Id: patch.3.3.11.1,v 1.1 2003/01/10 13:43:30 mao Exp $ --- > * $Id: patch.3.3.11.1,v 1.1 2001/07/30 22:33:33 bostic Exp $ 32c32 < * $Id: patch.3.3.11.1,v 1.1 2003/01/10 13:43:30 mao Exp $ --- > * $Id: patch.3.3.11.1,v 1.1 2001/07/30 22:33:33 bostic Exp $
2003-01-20regen for patch change:wiz1-3/+3
23c23 < * $Id: patch.3.3.11.1,v 1.1 2001/07/30 22:33:33 bostic Exp $ --- > * $Id: patch.3.3.11.1,v 1.1 2003/01/10 13:43:30 mao Exp $ 32c32 < * $Id: patch.3.3.11.1,v 1.1 2001/07/30 22:33:33 bostic Exp $ --- > * $Id: patch.3.3.11.1,v 1.1 2003/01/10 13:43:30 mao Exp $ Requested in various PRs.
2002-10-13Unused.wiz1-36/+0
2002-09-26Add BUILDLINK_CPPFLAGS.<pkg> for these packages to help packages findjlam1-1/+3
the db[23] headers.
2002-08-28buildlink1 -> buildlink2jlam1-2/+2
2002-08-25Merge changes in packages from the buildlink2 branch that havejlam3-2/+23
buildlink2.mk files back into the main trunk.
2002-07-22update PATCH_SITES.grant1-2/+2
2002-07-22update MASTER_SITES.grant1-2/+2
2002-07-15Move the mkdir line...mycroft1-2/+2
2002-07-15Add a mkdir for share/doc/db3/ref/splash, since there are no files in it.mycroft1-1/+2