freebsd-ports/databases/db41/Makefile
Yen-Ming Lee cf369503ef Add patch.4.1.25.2 to fix these bugs, quoting SleepyCat
<http://www.sleepycat.com/update/4.1.25/patch.4.1.25.html>:

# Applications with largely dirty caches could see performance problems in the
  cache allocation code.
# Environment recovery could fail after the failure of a database open.
# Catastrophic environment recovery could fail after a normal recovery
  performed when sections of the database environment log only contained
  database open/close pairs.

PR:		79841
Submitted by:	maintainer
2005-04-13 07:14:36 +00:00

50 lines
1.2 KiB
Makefile

# ports collection makefile for: Berkeley DB v4
# Date created: 2003-01-04
# Whom: Matthias Andree <matthias.andree@web.de>
#
# $FreeBSD$
#
PORTNAME= db41
PORTVERSION= 4.1.25
PORTREVISION= 3
CATEGORIES= databases
MASTER_SITES= http://downloads.sleepycat.com/
PKGNAMESUFFIX?=
DISTNAME?= db-${PORTVERSION}
DIST_SUBDIR= bdb
PATCH_SITES= http://www.sleepycat.com/update/${PORTVERSION}/
PATCHFILES= patch.${PORTVERSION}.1 patch.${PORTVERSION}.2
PATCH_DIST_STRIP= -d ${WRKDIR}/${DISTNAME}
MAINTAINER= matthias.andree@gmx.de
COMMENT= The Berkeley DB package, revision 4.1
WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix
USE_REINPLACE= yes
GNU_CONFIGURE= yes
CONFIGURE_SCRIPT= ../dist/configure
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ARGS= --enable-compat185 --enable-dump185 \
--enable-cxx --enable-dynamic \
--includedir=${PREFIX}/include/db41
INSTALLS_SHLIB= yes
.if !defined(NOPORTDOCS)
INSTALL_TARGET= install install_docs
PORTDOCS= *
.endif
.include <bsd.port.pre.mk>
.if ${ARCH} == amd64
CONFIGURE_ARGS+= --with-mutex=x86/gcc-assembly
.endif
post-patch:
@${REINPLACE_CMD} -Ee \
's|-l?pthread|${PTHREAD_LIBS}|g' ${WRKSRC}/${CONFIGURE_SCRIPT}
.include <bsd.port.post.mk>