2004-12-05 04:03:15 +01:00
|
|
|
# ports collection makefile for: Berkeley DB v4.3
|
|
|
|
# Date created: 2004-11-10
|
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
|
|
|
#
|
|
|
|
|
2004-12-05 04:03:15 +01:00
|
|
|
PORTNAME= db43
|
2005-10-05 08:41:54 +02:00
|
|
|
PORTVERSION= 4.3.29
|
1997-06-13 19:54:36 +02:00
|
|
|
CATEGORIES= databases
|
2005-02-15 03:05:10 +01:00
|
|
|
MASTER_SITES= http://downloads.sleepycat.com/
|
2003-02-16 06:54:21 +01:00
|
|
|
PKGNAMESUFFIX?=
|
2004-12-28 23:02:11 +01:00
|
|
|
DISTNAME?= db-${PORTVERSION}
|
|
|
|
DIST_SUBDIR= bdb
|
2003-02-16 06:54:21 +01:00
|
|
|
|
2005-02-09 17:22:14 +01:00
|
|
|
PATCH_SITES= http://www.sleepycat.com/update/${PORTVERSION}/
|
2005-02-09 00:33:21 +01:00
|
|
|
PATCH_DIST_STRIP= -d ..
|
|
|
|
|
2003-01-05 05:11:23 +01:00
|
|
|
MAINTAINER= matthias.andree@gmx.de
|
2004-12-05 04:03:15 +01:00
|
|
|
COMMENT= The Berkeley DB package, revision 4.3
|
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
|
|
|
|
2004-12-28 23:02:11 +01:00
|
|
|
INSTALLS_SHLIB= 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}
|
|
|
|
CONFIGURE_TARGET= --target=${ARCH}-portbld-freebsd${OSREL}
|
|
|
|
BDBVER= ${PORTVERSION:R}
|
|
|
|
BDBMINOR= ${BDBVER:E:S/^\.//}
|
|
|
|
BDBDIR= BerkeleyDB.${BDBVER}
|
|
|
|
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:
|
|
|
|
${CHMOD} u+w ${WRKSRC}/../dist/configure
|
|
|
|
|
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
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
|
|
|
.if ${ARCH} == amd64
|
|
|
|
CONFIGURE_ARGS+= --with-mutex=x86/gcc-assembly
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.post.mk>
|