aboutsummaryrefslogtreecommitdiff
path: root/databases/db46/Makefile
blob: 1a2f026d336182f6dc2b9a302fdd47cbecd43c89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# New ports collection makefile for:	db46
# Date created:		2007-07-26
# Whom:			Gea-Suan Lin <gslin@gslin.org>
#
# $FreeBSD$
#

PORTNAME=	db46
PORTVERSION=	4.6.21.4
CATEGORIES=	databases
MASTER_SITES=	http://download.oracle.com/berkeley-db/ \
PKGNAMEPREFIX?=
DISTNAME=	db-${PORTVERSION:R}
DIST_SUBDIR=	bdb

PATCH_SITES=	http://download.oracle.com/berkeley-db/patches/db/${PORTVERSION:R}/
PATCHFILES=	patch.4.6.21.1 patch.4.6.21.2 patch.4.6.21.3 patch.4.6.21.4
PATCH_DIST_STRIP=	-d .. -l
# * patch.4.6.21.1: -----------------------------------------------------------
# Fixes a race condition between checkpoint and DB->close which can result in
# the checkpoint thread self-deadlocking. [#15692]
# * 4.6.21.2: -----------------------------------------------------------------
# Fixes the potential for the wrong number of mutexes to be allocated. This
# issue could cause applications with multiple cache regions to see undefined
# behavior in rare cases under load. [#16178]
# * 4.6.21.3: -----------------------------------------------------------------
# Replication clients should be able to open a sequence. [#16406]
# * 4.6.21.4: -----------------------------------------------------------------
# Fixes a bug which could lead to slow performance of internal init under
# Replication Manager, as evidenced by "queue limit exceeded" messages in
# verbose replication diagnostic output. [#15788]

# I allow matthias.andree@gmx.de and all freebsd committer to do changes
# to this package.

MAINTAINER=	gslin@gslin.org
COMMENT=	The Berkeley DB package, revision 4.6

BDBVER=		${PORTVERSION:R:R}
CONFIGURE_ARGS=	--enable-compat185 --enable-dump185 --enable-cxx \
		--enable-dynamic --enable-rpc --enable-pthread_api \
		--includedir=${PREFIX}/include/${PORTNAME} \
		--libdir=${PREFIX}/lib/${PORTNAME} \
		--bindir=${PREFIX}/bin/${PORTNAME}
CONFIGURE_SCRIPT=	../dist/configure
GNU_CONFIGURE=	yes
INSTALL_TARGET=	install_include install_lib install_utilities
LIBTOOLFILES=	${CONFIGURE_SCRIPT}
WRKSRC=		${WRKDIR}/${DISTNAME}/build_unix
USE_LDCONFIG=	yes

.if !defined(NOPORTDOCS)
INSTALL_TARGET+=	install_docs docdir=${DOCSDIR}
PORTDOCS=	*
.endif

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
	cd ${PREFIX}/bin/${PORTNAME} ; \
	for i in * ; do ${LN} -s -f ${PORTNAME}/$$i ../$$i-${BDBVER} ; done

.include <bsd.port.mk>