aboutsummaryrefslogtreecommitdiff
path: root/databases/tdb/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* */*: Rework manpages handling in Samba-related portsMichael Osipov2025-03-131-9/+5
| | | | | | | | | | * Remove outdated, incorrect, precompiled manpages from ${FILESDIR}/files/man. * Properly disable manpages generation since XSLTPROC was set to true(1) WAF always assumed xsltproc(1) to work and if any automatic dependency pulled in textproc/docbook-xsl, manpages were generated even if explicitly disabled. Approved by: jrm (mentor) Differential Revision: https://reviews.freebsd.org/D49327
* */*: Fix conflict of PKGNAMEYasuhiro Kimura2025-02-061-0/+2
| | | | | | | | | | | | | | * Fix conflict of PKGNAME by adding PKGNAMESUFFIX to the ports below - databases/tdb1410 - devel/talloc242 - devel/tevent016 * Set CONFLICTS_INSTALL between different versions of each port. * Update dependencies of databases/ldb29 and net/samba420 to reflect change of PKGNAME. * Bump PORTREVISION of modified ports. Reviewed by: 0mp, kiwi Differential Revision: https://reviews.freebsd.org/D48826
* databases/tdb: Update to 1.4.9Mateusz Piotrowski2024-08-161-2/+1
| | | | | | PR: 280507 Approved by: samba Sponsored by: Klara, Inc.
* */*: Let samba@ maintain ldb, tdb, talloc, tevent, and SambaMateusz Piotrowski2024-08-131-1/+1
| | | | | PR: 280556 Approved by: portmgr
* databases/tdb: leave manpages in share/manBaptiste Daroussin2024-01-121-3/+2
|
* databases/tdb: fix build with lld 17Dimitry Andric2023-10-151-0/+4
| | | | | | | | | | | | | | | | | | Building databases/tdb with lld 17 results in the following link errors: 11:57:13 runner ['cc', '-Wl,--version-script=/wrkdirs/usr/ports/databases/tdb/work/tdb-1.4.7/bin/default/tdb.vscript', '-shared', '-Wl,-h,libtdb.so.1', 'lib/replace/replace.c.2.o', 'lib/replace/strptime.c.2.o', 'lib/replace/xattr.c.2.o', 'common/check.c.1.o', 'common/error.c.1.o', 'common/tdb.c.1.o', 'common/traverse.c.1.o', 'common/freelistcheck.c.1.o', 'common/lock.c.1.o', 'common/dump.c.1.o', 'common/freelist.c.1.o', 'common/io.c.1.o', 'common/open.c.1.o', 'common/transaction.c.1.o', 'common/hash.c.1.o', 'common/summary.c.1.o', 'common/rescue.c.1.o', 'common/mutex.c.1.o', '-o/wrkdirs/usr/ports/databases/tdb/work/tdb-1.4.7/bin/default/libtdb.so', '-Wl,-Bstatic', '-Wl,-Bdynamic', '-lpthread', '-fstack-protector-strong', '-Wl,-no-undefined'] ld: error: version script assignment of 'TDB_1.2.1' to symbol 'tdb_do_delete' failed: symbol not defined ld: error: version script assignment of 'local' to symbol '_end' failed: symbol not defined ld: error: version script assignment of 'local' to symbol '__bss_start' failed: symbol not defined ld: error: version script assignment of 'local' to symbol '_edata' failed: symbol not defined cc: error: linker command failed with exit code 1 (use -v to see invocation) Since the linker version scripts are generated dynamically, suppress errors with lld >= 17 due to these undefined symbols. PR: 274146 Approved by: maintainer timeout (2 weeks) MFH: 2023Q4
* all: remove explicit versions in USES=python for "3.x+"Rene Ladan2023-06-271-1/+1
| | | | | | | | | | | | | | | | | | | The logic in USES=python will automatically convert this to 3.8+ by itself. Adjust two ports that only had Python 3.7 mentioned but build fine on Python 3.8 too. finance/quickfix: mark BROKEN with PYTHON libtool: compile: c++ -DHAVE_CONFIG_H -I. -I../.. -I -I. -I.. -I../.. -I../C++ -DLIBICONV_PLUG -DPYTHON_MAJOR_VERSION=3 -Wno-unused-variable -Wno-maybe-uninitialized -O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong -fno-strict-aliasing -DLIBICONV_PLUG -Wall -ansi -Wno-unused-command-line-argument -Wpointer-arith -Wwrite-strings -Wno-overloaded-virtual -Wno-deprecated-declarations -Wno-deprecated -std=c++0x -MT _quickfix_la-QuickfixPython.lo -MD -MP -MF .deps/_quickfix_la-QuickfixPython.Tpo -c QuickfixPython.cpp -fPIC -DPIC -o .libs/_quickfix_la-QuickfixPython.o warning: unknown warning option '-Wno-maybe-uninitialized'; did you mean '-Wno-uninitialized'? [-Wunknown-warning-option] QuickfixPython.cpp:175:11: fatal error: 'Python.h' file not found ^~~~~~~~~~ 1 warning and 1 error generated. Reviewed by: portmgr, vishwin, yuri Differential Revision: <https://reviews.freebsd.org/D40568>
* Add WWW entries to port MakefilesStefan Eßer2022-09-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It has been common practice to have one or more URLs at the end of the ports' pkg-descr files, one per line and prefixed with "WWW:". These URLs should point at a project website or other relevant resources. Access to these URLs required processing of the pkg-descr files, and they have often become stale over time. If more than one such URL was present in a pkg-descr file, only the first one was tarnsfered into the port INDEX, but for many ports only the last line did contain the port specific URL to further information. There have been several proposals to make a project URL available as a macro in the ports' Makefiles, over time. This commit implements such a proposal and moves one of the WWW: entries of each pkg-descr file into the respective port's Makefile. A heuristic attempts to identify the most relevant URL in case there is more than one WWW: entry in some pkg-descr file. URLs that are not moved into the Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr files in order to preserve them. There are 1256 ports that had no WWW: entries in pkg-descr files. These ports will not be touched in this commit. The portlint port has been adjusted to expect a WWW entry in each port Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as deprecated. Approved by: portmgr (tcberner)
* databases/tdb: Upgrade 1.4.3 to 1.4.7.Timur I. Bakeyev2022-07-301-107/+62
| | | | PR: 257528
* */*: Remove redundant '-*' from CONFLICTS definitionsStefan Eßer2021-11-251-1/+1
| | | | | | | | | The conflict checks compare the patterns first against the package names without version (as reported by "pkg query "%n"), then - if there was no match - agsinst the full package names including the version (as reported by "pkg query "%n-%v"). Approved by: portmgr (blanket)
* *: apply refactor.remove-consecutive-empty-linesTobias Kortkamp2021-10-191-1/+0
| | | | Submitted by: portedit
* One more small cleanup, forgotten yesterday.Mathieu Arnold2021-04-071-1/+0
| | | | Reported by: lwhsu
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* databases/tdb: use macro PYTHON_EXT_SUFFIX Right Way(TM)Dima Panov2020-12-241-1/+1
| | | | | | | Pointyhat to: fluffy Notes: svn path=/head/; revision=559166
* databases/tdb: switch to PYTHON_EXT_SUFFIXDima Panov2020-12-241-2/+2
| | | | Notes: svn path=/head/; revision=559074
* Update Samba supplimentary libs to the recent ones.Timur I. Bakeyev2020-07-051-1/+1
| | | | | | | | | | PR: 246284 246285 246286 246287 Notes: svn path=/head/; revision=541242
* Clean up USESAntoine Brodin2020-02-191-1/+1
| | | | | | | With hat: portmgr Notes: svn path=/head/; revision=526520
* Upgrade port to 1.4.2 versionTimur I. Bakeyev2019-10-111-1/+1
| | | | Notes: svn path=/head/; revision=514256
* Reinstate PORTEPOCH=1 to prevent version from going backwards.Matthias Andree2019-06-211-1/+1
| | | | Notes: svn path=/head/; revision=504761
* Upgrade Samba supplimentary ports to the new build system. Effectively they ↵Timur I. Bakeyev2019-06-191-36/+12
| | | | | | | | | | | are dependent now from Python 3.4+ for the build, unless NO_PYTHON is specified, in which case ports still can be build with Python 2.7. That should address legacy Python dependencies for some non-Samba ports as well. Notes: svn path=/head/; revision=504597
* Update Samba supplimentary libs to the newer versions.Timur I. Bakeyev2018-07-311-2/+2
| | | | | | | Sponsored by: iXsystems Inc. Notes: svn path=/head/; revision=475968
* Update Samba supplimentary libraries, fixed (new) portlint errors, changed ↵Timur I. Bakeyev2018-05-171-10/+10
| | | | | | | Python3 version knob. Notes: svn path=/head/; revision=470190
* Update supplimentary Samba libs to the latest versions.Timur I. Bakeyev2018-02-201-4/+14
| | | | | | | Sponsored by: iXsystems Inc. Notes: svn path=/head/; revision=462465
* Small useless bump of the version to make poudriere pick up changes in ↵Timur I. Bakeyev2017-12-171-19/+19
| | | | | | | WITH_SAMBA4_PYTHON3 usage Notes: svn path=/head/; revision=456519
* Make sure that you can compile all supplimentary ports without Python bindingsTimur I. Bakeyev2017-11-211-0/+1
| | | | Notes: svn path=/head/; revision=454619
* Fix too broad Python specification, cut down to 2.7 explicitly.Timur I. Bakeyev2017-11-201-1/+1
| | | | Notes: svn path=/head/; revision=454556
* Update Samba supplimentary libraries to the most recent versions.Timur I. Bakeyev2017-11-201-19/+52
| | | | Notes: svn path=/head/; revision=454532
* Update Samba4* supplimentary libraries to the newer versions.Timur I. Bakeyev2017-01-021-1/+1
| | | | | | | Made databases/ldb to depend on openldap-sasl-client, so it won't conflict with the corresponding requirement of net/samba4* ports. Notes: svn path=/head/; revision=430417
* This is routine update for the Samba supplimentary libraries, bumping them ↵Timur I. Bakeyev2016-04-121-1/+1
| | | | | | | to the versions that commonly acceptable by recent Samba ports, in particular, samba44. Notes: svn path=/head/; revision=413162
* Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.Mathieu Arnold2016-04-011-2/+2
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412346
* Update Samba supplimentary libsTimur I. Bakeyev2015-11-301-2/+2
| | | | Notes: svn path=/head/; revision=402636
* Fix to the coredump in the library code of the Samba libs. Provided by ↵Timur I. Bakeyev2015-09-191-1/+1
| | | | | | | | | Andrey Kramarenko. https://bugzilla.samba.org/show_bug.cgi?id=11455 Notes: svn path=/head/; revision=397323
* Upgrade relevant ports to the latest releases.Timur I. Bakeyev2015-08-091-3/+6
| | | | | | | PR: 202041 Notes: svn path=/head/; revision=393833
* MASTER_SITES cleanup.Mathieu Arnold2015-05-141-2/+1
| | | | | | | | | | | | | | | | | | | | | | - Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=386312
* Add a new USES=waf to handle the waf building system, allowing to factorise codeBaptiste Daroussin2015-04-081-46/+3
| | | | | | | | | | | | | | | | | | | | | Plug waf into MAKE_CMD and CONFIGURE_CMD so the regular defined targets can be reused Always define _MAKE_JOBS so that when bsd.port.mk will stop overwritting _MAKE_JOBS when parallel jobs are disabled we can enforce -j1 (which is needed to really disable parallelisation with waf WAF_CMD has been created to allow one to override the location of the waf script relatively to WRKSRC CONFIGURE_TARGET is by default defined to "configure" ALL_TARGET is by default defined to "build" INSTALL_TARGET is by default defined to "install" USES=waf is by default stagedir safe Notes: svn path=/head/; revision=383571
* Restore PORTEPOCHTijl Coosemans2015-01-161-1/+1
| | | | Notes: svn path=/head/; revision=377193
* Upgrade supplimentary net/samba ports to the minimal common required versions.Timur I. Bakeyev2015-01-161-6/+2
| | | | Notes: svn path=/head/; revision=377150
* - Convert ports from databases/ and deskutils/ to new USES=pythonMarcus von Appen2014-10-191-2/+2
| | | | | | | Approved by: portmgr (implicit) Notes: svn path=/head/; revision=371173
* Convert the Python framework bits to USES=python.Marcus von Appen2014-08-091-10/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Please use USES=python instead of USE_PYTHON. USE_PYTHON=yes becomes USES=python USE_PYTHON=2.7+ becomes USES=python:2.7+ USE_PYTHON_BUILD=3.3 becomes USES=python:3.3,build ... A new PYTHON_FEATURES variable was added, which enables certain features for a port and replaces some knobs at the same time; PYTHON_FEATURES=distutils replaces USE_PYDISTUTILS PYTHON_FEATURES=autoplist replaces PYDISTUTILS_AUTOPLIST PYTHON_FEATURES=py3kplist replaces PYTHON_PY3K_PLIST_HACK PYTHON_FEATURES=noegginfo replaces PYDISTUTILS_NOEGGINFO PYTHON_FEATURES=concurrent replaces PYTHON_CONCURRENT_INSTALL PYTHON_FEATURES=pythonprefix replaces USE_PYTHON_PREFIX Some knobs have been deprecated and are to be removed in the near future: PYTHON_MASTER_SITES - use MASTER_SITE_PYTHON instead PYTHON_PKGNAMESUFFIX - use PYTHON_PKGNAMEPREFIX instead PYDISTUTILS_INSTALLNOSINGLE - deprecated without replacement Some knobs have been removed completely: PYTHON_MASTER_SITE_SUBDIR PYTHON_DISTNAME PYTHON_WRKSRC Several variables specific to the Python framework are no longer passed to the build environment to avoid polluting dependency builds. PYTHON_VERSION is not passed to .MAKEFLAGS anymore PYTHON_DEFAULT_VERSION, PYTHON_DEFAULT_PORTVERSION and PYTHONBASE are not passed to the make environment anymore The conversion required a couple of ports to be updated to fit the changes and new requirements. Those included "bsd.python.mk" directly or contained checks in places, for which the USES framework would fail to provide correct values. Python modules directly using the upstream Python package (such as py-tkinter or py-sqlite3) were updated to avoid using the now unnecessary and remmoved knobs from "bsd.python.mk". Phabric: D399 exp-run: 167368 192357 PR: 167368 192357 Reviewed by: antoine, wg Exp-run award: antoine With hat: python@ Approved by: portmgr Notes: svn path=/head/; revision=364450
* A couple ports added support for OPTIONS but forgot to add them toAdam Weinberger2014-08-031-0/+3
| | | | | | | OPTIONS_DEFINE. Notes: svn path=/head/; revision=363931
* Add NO_PYTHON knob to make lev@ a bit happier. Minor version update of tdb.Timur I. Bakeyev2014-04-201-1/+5
| | | | Notes: svn path=/head/; revision=351657
* Usage of .pre.mk requires corresponding .post.mkTimur I. Bakeyev2014-03-131-1/+1
| | | | Notes: svn path=/head/; revision=348022
* Convert to the staged environmentTimur I. Bakeyev2014-03-131-23/+48
| | | | Notes: svn path=/head/; revision=348018
* Reduce over inclusion of bsd.port.mkBaptiste Daroussin2014-01-151-3/+1
| | | | Notes: svn path=/head/; revision=339872
* Python cleanup:Rene Ladan2014-01-131-1/+1
| | | | | | | | | | - USE_PYTHON* = 2.X -> USE_PYTHON* = 2 - USE_PYTHON* = 2.X+ -> USE_PYTHON* = yes Reviewed by: python (mva, rm) Approved by: portmgr-lurkers (mat) Notes: svn path=/head/; revision=339634
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | databases) Notes: svn path=/head/; revision=327717
* - Remove last vestiges of MAKE_JOBS_SAFE knobAlex Kozlov2013-09-201-2/+0
| | | | | | | Approved by: portmgr (bapt) Notes: svn path=/head/; revision=327683
* - Fix build after the recent lang/python changesMarcus von Appen2013-08-171-0/+1
| | | | Notes: svn path=/head/; revision=324882
* - Remove MAKE_JOBS_SAFE variableAlex Kozlov2013-08-141-1/+0
| | | | | | | Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=324744
* Update relevant ports to the latest release and fix disappeared --prefixTimur I. Bakeyev2013-07-011-5/+7
| | | | | | | | | from the bsd.ports.mk. PR: 180102, 180103, 180136 Notes: svn path=/head/; revision=322111