aboutsummaryrefslogtreecommitdiffstats
path: root/devel/cmake
Commit message (Collapse)AuthorAgeFilesLines
* Update CMake to 2.8.9.rakuco2012-09-155-64/+18
| | | | PR: ports/170654
* - Do not install Modules or Templates from devel/cmake, now that we havegahr2012-07-121-0/+31
| | | | devel/cmake-modules
* - Split devel/cmake port into devel/cmake and cmake/cmake-modules, in ordergahr2012-07-122-614/+9
| | | | | | to keep Modules and Templates separated. Approved by: avilla (kde)
* - fix the FindDCMTK.cmake to include the new oflog library introduced bygahr2012-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)
* Update to 2.8.8.rakuco2012-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)
* Update to 2.8.7.rakuco2012-01-104-17/+11
| | | | Approved by: avilla (mentor, implicit), portmgr (pav via exp-run)
* - Install cmake-mode.el [1].rakuco2011-11-102-0/+7
| | | | | | | | - Set LICENSE. PR: ports/151830 [1] Submitted by: Anonymous <swell.k AT gmail.com> [1] Approved by: makc (mentor)
* Update CMake to 2.8.6.rakuco2011-10-224-7/+54
| | | | Approved by: makc (mentor)
* - Distinguish STRIP from WITH_DEBUG.avilla2011-10-171-4/+4
| | | | | PR: 156543 Submitted by: Pan Tsu <inyaoo@gmail.com>
* - Remove the patch that was clearing default build flags for buildrakuco2011-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)
* - make the FindDCMTK.cmake module LOCALBASE-awaregahr2011-06-161-0/+2
| | | | Approved by: avilla (on behalf of kde@)
* Remove cmake predefined cflags for Debug and Release build profiles,makc2011-04-102-0/+15
| | | | | and let cmake use system CFLAGS. RelWithDebInfo and MinSizeRel profiles are leaved unchanged.
* - Update to 2.8.4miwi2011-02-254-18/+20
| | | | | Tested via: exp-run Approved by: kde@ implicit
* Fix search for QT_PLUGIN_PATH when it is empty. This should fixmakc2010-11-242-3/+19
| | | | some ports after latest cmake update.
* - Update to 2.8.3.avilla2010-11-175-24/+29
| | | | Approved by: tabthorpe (mentor)
* Add support for python 2.7makc2010-10-222-0/+12
| | | | | PR: ports/151606 Submitted by: Oliver Fromme <olli at secnetix.de>
* Update to 2.8.2makc2010-07-245-7/+33
| | | | | | | Respect WX_CONFIG [1] PR: ports/146805 [1] Reported by: rene@
* Fix FindRuby.cmakemakc2010-05-182-0/+14
| | | | | PR: ports/146662 Submitted by: Roman Neuhauser <neuhauser at sigpipe.cz>
* - Update CMake to 2.8.1 releasefluffy2010-05-116-31/+63
| | | | With hat on: kde@
* - Fix warning in FindSDL.cmakeamdmi32010-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>
* Append {LOCALBASE}/include to SDL_INCLUDE_DIR, thus allow to build SDL apps ↵makc2010-01-262-1/+15
| | | | | | | | | out of box. Bump PORTREVISION PR: ports/142583 Submitted by: amdmi3@
* Improve commentmakc2010-01-261-1/+1
|
* - Unbreak on sparc64gahr2010-01-021-0/+11
| | | | Approved by: miwi (for kde@)
* - Do not install garbage files from port's patch phaseamdmi32009-12-102-369/+2
| | | | | | PR: 141323 Submitted by: myself Approved by: miwi
* - Update cmake and cmake-gui tools to 2.8.0 releasefluffy2009-11-293-14/+489
| | | | Approved by: miwi (mentor)
* Respect LOCALBASEmakc2009-08-291-2/+8
| | | | | PR: based on ports/138187 Submitted by: amdmi3
* - Update to 2.6.4miwi2009-08-054-32/+9
|
* The KDE FreeBSD team is pleased to announce KDE 4.2.4, the last bugfixmiwi2009-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.
* Updated devel/cmake to respect LOCALBASE when set to locations other than ↵kmoore2009-05-281-0/+8
| | | | | | | | /usr/local - Not bumping PORTREV since this only effects users running on a non-standard LOCALBASE Approved by: miwi (mentor)
* Update devel/cmake to 2.6.3.makc2009-03-257-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)
* - Update to 2.6.2miwi2009-01-313-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
* Add patches for FindLua5* modules to fix detecting lua libs for cmake ↵makc2009-01-233-1/+23
| | | | | | | | dependent ports. PR: ports/130862 Submitted by: Nikos Ntarmos <ntarmos at ceid.upatras.gr> Approved by: miwi (implicit)
* Add ${LOCALBASE}/kde4 to the search paths for kde4-config. This is useful whenmakc2008-08-261-0/+3
| | | | | | kde4-config in not in the PATH and PREFIX is set for non-default value. Approved by: miwi (mentor)
* - Update to 2.6.1miwi2008-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
* Fix detection of qt4's lupdate and lrelease binariesarved2008-08-012-4/+21
| | | | | PR: 125815 Submitted by: Max Brazhnikov
* - Add common code to support for cmake based ports.miwi2008-05-284-13/+150
| | | | | | | - Update devel/cmake to 2.6.0 (also fix ports/123092) - Use the new CMAKE build framework in all ports using cmake Approved by: portmgr (pav)
* - Remove unneeded dependency from gtk12/gtk20 [1]miwi2008-04-201-1/+1
| | | | | | | | | | | | | | | - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav)
* - Update to 2.4.8miwi2008-02-093-10/+13
|
* Update to 2.4.7arved2007-07-273-4/+5
|
* Update to 2.4.6arved2007-02-022-4/+4
|
* - Respect X11BASE in various module functionsrafan2006-12-101-0/+4
| | | | | | | | This fixes build with non-standard X11BASE for math/vtk* and possible others. OKed by: arved Approved by: portmgr (linimon)
* Update to 2.4.4arved2006-11-263-4/+22
|
* Update to 2.4.3arved2006-08-143-4/+6
|
* Update to 2.4.1lofi2006-05-023-4/+7
|
* Update to 2.4.0lofi2006-04-263-39/+40
|
* Fix plistlofi2006-04-032-0/+2
|
* Update to 2.3.4lofi2006-04-013-7/+37
| | | | Submitted by: Adriaan de Groot <adriaan@codeyard.net>
* Update to 2.2.3ehaupt2005-12-233-11/+53
| | | | | | PR: 90190 Submitted by: KATO Tsuguru <tkato432@yahoo.com> Discussed with: anholt
* - Add some SHA256 checksumspav2005-11-241-0/+1
|
* Update to 2.0.6lawrance2005-06-203-14/+16
| | | | | PR: ports/82225 Submitted by: TAOKA Fumiyoshi <fmysh@iijmio-mail.jp>
* - Update to 2.0.5sem2005-01-093-4/+29
| | | | | PR: ports/75777 Submitted by: Pedro F. Giffuni <giffunip(at)asme.org>
* Add missing manpageskris2004-04-171-1/+1
|
* SIZEify.trevor2004-01-291-0/+1
|
* - Update to 1.8.3krion2004-01-123-136/+151
| | | | | | | | - MASTER_SITES dir depend on PORTVERSION - Utilize DOCSDIR and DATADIR PR: 61226 Submitted by: Sergey Matveychuk <sem@ciam.ru>
* - Update to 1.6.7pav2003-12-273-11/+101
| | | | | PR: ports/56671 Submitted by: Pedro F. Giffuni <giffunip@yahoo.com>
* Set maintainer mkm@ieee.org to ports@FreeBSD.orgedwin2003-11-041-1/+1
| | | | | | | From: alias-disabled-received@ieee.org (IEEE Member Alias Disabled) Date: Mon, 6 Oct 2003 07:21:40 -0400 (EDT) We apologize! The IEEE Personal Email Alias you trying to reach was disabled.
* De-pkg-comment.knu2003-02-212-1/+1
|
* - Update to 1.4.7.petef2003-01-032-2/+2
| | | | | PR: 46559 Submitted by: maintainer
* upgrade to 1.4.5ijliao2002-10-254-8/+22
| | | | Approved by: maintainer
* Add cmake-1.2, a cross-platform make.kris2002-09-215-0/+61
Submitted by: Kyle Martin <mkm@ieee.org>