summaryrefslogtreecommitdiff
path: root/devel/cmake (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Make the port build with security/openssl installed after r347541.Raphael Kubo da Costa2014-03-092-1/+37
| | | | | | | | | | | | | | | | | | Add a patch sent upstream that makes sure the bundled curl's include paths are passed to the compiler before any other ones, since they could include the system's curl include directory. One way to trigger this was to build the port with security/openssl installed: CMake would detect OpenSSL's include path (${LOCALBASE}/include) and pass it to the compiler. If ftp/curl is also installed, the compiler would end up picking its headers instead of the ones in cmcurl's own directory. Reported by: Terry Kennedy <terry@tmk.com> MFH: 2014Q1 Notes: svn path=/head/; revision=347674
* Enable use of OpenSSL in the bundled copy of libcurl.Raphael Kubo da Costa2014-03-082-1/+5
| | | | | | | | | | | The default is off, which makes calls such as FILE(DOWNLOAD ...) from HTTPS locations fail. PR: ports/187374 MFH: 2014Q1 Notes: svn path=/head/; revision=347541
* devel/cmake:Max Brazhnikov2014-03-041-2/+5
| | | | | | | | | | - Use KDE4_PREFIX instead of ${LOCALBASE}/kde4 [1] - Add DOCS option after r346983 Reported by: Alan Hicks <ahicks@p-o.co.uk> via kde-freebsd maillist [1] Notes: svn path=/head/; revision=346987
* Add %%PORTDOCS%% to the plist, to honour UNSET=DOCS.Adam Weinberger2014-03-042-38/+39
| | | | | | | | | | PORTREVISION bump for the changed plist. PR: ports/185662 Approved by: maintainer timeout (> 6 weeks) Notes: svn path=/head/; revision=346983
* - Fix LICENSEPietro Cerutti2014-02-261-1/+1
| | | | | | | Approved by: kde@ (implicit) Notes: svn path=/head/; revision=346168
* Update freetype to 2.5.2.Koop Mast2013-12-241-0/+28
| | | | | | | | | | | | | | | | | Remove patch to add -I/usr/local/include in freetype-config --cflags. If ports need extra headers they should look for them, and not get them via a side-effect. Freetype had a header resuffle in 2.5.1, patch ports to use the new header style. Thanks go to bdrewery for the two exp-runs and rakuco for helping me with some troublesome cmake ports. PR: ports/184587 Notes: svn path=/head/; revision=337385
* Update CMake's master sites.Raphael Kubo da Costa2013-12-111-1/+1
| | | | | | | | | | The previous value now redirects to downloads.cmake.org, which causes the default fetch settings to fail. Thanks to Adriaan de Groot for the report. Notes: svn path=/head/; revision=336159
* Update CMake to 2.8.12.1.Raphael Kubo da Costa2013-11-172-4/+4
| | | | | | | | | | This is a minor bug-fix release. More information about the changes in this release can be found in <http://www.cmake.org/Wiki/CMake/ChangeLog>. PR: ports/183908 Notes: svn path=/head/; revision=334134
* Welcome CMake 2.8.12!Raphael Kubo da Costa2013-11-056-38/+54
| | | | | | | | | | | | | | | | | | | | | | | With contributions from Schaich Alonso <alonsoschaich@fastmail.fm>, including stage support for devel/cmake-gui. This update took much longer than expected due to CMake changing the arguments to an internal macro that ended up being used by some ports: http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=9ce60ff5 I have also started a discussion about this on CMake's development list: http://article.gmane.org/gmane.comp.programming.tools.cmake.devel/8464 It required adjusting the affected ports, and these changes have approved by portmgr (bdrewery). PR: ports/182981 Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=332891
* - STAGE-cleanPietro Cerutti2013-10-232-13/+11
| | | | Notes: svn path=/head/; revision=331379
* Add some patches to FindGTK2.cmake that will be in the next release.Raphael Kubo da Costa2013-09-291-0/+25
| | | | | | | | | At least audio/jack-keyboard is failing to link on 10-CURRENT after the linker stopped pulling indirect dependencies. Add this patch in order to link directly against gthread when linking against gtk2. Notes: svn path=/head/; revision=328700
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | devel part 1) Notes: svn path=/head/; revision=327722
* - Remove MAKE_JOBS_SAFE variableAlex Kozlov2013-08-141-1/+0
| | | | | | | Approved by: portmgr (bdrewery) Notes: svn path=/head/; revision=324744
* Add an initial cache file for CMake to use at build-time.Raphael Kubo da Costa2013-08-032-1/+8
| | | | | | | | | | | | | | | | | | Provide a cache file with additional CMake commands that CMake reads when bootstrapping. For now it just sets the BUILD_TESTING cache variable to OFF, so that most tests are not processed when building the port. Building the tests was particularly troublesome in Qt 4's case: since we have separate ports for each part, one could have devel/qmake-qt4 installed and not, say, devel/qt4-corelib, which would make CMake fail. See https://mail.kde.org/pipermail/kde-freebsd/2013-July/015703.html for an example. No PORTREVISION bump since package creation was not broken. Notes: svn path=/head/; revision=324203
* Update CMake to 2.8.11.2.Raphael Kubo da Costa2013-07-104-27/+16
| | | | | | | PR: ports/178737 Notes: svn path=/head/; revision=322628
* - Update cmake to 2.8.10.2Max Brazhnikov2013-03-198-86/+72
| | | | | | | | | | | - Trim Makefile header - Drop indefinite article from COMMENT Obtained from: area51 Tested by: exp-run (bapt) Notes: svn path=/head/; revision=314669
* Update CMake to 2.8.9.Raphael Kubo da Costa2012-09-145-64/+18
| | | | | | | PR: ports/170654 Notes: svn path=/head/; revision=304291
* - Do not install Modules or Templates from devel/cmake, now that we havePietro Cerutti2012-07-121-0/+31
| | | | | | | devel/cmake-modules Notes: svn path=/head/; revision=300800
* - Split devel/cmake port into devel/cmake and cmake/cmake-modules, in orderPietro Cerutti2012-07-122-614/+9
| | | | | | | | | to keep Modules and Templates separated. Approved by: avilla (kde) Notes: svn path=/head/; revision=300799
* - fix the FindDCMTK.cmake to include the new oflog library introduced byPietro Cerutti2012-07-111-0/+10
| | | | | | | | | | dcmtk-3.6.0. This has been reported in CMake bug tracker: http://public.kitware.com/Bug/view.php?id=12324 Approved by: kde@ (implicit) Notes: svn path=/head/; revision=300762
* Update to 2.8.8.Raphael Kubo da Costa2012-05-036-22/+110
| | | | | | | | | | | It includes an upstream patch which fixes the FindPkgConfig.cmake module. It will be part of 2.8.9. PR: ports/167140 Approved by: portmgr (pav via exp-run) Notes: svn path=/head/; revision=295909
* Update to 2.8.7.Raphael Kubo da Costa2012-01-104-17/+11
| | | | | | | Approved by: avilla (mentor, implicit), portmgr (pav via exp-run) Notes: svn path=/head/; revision=288856
* - Install cmake-mode.el [1].Raphael Kubo da Costa2011-11-092-0/+7
| | | | | | | | | | | - Set LICENSE. PR: ports/151830 [1] Submitted by: Anonymous <swell.k AT gmail.com> [1] Approved by: makc (mentor) Notes: svn path=/head/; revision=285397
* Update CMake to 2.8.6.Raphael Kubo da Costa2011-10-224-7/+54
| | | | | | | Approved by: makc (mentor) Notes: svn path=/head/; revision=284085
* - Distinguish STRIP from WITH_DEBUG.Alberto Villa2011-10-161-4/+4
| | | | | | | | PR: 156543 Submitted by: Pan Tsu <inyaoo@gmail.com> Notes: svn path=/head/; revision=283626
* - Remove the patch that was clearing default build flags for buildRaphael Kubo da Costa2011-09-112-15/+1
| | | | | | | | | | | | | profiles, so that CMake can be used outside of ports. - Bump CMake PORTREVISION. - Pass default build flags (at least I hope) via bsd.cmake.mk. PR: 159276 Submitted by: Igor Soumenkov <2igosha@gmail.com> Approved by: avilla (mentor) Notes: svn path=/head/; revision=281618
* - make the FindDCMTK.cmake module LOCALBASE-awarePietro Cerutti2011-06-161-0/+2
| | | | | | | Approved by: avilla (on behalf of kde@) Notes: svn path=/head/; revision=275679
* Remove cmake predefined cflags for Debug and Release build profiles,Max Brazhnikov2011-04-102-0/+15
| | | | | | | | and let cmake use system CFLAGS. RelWithDebInfo and MinSizeRel profiles are leaved unchanged. Notes: svn path=/head/; revision=272459
* - Update to 2.8.4Martin Wilke2011-02-254-18/+20
| | | | | | | | Tested via: exp-run Approved by: kde@ implicit Notes: svn path=/head/; revision=269630
* Fix search for QT_PLUGIN_PATH when it is empty. This should fixMax Brazhnikov2010-11-232-3/+19
| | | | | | | some ports after latest cmake update. Notes: svn path=/head/; revision=265026
* - Update to 2.8.3.Alberto Villa2010-11-175-24/+29
| | | | | | | Approved by: tabthorpe (mentor) Notes: svn path=/head/; revision=264698
* Add support for python 2.7Max Brazhnikov2010-10-212-0/+12
| | | | | | | | PR: ports/151606 Submitted by: Oliver Fromme <olli at secnetix.de> Notes: svn path=/head/; revision=263415
* Update to 2.8.2Max Brazhnikov2010-07-245-7/+33
| | | | | | | | | | Respect WX_CONFIG [1] PR: ports/146805 [1] Reported by: rene@ Notes: svn path=/head/; revision=258129
* Fix FindRuby.cmakeMax Brazhnikov2010-05-172-0/+14
| | | | | | | | PR: ports/146662 Submitted by: Roman Neuhauser <neuhauser at sigpipe.cz> Notes: svn path=/head/; revision=254510
* - Update CMake to 2.8.1 releaseDima Panov2010-05-116-31/+63
| | | | | | | With hat on: kde@ Notes: svn path=/head/; revision=254129
* - Fix warning in FindSDL.cmakeDmitry Marakasov2010-01-293-5/+23
| | | | | | | | | | | - Use @dirrmtry for Modules dir, as other ports may install their own cmake modules PR: 143313 Submitted by: myself Approved by: Max Brazhnikov <makc@issp.ac.ru> Notes: svn path=/head/; revision=248799
* Append {LOCALBASE}/include to SDL_INCLUDE_DIR, thus allow to build SDL apps ↵Max Brazhnikov2010-01-252-1/+15
| | | | | | | | | | | | out of box. Bump PORTREVISION PR: ports/142583 Submitted by: amdmi3@ Notes: svn path=/head/; revision=248569
* Improve commentMax Brazhnikov2010-01-251-1/+1
| | | | Notes: svn path=/head/; revision=248568
* - Unbreak on sparc64Pietro Cerutti2010-01-021-0/+11
| | | | | | | Approved by: miwi (for kde@) Notes: svn path=/head/; revision=246989
* - Do not install garbage files from port's patch phaseDmitry Marakasov2009-12-092-369/+2
| | | | | | | | | PR: 141323 Submitted by: myself Approved by: miwi Notes: svn path=/head/; revision=245458
* - Update cmake and cmake-gui tools to 2.8.0 releaseDima Panov2009-11-293-14/+489
| | | | | | | Approved by: miwi (mentor) Notes: svn path=/head/; revision=244969
* Respect LOCALBASEMax Brazhnikov2009-08-291-2/+8
| | | | | | | | PR: based on ports/138187 Submitted by: amdmi3 Notes: svn path=/head/; revision=240501
* - Update to 2.6.4Martin Wilke2009-08-044-32/+9
| | | | Notes: svn path=/head/; revision=238900
* The KDE FreeBSD team is pleased to announce KDE 4.2.4, the last bugfixMartin Wilke2009-06-032-1/+2
| | | | | | | | | release in 4.2.x series. The official KDE 4.2.4 release changelog can be found at: http://www.kde.org/announcements/changelogs/changelog4_2_3to4_2_4.php. Notes: svn path=/head/; revision=235110
* Updated devel/cmake to respect LOCALBASE when set to locations other than ↵Kris Moore2009-05-271-0/+8
| | | | | | | | | | | /usr/local - Not bumping PORTREV since this only effects users running on a non-standard LOCALBASE Approved by: miwi (mentor) Notes: svn path=/head/; revision=234662
* Update devel/cmake to 2.6.3.Max Brazhnikov2009-03-247-45/+44
| | | | | | | | | - Set INSTALL_TARGET for cmake based ports to install/strip. This solves problem of installing non-stripped binaries (noticed by delphij for KDE4 ports) - Fix linking to -lpthread for cmake based ports (KDE4 ports are affected mostly) Notes: svn path=/head/; revision=230896
* - Update to 2.6.2Martin Wilke2009-01-303-5/+6
| | | | | | | | | | | | | | | | | | | | | | | | - Remove CMAKE_BUILD_TYPE [1] CMAKE_BUILD_TYPE only affects compiler FLAGS and linking with specific library versions (debug |optimized | general). In our case external libraries reside in other ports and only install one version (no separate debug/optimized). Also, the ports system provide correct compiler flags (-g and no optimizations when WITH_DEBUG is used). Thus, cmake buildtypes only add extra compiler flags. Ports will be built correctly both by default and for WITH_DEBUG case. - Also, change WRKSRC to CONFIGURE_WRKSRC. (use CONFIGURE_WRKSRC for configure target instead of WRKSRC) PR: 126507 [1] Submitted by: amdmi3@ [1] Tested with: exp-run Thanks to: pav/amdmi3 Notes: svn path=/head/; revision=227174
* Add patches for FindLua5* modules to fix detecting lua libs for cmake ↵Max Brazhnikov2009-01-223-1/+23
| | | | | | | | | | | dependent ports. PR: ports/130862 Submitted by: Nikos Ntarmos <ntarmos at ceid.upatras.gr> Approved by: miwi (implicit) Notes: svn path=/head/; revision=226684
* Add ${LOCALBASE}/kde4 to the search paths for kde4-config. This is useful whenMax Brazhnikov2008-08-261-0/+3
| | | | | | | | | kde4-config in not in the PATH and PREFIX is set for non-default value. Approved by: miwi (mentor) Notes: svn path=/head/; revision=219201
* - Update to 2.6.1Martin Wilke2008-08-103-5/+14
| | | | | | | | | | | | Changelog: http://www.cmake.org/pipermail/cmake/2008-August/023188.html bsd.cmake.mk - Use VERBOSE mode when BATCH is defined to get more informative logs on pointyhat/tinderbox Notes: svn path=/head/; revision=218344