aboutsummaryrefslogtreecommitdiff
path: root/databases/cppdb
Commit message (Collapse)AuthorAgeFilesLines
* Change cmake default behaviour to outsource.Tobias C. Berner2018-12-251-1/+1
| | | | | | | | | | | | | | Ports that build out of source now simply can use "USES=cmake" instead of "USES=cmake:outsource". Ports that fail to build out of source now need to specify "USES=cmake:insource". I tried to only set insource where explictely needed. PR: 232038 Exp-run by: antoine Notes: svn path=/head/; revision=488341
* Make ninja opt-out in cmake.mkTobias C. Berner2017-06-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Using ninja instead of make (1) can lead to significant speed ups while building. Therefore switch from having the ninja generator opt-in to having it opt-out. Previously cmake-ports that wanted to use ninja could set CMAKE_NINJA=yes now, ports that do not work with ninja can set cmake:<existing args>,noninja Note, that needing this should be an exception and most often points to a broken cmake of the port. The ports using cmake were modified * removed USES=gmake, if ninja is used * removed MAKE_ARGS, if ninja is used * added the cmake-argument noninja if necessary PR: 219629 PR: 213331 Exp-run by: antoine Reviewed by: rakuco Differential Revision: https://reviews.freebsd.org/D10748 Notes: svn path=/head/; revision=444324
* Fix plist for non-default OPTIONsThomas Zander2016-07-171-5/+9
| | | | | | | | | | | While on it: USE_MYSQL -> USES=mysql PR: 211165 Submitted by: info@babaei.net (maintainer) Reported by: riggs Notes: svn path=/head/; revision=418664
* Build with ninja to reduce build timeThomas Zander2016-07-171-1/+1
| | | | | | | | PR: 210725 Submitted by: info@babaei.net (maintainer) Notes: svn path=/head/; revision=418659
* Remove USE_SQLITE from bsd.databases.mk, replaced by USES=sqlite.Mathieu Arnold2016-04-251-1/+1
| | | | | | | | | | | | | | While there replace USE_SQLITE=x by USES=sqlite:x. PR: 208971 Submitted by: mat Exp-run by: antoine With hat: portmgr Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D5951 Notes: svn path=/head/; revision=414014
* Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.Mathieu Arnold2016-04-011-1/+1
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412346
* Cleanup plistBaptiste Daroussin2014-10-201-1/+0
| | | | Notes: svn path=/head/; revision=371255
* databases/cppdb: fix mysql/mariadb supportWilliam Grzybowski2014-08-202-1/+12
| | | | | | | | PR: 192833 Submitted by: maintainer Notes: svn path=/head/; revision=365476
* Fix packaging after PORTREVISION bumpAntoine Brodin2014-07-041-6/+0
| | | | Notes: svn path=/head/; revision=360607
* Bump PORTREVISION on all ports with USE_SQLITE=yes or USE_SQLITE=3 thatTijl Coosemans2014-07-041-0/+1
| | | | | | | | | | have not been bumped yet after the latest libsqlite3.so library version change. Approved by: portmgr (implicit) Notes: svn path=/head/; revision=360588
* Convert to USES=pgsqlBaptiste Daroussin2014-05-051-1/+1
| | | | | | | | | | While here: - stage support for pg_rman - stage support for pgagent - stage support for hashtypes Notes: svn path=/head/; revision=352999
* - Fix typo in LIB_DEPENDSAlex Kozlov2014-04-061-68/+66
| | | | | | | | | | | - Use tar:bz2 - Convert spaces to tabs PR: ports/188204 Submitted by: "Mohammad S. Babaei" <info@babaei.net> (maintainer) Notes: svn path=/head/; revision=350344
* In preparation for making libtool generate libraries with a sane name, fix allBaptiste Daroussin2013-12-111-1/+1
| | | | | | | LIB_DEPENDS in databases Notes: svn path=/head/; revision=336187
* CppDB is a SQL connectivity library that is designed to provide platform andSteven Kreuzer2013-10-024-0/+158
database independent connectivity API similarly to what JDBC, ODBC and other connectivity libraries do. It supports Sqlite3, PostgreSQL, MySQL and as many RDBMSs as possible via cppdb-odbc bridge. It was written with performance, simplicity in use and locale safety as the primary goals in mind. It also provides both explicit verbose API and brief and nice syntactic sugar. WWW: http://cppcms.com/sql/cppdb/ PR: ports/180404 Submitted by: Mohammad S. Babaei <info@babaei.net> Notes: svn path=/head/; revision=329100