9637f7852e
pkglint -r --network --only "migrate" As a side-effect of migrating the homepages, pkglint also fixed a few indentations in unrelated lines. These and the new homepages have been checked manually.
51 lines
1.6 KiB
Makefile
51 lines
1.6 KiB
Makefile
# $NetBSD: Makefile,v 1.43 2020/01/26 17:30:54 rillig Exp $
|
|
|
|
DISTNAME= tdb-1.4.3
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://www.samba.org/ftp/tdb/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://tdb.samba.org/
|
|
COMMENT= Small database system which uses files to store data
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
BUILD_DEPENDS+= libxslt-[0-9]*:../../textproc/libxslt
|
|
BUILD_DEPENDS+= docbook-xsl-[0-9]*:../../textproc/docbook-xsl
|
|
|
|
# both install tdbtool and tdbdump
|
|
CONFLICTS+= samba<3.6.6nb3
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 27
|
|
|
|
USE_TOOLS+= gmake
|
|
HAS_CONFIGURE= yes
|
|
CONFIG_SHELL= ${PYTHONBIN}
|
|
CONFIGURE_SCRIPT= ${WRKSRC}/buildtools/bin/waf
|
|
CONFIGURE_ARGS+= configure
|
|
CONFIGURE_ARGS+= --mandir=${PREFIX}/${PKGMANDIR}
|
|
CONFIGURE_ARGS+= --abi-check-disable
|
|
CONFIGURE_ARGS+= --disable-symbol-versions
|
|
.if defined(MAKE_JOBS) && !empty(MAKE_JOBS) && !(defined(MAKE_JOBS_SAFE) && !empty(MAKE_JOBS_SAFE:M[nN][oO]))
|
|
CONFIGURE_ARGS+= --jobs=${MAKE_JOBS}
|
|
.else
|
|
CONFIGURE_ARGS+= --jobs=1
|
|
.endif
|
|
PKGCONFIG_OVERRIDE= tdb.pc.in
|
|
TEST_TARGET= test
|
|
|
|
USE_GCC_RUNTIME= yes
|
|
|
|
PY_PATCHPLIST= yes
|
|
REPLACE_PYTHON+= buildtools/bin/waf
|
|
MAKE_FLAGS+= WAF_BINARY=${PYTHONBIN}\ ${WRKSRC}/buildtools/bin/waf
|
|
|
|
SUBST_CLASSES+= docbook
|
|
SUBST_MESSAGE.docbook= Fixing docbook URLs.
|
|
SUBST_FILES.docbook+= buildtools/wafsamba/samba_conftests.py
|
|
SUBST_FILES.docbook+= buildtools/wafsamba/wafsamba.py
|
|
SUBST_STAGE.docbook= pre-configure
|
|
SUBST_SED.docbook+= -e 's,http://docbook.sourceforge.net/release/xsl/current,${PREFIX}/share/xsl/docbook,g'
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/extension.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|