aboutsummaryrefslogtreecommitdiff
path: root/astro/kstars
Commit message (Collapse)AuthorAgeFilesLines
* astro/kstars: update to 3.4.1Tobias C. Berner2020-03-083-4/+5
| | | | Notes: svn path=/head/; revision=528039
* astro/kstars: update to 3.4.0Tobias C. Berner2020-02-143-5/+4
| | | | Notes: svn path=/head/; revision=526165
* astro/kstars: update to 3.3.9Tobias C. Berner2020-01-024-65/+6
| | | | Notes: svn path=/head/; revision=521811
* astro/kstars: update to 3.3.8Tobias C. Berner2019-11-242-4/+4
| | | | Notes: svn path=/head/; revision=518297
* Remove post-patch section.Raphael Kubo da Costa2019-11-091-6/+0
| | | | | | | Upstream was fixed back in 2015 with commit 4946984e01. Notes: svn path=/head/; revision=517145
* astro/kstars: update to 3.3.7Tobias C. Berner2019-11-094-11/+13
| | | | Notes: svn path=/head/; revision=517117
* Update astro/kstars to latest upstream releaseAdriaan de Groot2019-10-104-9/+7
| | | | | | | | | Release notes: http://knro.blogspot.com/2019/09/kstars-v336-is-released.html says "lots of little improvements". One translation has gone away. Notes: svn path=/head/; revision=514252
* - Update astro/wcslib to 6.4Danilo Egea Gondolfo2019-09-151-0/+1
| | | | Notes: svn path=/head/; revision=512097
* astro/kstars: update to 3.3.5Tobias C. Berner2019-09-094-5/+15
| | | | Notes: svn path=/head/; revision=511645
* astro/kstars: update to 3.3.4Tobias C. Berner2019-08-282-4/+4
| | | | Notes: svn path=/head/; revision=510100
* astro/kstars: update to 3.3.3Tobias C. Berner2019-08-043-5/+11
| | | | Notes: svn path=/head/; revision=508121
* Update to 3.47Sunpoet Po-Chuan Hsieh2019-07-271-1/+1
| | | | | | | | | - Bump PORTREVISION of dependent ports for shlib change Changes: https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/docs/changes.txt Notes: svn path=/head/; revision=507401
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2019-07-261-0/+1
| | | | | | | | | | | | | | | | | | as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330 Notes: svn path=/head/; revision=507372
* astro/kstars: update to 3.3.2Tobias C. Berner2019-07-104-22/+4
| | | | Notes: svn path=/head/; revision=506376
* astro/kstars: update to 3.3.0Tobias C. Berner2019-06-223-4/+14
| | | | Notes: svn path=/head/; revision=504864
* astro/kstars: update to 3.2.3Tobias C. Berner2019-06-012-4/+4
| | | | Notes: svn path=/head/; revision=503253
* astro/kstars: readd accidentally dropped epochTobias C. Berner2019-05-161-0/+1
| | | | | | | | Pointy hat: tcberner Reported by: fluffy Notes: svn path=/head/; revision=501784
* astro/kstars: update to 3.2.2Tobias C. Berner2019-05-162-5/+4
| | | | Notes: svn path=/head/; revision=501767
* astro/kstars: update to 3.2.1Tobias C. Berner2019-04-282-4/+4
| | | | Notes: svn path=/head/; revision=500316
* astro/kstars: update to 3.2.0Tobias C. Berner2019-04-183-5/+5
| | | | Notes: svn path=/head/; revision=499314
* graphics/libraw: Update to 0.19.2Jason E. Hale2019-03-291-1/+1
| | | | | | | | | | - Demosaic packs are no longer distributed nor supported upstream - Bump PORTREVISON on all consumers due to libraw shlib version increase Changes: https://www.libraw.org/news/libraw-0-19-2-release Notes: svn path=/head/; revision=497222
* security/qtkeychain: remove flavors (Qt4 deprecation)Tobias C. Berner2019-03-161-0/+1
| | | | | | | Approved by: portmgr (implicit) Notes: svn path=/head/; revision=495941
* astro/kstars: update to 3.1.1Tobias C. Berner2019-03-103-4/+36
| | | | Notes: svn path=/head/; revision=495240
* astro/kstars: update to 3.1.0Tobias C. Berner2019-03-013-25/+130
| | | | Notes: svn path=/head/; revision=494235
* Fix Qt5 symbol version scripts to put the catch-all clause first. WhenTijl Coosemans2019-01-161-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | a symbol matches multiple clauses the last one takes precedence. If the catch-all is last it captures everything. In the case of Qt5 libraries this caused all symbols to have a Qt_5 label while some should have Qt_5_PRIVATE_API. This only affects lld because GNU ld always gives the catch-all lowest priority. Older versions of Qt5Webengine exported some memory allocation symbols from the bundled Chromium. Version 5.9 stopped exporting these [1] but the symbols were kept as weak wrappers for the standard allocation functions to maintain binary compatibility. [2][3] The problem is that the call to the standard function in these weak wrappers is only resolved to the standard function if there's a call to this standard function in other parts of Qt5Webengine, because only then is there a non-weak symbol that takes precedence over the weak one. If there's no such non-weak symbol the call in the weak wrapper resolves to the weak wrapper itself creating an infinite call loop that overflows the stack and causes a crash. Some of the allocation functions are variants of C++ new and delete and it probably depends on the compiler whether these variants are used in other parts of Qt5Webengine. Remove the weak wrappers (make them Linux specific). This isn't binary compatible but we are already breaking that with the changes to the symbol versions. [1] https://github.com/qt/qtwebengine/commit/5c2cbfccf9aafb547b0b30914c4056abd25942a4 [2] https://github.com/qt/qtwebengine/commit/2ed5054e3a800fa97c2c9e920ba1e6ea4b6ef2a5 [3] https://github.com/qt/qtwebengine/commit/009f5ebb4bd6e50188671e0815a5dae6afe39db5 Bump all ports that depend on Qt5. PR: 234070 Exp-run by: antoine Approved by: kde (adridg) Notes: svn path=/head/; revision=490472
* astro/kstars: update to 3.0.0Tobias C. Berner2018-12-293-10/+21
| | | | | | | | Changelog: http://knro.blogspot.com/2018/12/kstars-v300-is-released.html Notes: svn path=/head/; revision=488683
* astro/kstars: fix linking with lld7Tobias C. Berner2018-12-291-0/+61
| | | | | | | | | | | | | kstars tries to pass -z nodump to the linker, which is not supported by lld7. This patch adds a little CMake function to check whether the linker accepts that flag, and if not does not add it. PR: 230603 Reported by: jbeich Notes: svn path=/head/; revision=488682
* Update math/eigen3 to 3.3.7Tobias C. Berner2018-12-261-1/+1
| | | | | | | | - http://eigen.tuxfamily.org/index.php?title=ChangeLog#Eigen_3.3.6 - http://eigen.tuxfamily.org/index.php?title=ChangeLog#Eigen_3.3.7 Notes: svn path=/head/; revision=488363
* 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
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-12-121-1/+1
| | | | | | | | | | | | | | | | | | defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590 Notes: svn path=/head/; revision=487272
* - Update astro/wcslib to 6.2Danilo Egea Gondolfo2018-11-111-1/+1
| | | | Notes: svn path=/head/; revision=484769
* Merge lang/qt5-qml and x11-toolkits/qt5-quick into x11-toolkits/qt5-declarativeTobias C. Berner2018-11-041-2/+3
| | | | | | | | | | | | - There was no obvious reason to split these ports, and it makes porting simpler; the set of ports using either mostly coincided. Exp-run by: antoine PR: 223687 PR: 232751 Notes: svn path=/head/; revision=484140
* astro/kstars: update to 2.9.8.Alexandre C. Guimarães2018-10-052-5/+4
| | | | | | | | | PR: 231968 Submitted by: Wen Heping <wenheping2000@hotmail.com> Approved by: tcberner (mentor) Notes: svn path=/head/; revision=481304
* - Update to 5.19.1Danilo Egea Gondolfo2018-08-021-0/+1
| | | | Notes: svn path=/head/; revision=476214
* Update astro/kstars to 2.9.7 .Tobias C. Berner2018-08-013-7/+248
| | | | Notes: svn path=/head/; revision=476172
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-07-291-0/+1
| | | | | | | | | | | | | | | | | in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which has now moved from GCC 6 to GCC 7 by default. This includes ports - featuring USE_GCC=yes or USE_GCC=any, - featuring USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and those - with USES=compiler specifying one of openmp, nestedfct, c11, c++0x, c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib. PR: 222542 Notes: svn path=/head/; revision=475857
* Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mkTobias C. Berner2018-06-281-2/+2
| | | | | | | | | | | | | | | | | | From now on, ports that depend on Qt4 will have to set USES= qt:4 USE_QT= foo bar ports depending on Qt5 will use USES= qt:5 USE_QT= foo bar PR: 229225 Exp-run by: antoine Reviewed by: mat Approved by: portmgr (antoine) Differential Revision: →https://reviews.freebsd.org/D15540 Notes: svn path=/head/; revision=473503
* Update astro/kstars to 2.9.6Tobias C. Berner2018-05-313-4/+7
| | | | Notes: svn path=/head/; revision=471240
* Upgrade astro/kstars to 2.9.5Tobias C. Berner2018-04-293-370/+370
| | | | | | | * complete dependencies while here. Notes: svn path=/head/; revision=468612
* New port: astro/kstars, current version of astro/kstars-kde4Tobias C. Berner2018-04-284-0/+1437
| | | | Notes: svn path=/head/; revision=468592
* Give the KDE SC4 applications ports a -kde4 suffixTobias C. Berner2018-02-225-504/+0
| | | | | | | | | | | | | In order to make room for the up-to-date version of the KDE Desktop and its applications move the KDE Application ports based on Qt4. PR: 225992 Exp-run by: antoine Reviewed by: rakuco, adridg Differential Revision: https://reviews.freebsd.org/D14413 Notes: svn path=/head/; revision=462619
* Rename KDE4 meta portsTobias C. Berner2018-02-101-1/+1
| | | | | | | | | | | | | | This is done for * consistency, * and to simplify the import of the newer KDE Plasma5 desktop and KDE applications Bumps the dependencies. Reviewed by: adridg Differential Revision: https://reviews.freebsd.org/D12979 Notes: svn path=/head/; revision=461375
* New USES=eigenTobias C. Berner2018-01-021-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | Usage: USES=eigen:<version>[,<type>] version: 2 or 3 (required) type: build (default), run For example: USES=eigen:2,build,run will add a BUILD- and RUN_DEPENDS on math/eigen2, and USES=eigen:3 will add a BUILD_DEPENDS on math/eigen3. * Convert the existing ports to use it - biology/iqtree: remove run time dependency (seemed not to be needed) - graphics/movit: remove run time dependency (seemed not to be needed) - science/avogadro: add run time dependeny (installed cmake file requires it to be present) Reviewed by: rakuco, mat Differential Revision: https://reviews.freebsd.org/D13702 Notes: svn path=/head/; revision=457914
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2017-09-101-1/+1
| | | | | | | | | | | | | | | | | (via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275 Notes: svn path=/head/; revision=449591
* Chase ffmpeg 3.3 update (ABI changes)Thomas Zander2017-04-251-1/+1
| | | | | | | | PR: 218658 Submitted by: riggs Notes: svn path=/head/; revision=439367
* Bump PORTREVISIONs for ports depending on the canonical version of GCC andGerald Pfeifer2017-04-011-1/+1
| | | | | | | | | | | | | | | | | lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some circumstances such as versions of FreeBSD or platforms). This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using using Mk/bsd.octave.mk which in turn has USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang, c++11-lang, c++0x, c11, or gcc-c++11-lib. PR: 216707 Notes: svn path=/head/; revision=437439
* Introduce new extensible virtual categories for KDETobias C. Berner2016-10-181-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | A lot of KDE Ports share MASTERSITES, LICENSE and so one, as they are released as a bundle upstream, however, there was not really a clean way to share this information. Using these new categories, we can simplify the Makefiles for the diverse KDE ports. At the moment we support the virtual category * kde-kde4 In the future, this will be extended to * kde-frameworks * kde-plasma * kde-applications PR: 213406 Differential Revision: https://reviews.freebsd.org/D7645 Exp-run by : antoine Reviewed by: mat, rakuco Approved by: portmgr (mat), rakuco (mentor) Notes: svn path=/head/; revision=424182
* Replace Mk/bsd.kde4.mk by Mk/Uses/kde.mk in preparation for KDE Frameworks andTobias C. Berner2016-08-241-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Plasma5 ports At the moment KDE ports use bsd.kde4.mk to handle their dependencies. When working on the ports for KDE Frameworks and Plasma5 it seemed to be more reasonable to create a new kde.mk instead of adding an bsd.kde5.mk. The kde.mk in this review is a stripped down version of the one we are using in the KDE Test repositories plasma5 branch [1] to only contain the parts relevant to the current KDE4 ports in the portstree [2]. Changes to the KDE Ports needed by this: Replace USE_KDE4 by USE_KDE [3] Add USES=kde:4 [4] [1] http://src.mouf.net/area51/view/branches/plasma5/KDE/Mk/Uses/kde.mk [2] The version in the plasma5 branch also handles frameworks/plasma5 and handles MASTER_SITES via a KDE_DIST variable similar to bsd.qt.mk for Qt Ports -- I chose to leave this out for now, as the diff is already large enough. [3] I chose USE_KDE instead of USE_KDE4, USE_KDE5, USE_KDEX as the version we want is already specified as argument to kde:<arg> [4] For KDE Frameworks and Plasma5 ports this would be kde:5 PR: 210667 Approved by: portmgr, mat (mentor), rakuco (mentor) Reviewed by: mat, rakuco Differential Revision: https://reviews.freebsd.org/D6961 Notes: svn path=/head/; revision=420774
* Cleanup patches, a* categories.Mathieu Arnold2016-07-261-3/+3
| | | | | | | | | | Rename them to follow the make makepatch naming, and regenerate them. With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=419133
* Remove expired misc/kdehier4 and update all of its consumers to not ↵Rene Ladan2016-05-251-1/+1
| | | | | | | | | | | | | | | | reference it any longer. This is a no-op because KDE4_PREFIX is equal to LOCALBASE Fix up properties for misc/kde4-l10n/files/bsd.l10n.mk to make svn happy. PR: 209014 (partial) Submitted by: myself Approved by: portmgr (bapt) Differential Revision: https://reviews.freebsd.org/D6542 Notes: svn path=/head/; revision=415864