4e8777dbb8
Submitted by: "Herbert J. Skuhra" <h.skuhra@gmail.com> PR: ports/152158 Approved by: gslin@gslin.org (for db4[5-8]) (implicit, see Makefile)
49 lines
1.1 KiB
Makefile
49 lines
1.1 KiB
Makefile
# ports collection makefile for: Berkeley DB v4
|
|
# Date created: 2003-01-04
|
|
# Whom: Matthias Andree <matthias.andree@gmx.de>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= db41
|
|
PORTVERSION= 4.1.25
|
|
PORTREVISION= 4
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://download.oracle.com/berkeley-db/
|
|
PKGNAMESUFFIX?=
|
|
DISTNAME?= db-${PORTVERSION}
|
|
DIST_SUBDIR= bdb
|
|
|
|
PATCH_SITES= http://download.oracle.com/berkeley-db/patches/db/${PORTVERSION}/
|
|
PATCHFILES= patch.${PORTVERSION}.2
|
|
PATCH_DIST_STRIP= -d ${WRKDIR}/${DISTNAME}
|
|
|
|
MAINTAINER= mandree@FreeBSD.org
|
|
COMMENT= The Berkeley DB package, revision 4.1
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_SCRIPT= ../dist/configure
|
|
CONFIGURE_ARGS= --enable-compat185 --enable-dump185 \
|
|
--enable-cxx --enable-dynamic \
|
|
--includedir=${PREFIX}/include/db41
|
|
USE_LDCONFIG= 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>
|