freebsd-ports/databases/db4/Makefile

49 lines
1.1 KiB
Makefile
Raw Normal View History

# Created by: Sergey Osokin aka oZZ <ozz@FreeBSD.org.ru>
1999-08-25 07:28:01 +02:00
# $FreeBSD$
PORTNAME= db4
PORTVERSION= 4.0.14
PORTREVISION= 1
PORTEPOCH= 1
CATEGORIES= databases
MASTER_SITES= http://download.oracle.com/berkeley-db/
DISTNAME= db-${PORTVERSION}
DIST_SUBDIR= bdb
DEPRECATED= Please use databases/db5 or db6 for new installs.
MAINTAINER= ports@FreeBSD.org
2003-02-21 12:15:57 +01:00
COMMENT= The Berkeley DB package, revision 4
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/db4
USE_LDCONFIG= yes
OPTIONS_DEFINE= DOCS
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MDOCS}
INSTALL_TARGET= install install_docs
PORTDOCS= *
.endif
# the db install_docs target installs an empty directory, kill it
NO_STAGE= yes
# (it's not packaged and it's not needed):
.if ${PORT_OPTIONS:MDOCS}
post-install:
@${RMDIR} ${PREFIX}/share/doc/db4/ref/splash
.endif
post-patch:
@${REINPLACE_CMD} -Ee \
's|-l?pthread|${PTHREAD_LIBS}|g' ${WRKSRC}/${CONFIGURE_SCRIPT}
.include <bsd.port.mk>