freebsd-ports/databases/db41/Makefile
Matthias Andree 18794da1c6 Move the two smaller vendor patches into files/
The upstream website seems broken. Also comment PATCH_SITES to try ftp.FreeBSD.org first.
2010-10-09 14:26:34 +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@gmx.de>
#
# $FreeBSD$
#
PORTNAME= db41
PORTVERSION= 4.1.25
PORTREVISION= 4
CATEGORIES= databases
MASTER_SITES= http://download-east.oracle.com/berkeley-db/ \
http://download-west.oracle.com/berkeley-db/ \
http://download-uk.oracle.com/berkeley-db/
PKGNAMESUFFIX?=
DISTNAME?= db-${PORTVERSION}
DIST_SUBDIR= bdb
#PATCH_SITES= http://www.oracle.com/technology/products/berkeley-db/db/update/${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>