1 | # $Id: Portfile,v 1.10 2003/03/03 06:13:24 mij Exp $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name db4 |
---|
5 | version 4.1.24 |
---|
6 | categories databases |
---|
7 | maintainers landonf@opendarwin.org |
---|
8 | description The Berkely DB package, revision 4 |
---|
9 | homepage http://www.sleepycat.com/update/ |
---|
10 | platforms darwin freebsd |
---|
11 | master_sites http://www.sleepycat.com/update/snapshot/ |
---|
12 | distname db-${portversion} |
---|
13 | checksums md5 bf98c80a37809af3d165ba6c9d472846 |
---|
14 | worksrcdir ${distname}/build_unix |
---|
15 | configure.cmd ../dist/configure |
---|
16 | configure.args --enable-compat185 --enable-dump185 --enable-cxx \ |
---|
17 | --enable-dynamic --includedir=${prefix}/include/db4 |
---|
18 | |
---|
19 | install.destroot prefix=${destroot}${prefix} includedir=${destroot}${prefix}/include/db4 \ |
---|
20 | docdir=${destroot}${prefix}/share/${name}-${version}/ |
---|
21 | |
---|
22 | long_description Revision 4 of the Berkeley DB library. This version \ |
---|
23 | uses an incompatible underlying database format than \ |
---|
24 | revision 1 and a different standard API. Utilities are \ |
---|
25 | included in the distribution to convert v1.85 databases \ |
---|
26 | to v4 databases, and a backwards compatible API is \ |
---|
27 | provided to maintain compatibility with programs using \ |
---|
28 | the v1.85 interface. There are minor interface changes \ |
---|
29 | in this release which may require that DB applications \ |
---|
30 | be modified and recompiled. For a complete discussion \ |
---|
31 | of interface changes, see: http://www.sleepycat.com/update/ |
---|
32 | |
---|