2005-11-25 21:45:27 +01:00
|
|
|
# ports collection makefile for: Berkeley DB v4.4
|
|
|
|
# Date created: 2005-11-21
|
2004-01-09 10:45:37 +01:00
|
|
|
# Whom: Matthias Andree <matthias.andree@gmx.de>
|
1997-06-13 19:54:36 +02:00
|
|
|
#
|
1999-08-25 07:28:01 +02:00
|
|
|
# $FreeBSD$
|
1997-06-13 19:54:36 +02:00
|
|
|
#
|
|
|
|
|
2005-11-25 21:45:27 +01:00
|
|
|
PORTNAME= db44
|
2006-11-08 06:26:36 +01:00
|
|
|
PORTVERSION= 4.4.20.4
|
1997-06-13 19:54:36 +02:00
|
|
|
CATEGORIES= databases
|
2006-11-08 16:43:20 +01:00
|
|
|
MASTER_SITES= http://download-west.oracle.com/berkeley-db/ \
|
|
|
|
http://download-east.oracle.com/berkeley-db/ \
|
2006-11-08 06:26:36 +01:00
|
|
|
http://download-uk.oracle.com/berkeley-db/
|
2003-02-16 06:54:21 +01:00
|
|
|
PKGNAMESUFFIX?=
|
2006-02-09 11:05:01 +01:00
|
|
|
DISTNAME= db-4.4.20
|
2004-12-28 23:02:11 +01:00
|
|
|
DIST_SUBDIR= bdb
|
2003-02-16 06:54:21 +01:00
|
|
|
|
2006-11-08 06:26:36 +01:00
|
|
|
PATCH_SITES= http://www.oracle.com/technology/products/berkeley-db/db/update/4.4.20/
|
|
|
|
PATCHFILES= patch.4.4.20.1 patch.4.4.20.2 patch.4.4.20.3 patch.4.4.20.4
|
2005-02-09 00:33:21 +01:00
|
|
|
PATCH_DIST_STRIP= -d ..
|
2006-02-09 11:05:01 +01:00
|
|
|
# * patch.4.4.20.1: -----------------------------------------------------------
|
|
|
|
# Fix a bug that could cause a trap during recovery if multiple operations that
|
|
|
|
# could remove the same extent were recovered. [#14061]
|
|
|
|
# * patch.4.4.20.2: -----------------------------------------------------------
|
|
|
|
# Fix a bug that could cause traps or hangs if the DB_TXN->set_name function is
|
|
|
|
# used in a multithreaded application. [#14033]
|
2006-11-08 06:26:36 +01:00
|
|
|
# * patch.4.4.20.3: -----------------------------------------------------------
|
|
|
|
# Fix a bug where cursor lookups on secondary databases with off-page
|
|
|
|
# duplicates could fail. [#14240]
|
|
|
|
# * patch.4.4.20.4: -----------------------------------------------------------
|
|
|
|
# Fix a bug where cache buffer retrieval could race with a checkpoint
|
|
|
|
# call, potentially causing database environment recovery to fail. [#14657]
|
2005-02-09 00:33:21 +01:00
|
|
|
|
2003-01-05 05:11:23 +01:00
|
|
|
MAINTAINER= matthias.andree@gmx.de
|
2005-11-25 21:45:27 +01:00
|
|
|
COMMENT= The Berkeley DB package, revision 4.4
|
2002-11-20 14:15:12 +01:00
|
|
|
|
2004-12-28 23:02:11 +01:00
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix
|
2004-03-03 12:21:33 +01:00
|
|
|
|
2006-11-08 06:26:36 +01:00
|
|
|
USE_LDCONFIG= yes
|
2006-02-23 11:40:44 +01:00
|
|
|
GNU_CONFIGURE= yes
|
2004-12-28 23:02:11 +01:00
|
|
|
CONFIGURE_SCRIPT= ../dist/configure
|
|
|
|
LIBTOOLFILES= ${CONFIGURE_SCRIPT}
|
2006-02-09 11:05:01 +01:00
|
|
|
BDBVER= ${PORTVERSION:R:R}
|
2004-12-28 23:02:11 +01:00
|
|
|
CONFIGURE_ARGS= --enable-compat185 --enable-dump185 \
|
|
|
|
--enable-cxx --enable-dynamic \
|
|
|
|
--enable-rpc \
|
|
|
|
--includedir=${PREFIX}/include/${PORTNAME} \
|
|
|
|
--libdir=${PREFIX}/lib/${PORTNAME} \
|
|
|
|
--bindir=${PREFIX}/bin/${PORTNAME}
|
|
|
|
INSTALL_TARGET= install_include install_lib install_utilities
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
INSTALL_TARGET+= install_docs docdir=${DOCSDIR}
|
|
|
|
PORTDOCS= *
|
|
|
|
.endif
|
|
|
|
|
|
|
|
pre-patch:
|
|
|
|
@${REINPLACE_CMD} -Ee 's|-l?pthread|${PTHREAD_LIBS}|g' ${WRKSRC}/${CONFIGURE_SCRIPT}
|
|
|
|
|
|
|
|
pre-configure:
|
2005-11-25 21:45:27 +01:00
|
|
|
@${CHMOD} u+w ${WRKSRC}/../dist/configure
|
2004-12-28 23:02:11 +01:00
|
|
|
|
2005-07-29 12:44:59 +02:00
|
|
|
post-configure:
|
|
|
|
@${REINPLACE_CMD} -e '/^extern void db_rpc_serverprog/ d;' ${WRKSRC}/db_server.h
|
|
|
|
|
2004-12-28 23:02:11 +01:00
|
|
|
post-install:
|
|
|
|
.for i in libdb libdb_cxx
|
|
|
|
${LN} -s -f ${PORTNAME}/${i}-${BDBVER}.so.0 ${PREFIX}/lib
|
|
|
|
${LN} -s -f ${i}-${BDBVER}.so.0 ${PREFIX}/lib/${i}-${BDBVER}.so
|
|
|
|
.endfor
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
|
|
@${RMDIR} ${DOCSDIR}/ref/splash 2>/dev/null || :
|
|
|
|
.endif
|
|
|
|
cd ${PREFIX}/bin/${PORTNAME} ; \
|
|
|
|
for i in * ; do ${LN} -s -f ${PORTNAME}/$$i ../$$i-${BDBVER} ; done
|
2004-06-26 13:13:16 +02:00
|
|
|
|
2005-11-25 21:45:27 +01:00
|
|
|
.include <bsd.port.mk>
|