aboutsummaryrefslogtreecommitdiff
path: root/databases/dbtool
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Update `databases/gdbm' to version 1.18.1, an important bugfix releaseAlexey Dokuchaev2018-11-111-0/+1
| | | | | | | | | | | | | which restores compatibility with old databases (version 1.8) and some later versions which were built without mmap(2) support. Due to shlib version change, bump port revisions of the consumer ports. PR: 233059 Exp-run by: antoine Approved by: maintainer (johans, numerous timeouts) Notes: svn path=/head/; revision=484696
* databases/dbtool: Unbreak with Clang 6Tobias Kortkamp2018-06-172-4/+65
| | | | | | | | | | | | | | | | | | engine.cc:539:46: error: non-constant-expression cannot be narrowed from type 'std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >::size_type' (aka 'unsigned long') to 'int' in initializer list [-Wc++11-narrowing] datum key = {(char *)config.key.c_str(), config.key.length()}; ^~~~~~~~~~~~~~~~~~~ engine.cc:539:46: note: insert an explicit cast to silence this issue datum key = {(char *)config.key.c_str(), config.key.length()}; ^~~~~~~~~~~~~~~~~~~ static_cast<int>( ) http://beefy12.nyi.freebsd.org/data/head-amd64-default/p472224_s334983/logs/dbtool-1.9.1.log Notes: svn path=/head/; revision=472627
* USE_BDB cleanup.Mathieu Arnold2016-08-081-1/+1
| | | | | | | | | | | | | | - USE_BDB=4x+ -> USES=bdb. - USE_BDB=yes -> USES=bdb. - USE_BDB=xx -> USES=bdb:xx. Other modernisations when I see them. PR: 209183 Sponsored by: Absolight Notes: svn path=/head/; revision=419843
* - Fix trailing whitespace in pkg-descrs, categories [a-f]*Dmitry Marakasov2016-05-191-1/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=415498
* Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.Mathieu Arnold2016-04-011-3/+3
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412346
* Unmark BROKEN.Raphael Kubo da Costa2015-12-301-1/+0
| | | | | | | The port can be fetched just fine. Notes: svn path=/head/; revision=404823
* Mark as broken: does not fetchBaptiste Daroussin2015-10-241-0/+1
| | | | Notes: svn path=/head/; revision=400071
* - Update to version 1.9.1Pawel Pekala2015-10-165-74/+30
| | | | | | | | | | | - Add LICENSE_FILE - Convert to USES=shebangfix, option helpers, PLIST_FILES PR: 203242 Submitted by: tkato432@yahoo.com Notes: svn path=/head/; revision=399505
* Upgrade from 1.7 to 1.8. While here, please portlint and unroll someMikhail Teterin2015-04-142-21/+13
| | | | | | | loops in Makefile. Notes: svn path=/head/; revision=384024
* Cleanup plistBaptiste Daroussin2014-10-201-4/+0
| | | | Notes: svn path=/head/; revision=371255
* Fix up missed or botched PORTREVISION bumps from r365599.Matthias Andree2014-08-221-1/+1
| | | | | | | | | Apparently Tools/scripts/bump-revision.sh isn't too robust... PR: 192690 Notes: svn path=/head/; revision=365611
* Berkeley DB cleanup, remove versions 4.0 ... 4.7.Matthias Andree2014-08-211-10/+15
| | | | | | | | | | | | | | | | | | | | | | | | | - Mk/bsd.database.mk rewrite, new default to db5. - db6 is eligible by default only if installed on the system. - Bump PORTREVISION of all ports that directly depend on BerkeleyDB or where USE_BDB is found in the port's directory - Patch a few ports such that they will pick up or work with newer versions. - Add UPDATING entry - Drive-by format fix for pks - Drop BerkeleyDB option from mail/popular for now, requires more work. - Exp-run logs linked from the PR below. - Ports that do not build (IGNORE, BROKEN, etc.) have pro-forma changes for new Berkeley DB, but are untested. NOTE: please read UPDATING and the Wiki page before proceeding! Announcement: http://lists.freebsd.org/pipermail/freebsd-ports-announce/2014-August/000090.html Wiki reference: https://wiki.freebsd.org/Ports/BerkeleyDBCleanup PR: 192690 Approved by: portmgr (implicit, PORTREVISION bump on unstaged ports) Notes: svn path=/head/; revision=365599
* Nuke NOPORTDOCS. While, here, correct a couple offenders who label examplesAdam Weinberger2014-07-031-1/+3
| | | | | | | with PORTDOCS. And, fix a couple WITH_foo invocations. Notes: svn path=/head/; revision=360463
* Reset the 99 ports still listed under sylvio@John Marino2014-06-111-1/+1
| | | | | | | | | | | | | | Sylvio's last commit was 17 months ago, a full 5 months after all of his ports could have been reset per policy. Given the push to complete staging (48 ports are still unstaged, something like 70+ have already been staged by other committers) and given that PRs are automatically assigned but never addressed, it's better just to reset all the ports and PRs so that it's clear to others that these ports are free to maintain. Approved by: portmgr (implicit) Notes: svn path=/head/; revision=357526
* Support LIBS like LDFLAGS.Tijl Coosemans2014-06-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add LIBS="${LIBS}" to MAKE_ENV and CONFIGURE_ENV. - Add an option helper for LIBS. - Adjust all ports that already use LIBS. Also remove references to PTHREAD_CFLAGS and PTHREAD_LIBS while here. - Some ports did not support having a LIBS environment variable and required additional patches. Somewhat simplified a linker command line looks like: ${CC} ${src_LDFLAGS} ${LDFLAGS} ${src_LIBS} ${LIBS} where src_LDFLAGS and src_LIBS are controlled by upstream and LDFLAGS and LIBS can be controlled by us. If possible -L and -l flags need to be added to LIBS to make sure they appear after any -L and -l flags set by upstream. Many ports currently add -L${LOCALBASE}/lib to LDFLAGS but this may appear too early on the command line causing installed libraries to be linked in instead of freshly built ones. Additional changes: benchmarks/netio: Replace WITH_IPV6 with an IPV6 option. comms/gnokii: Replace some patches with USES=pathfix. Also remove -fPIC. graphics/gimageview: USES=libtool and install desktop file in DESKTOPDIR. graphics/visionworkbench: Remove FreeBSD 7 support. multimedia/libmovtar: New LIB_DEPENDS syntax. multimedia/opencinematools: Use standard do-build. net/siproxd: USES=libtool:keepla (port actually needs .la files for plugins) net-mgmt/nagios: Remove -fPIC. net-mgmt/nagios4: Remove -fPIC. print/cups-base: Only add -lssp_nonshared on i386 and OSVERSION < 1000036. security/p11-kit: Replace PTHREAD_LIBS in CONFIGURE_ENV with ac_cv_func_pthread_mutexattr_init=no in CONFIGURE_ARGS. This skips a test in configure that falsely detects pthread_mutexattr_init in our libc. sysutils/dar: Fix iconv detection. x11/rxvt-unicode: Remove -lstdc++ and patch configure to remove a FreeBSD hack and use $CXX as linker as on other platforms. PR: 190592 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=357486
* Support stageBaptiste Daroussin2014-05-072-29/+13
| | | | | | | | Use option framework Convert to USES=gmake Notes: svn path=/head/; revision=353230
* Fix old makeplist bug.Mathieu Arnold2014-02-122-5/+5
| | | | | | | | Pointy hat to: people who blindly use makeplist Sponsored by: Absolight Notes: svn path=/head/; revision=343923
* In preparation for making libtool generate libraries with a sane name, fix allBaptiste Daroussin2013-12-111-3/+3
| | | | | | | LIB_DEPENDS in databases Notes: svn path=/head/; revision=336187
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-6/+2
| | | | | | | databases) Notes: svn path=/head/; revision=327717
* Update PCRE to 8.32Martin Matuska2012-12-101-2/+2
| | | | | | | | Introduces the UTF-32 library pcre32 Bump PORTREVISION in dependent ports Notes: svn path=/head/; revision=308630
* Bump pcre library dependency due to 8.30 updateMartin Matuska2012-02-141-2/+2
| | | | Notes: svn path=/head/; revision=291338
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-2/+2
| | | | | | | | | | | | - Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav Notes: svn path=/head/; revision=282282
* - Track dependencies after databases/gdbm updateGabor Kovesdan2011-09-121-1/+2
| | | | Notes: svn path=/head/; revision=281668
* - Add licenseSylvio Cesar Teixeira2011-05-191-0/+2
| | | | Notes: svn path=/head/; revision=274330
* - Get Rid MD5 supportMartin Wilke2011-03-201-1/+0
| | | | Notes: svn path=/head/; revision=271346
* - Update my mail address to FreeBSDSylvio Cesar Teixeira2009-11-271-1/+1
| | | | | | | Approved by: miwi (mentor) Notes: svn path=/head/; revision=244870
* - Update to 1.7.Marcelo Araujo2009-06-306-65/+17
| | | | | | | | | | - Pass maintainer to submitter. PR: ports/136074 Submitted by: Sylvio Cesar <scjamorim@bsd.com.br> Notes: svn path=/head/; revision=236824
* - Update download locationPav Lucistnik2009-01-311-1/+1
| | | | Notes: svn path=/head/; revision=227298
* Bump portrevision due to upgrade of devel/gettext.Edwin Groothuis2008-06-061-1/+1
| | | | | | | | | | | | | The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav) Notes: svn path=/head/; revision=214430
* - Fix mastersite.Jean Milanez Melo2007-02-151-1/+1
| | | | | | | | PR: ports/109190 Submitted by: Thomas Abthorpe <thomas@goodking.ca> Notes: svn path=/head/; revision=185250
* In preparation to deprecate shells/bash2:Boris Samorodov2006-12-221-2/+2
| | | | | | | | - change RUN_DEPENDS: shells/bash2 -> shells/bash; - bump PORTREVISION. Notes: svn path=/head/; revision=180524
* Fix build with gcc41Tilman Keskinoz2006-12-212-0/+28
| | | | Notes: svn path=/head/; revision=180332
* Remove USE_REINPLACE from all categories starting with DEdwin Groothuis2006-05-041-1/+0
| | | | Notes: svn path=/head/; revision=161363
* - Add SHA256Pav Lucistnik2005-11-241-0/+1
| | | | Notes: svn path=/head/; revision=149245
* Update WWW.Anton Berezin2004-06-101-1/+1
| | | | Notes: svn path=/head/; revision=111235
* Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.Joe Marcus Clarke2004-02-041-0/+1
| | | | | | | (Part 2) Notes: svn path=/head/; revision=99920
* SIZEify.Trevor Johnson2004-01-291-0/+1
| | | | Notes: svn path=/head/; revision=99360
* databases/dbtool: upgrading to 1.6 and fixing on -CURRENT.Edwin Groothuis2003-03-306-3/+89
| | | | | | | | PR: ports/50213 Submitted by: Thierry Thomas <thierry@pompo.net> Notes: svn path=/head/; revision=77727
* De-pkg-comment.Akinori MUSHA2003-02-202-1/+1
| | | | Notes: svn path=/head/; revision=75951
* URL fixes.Christian Weisgerber2003-02-051-1/+1
| | | | | | | | PR: 47848, 47853, 47855 Submitted by: tadalunch@s5.xrea.com Notes: svn path=/head/; revision=74893
* chase gdbm lib versionYing-Chieh Liao2003-01-031-1/+1
| | | | Notes: svn path=/head/; revision=72367
* o Rollback PORTCOMMENT modifications while this feature's implementationMario Sergio Fujikawa Ferreira2002-11-102-2/+1
| | | | | | | | | | | is better studied o Turn PORTCOMMENT variable in Makefile back into pkg-comment files Approved by: kris (portmgr hat), portmgr, re (silence) Notes: svn path=/head/; revision=69808
* Use PORTCOMMENT in the Makefile, and whack the pkg-comment.Adam Weinberger2002-11-062-1/+2
| | | | | | | Approved by: pat Notes: svn path=/head/; revision=69612
* ${PERL} -> ${REINPLACE_CMD}David W. Chapman Jr.2002-09-011-2/+3
| | | | | | | | | PR: 40784 Submitted by: corecode@corecode.ath.cx Reviewed by: flynn@energyhq.homeip.net Notes: svn path=/head/; revision=65426
* Fix typo that would have meant this port would not have compiledAde Lovett2002-08-221-1/+1
| | | | | | | if db3 support had been selected. Notes: svn path=/head/; revision=64838
* upgrade to 1.5Ying-Chieh Liao2002-06-132-2/+2
| | | | | | | | PR: 39224 Submitted by: Oliver Braun <obraun@informatik.unibw-muenchen.de> Notes: svn path=/head/; revision=61215
* upgrade to 1.4Ying-Chieh Liao2002-04-172-5/+5
| | | | | | | drop maintainership Notes: svn path=/head/; revision=57793
* Back out the db3 port update because some of these dependent ports hadAkinori MUSHA2001-08-011-2/+2
| | | | | | | | | | | | | been broken by the incompatibility between db3.2 and db3.3. I am unconditionally bumping the PORTREVISION's to eliminate possible troubles that should not happen before the coming release. Sorry for inconvenience. I'll try to check compatibility hard before committing next time. Notes: svn path=/head/; revision=45700
* Reflect databases/db3's shlib version bump from 2 to 3.Akinori MUSHA2001-07-251-1/+2
| | | | Notes: svn path=/head/; revision=45472