Ticket #361: Portfile

File Portfile, 1.4 KB (added by michaelm@…, 21 years ago)

fixes doc location, and a couple of other problems

Line 
1# $Id: Portfile,v 1.10 2003/03/03 06:13:24 mij Exp $
2
3PortSystem 1.0
4name            db4
5version         4.1.24
6categories      databases
7maintainers     landonf@opendarwin.org
8description     The Berkely DB package, revision 4
9homepage        http://www.sleepycat.com/update/
10platforms       darwin freebsd
11master_sites    http://www.sleepycat.com/update/snapshot/
12distname        db-${portversion}
13checksums       md5 bf98c80a37809af3d165ba6c9d472846
14worksrcdir      ${distname}/build_unix
15configure.cmd   ../dist/configure
16configure.args  --enable-compat185 --enable-dump185 --enable-cxx \
17                  --enable-dynamic --includedir=${prefix}/include/db4
18
19install.destroot  prefix=${destroot}${prefix} includedir=${destroot}${prefix}/include/db4 \
20                    docdir=${destroot}${prefix}/share/${name}-${version}/
21
22long_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