Commit Graph

45 Commits

Author SHA1 Message Date
Muhammad Moinur Rahman 6829bb1e63 astro/qmapshack: Update version 1.15.0=>1.15.2
- Mark BROKEN for FreeBSD 11

PR:			252797
Submitted by:	cmt
2021-01-25 23:38:32 +00:00
Loïc Bartoletti b59496747d graphics/proj: Update to 7.2.0
Changelog:
  - https://proj.org/news.html#release-notes
2020-11-18 05:27:28 +00:00
Loïc Bartoletti 1141c4e8ef graphics/proj: Update to 7.1.1
- Add a pkg-message explaining how to access or sync datum grids from the CDN
  (disabled by default)
- Add curl and tiff dependencies since proj can read datum grids from remote
  COG (Cloud Optimized Geotiff)
- Take maintainer'ship (ok wen@)

PR:		245611
Submitted by:	wen (first version)
Reviewed by:	wen, rhurlin
Approved by:	wen
Exp-run by:	antoine
2020-11-17 09:23:58 +00:00
Tobias C. Berner 2bf2737332 archivers/quazip: update to 1.1
- fix / modify find calls and include directories in dependent ports
2020-11-08 18:57:00 +00:00
Muhammad Moinur Rahman b5a002db29 astro/qmapshack: Update version 1.14.1=>1.15.0
Relnotes:	https://github.com/Maproom/qmapshack/releases
2020-06-16 18:28:05 +00:00
Tobias C. Berner 3e11abba1b astro/qmapshack: prepare for Qt5-5.15 2020-05-21 11:19:28 +00:00
Muhammad Moinur Rahman 5d749b1043 astro/qmapshack: Update version 1.14.0=>1.14.1
- Add USE_QT=help

Relnotes:	https://github.com/Maproom/qmapshack/releases
2020-04-02 11:56:27 +00:00
Sunpoet Po-Chuan Hsieh e9972a754c Bump PORTREVISION for graphics/gdal shlib change 2020-01-22 06:02:24 +00:00
Muhammad Moinur Rahman 97e8e6433d astro/qmapshack: UNBREAK and Update version 1.13.0=>1.14.0
- Change MASTER_SITES to GITHUB
- Update WWW in pkg-descr
- Fix USES
- Prevent a crash when not getting info on devices back from dbus (this
  happens when an nvme device (nvd*) is installed in the system, bsdisks
  doesn't handle these yet). (already reported upstream).

PR:             241647
Submitted by:   cmt
MFH:		2019Q4 (runtime fix)
Relnotes:       https://github.com/Maproom/qmapshack/releases
2019-11-23 16:25:09 +00:00
Antoine Brodin cc8ad7de9b Mark a few ports BROKEN, unfetchable 2019-11-06 12:48:32 +00:00
Gerald Pfeifer ea8c8ec7da Bump PORTREVISION for ports depending on the canonical version of GCC
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
2019-07-26 20:46:53 +00:00
Tobias C. Berner 877b40d68d archivers/quazip: update to 0.8
From the changelog:
   * Support for UTF-8 in file names and comments (Denis Zavorotnyy)
   * get/setOsCode(), get/setDefaultOsCode()
   * Fixed Z_STREAM_END handling in QuaZioDevic
2019-05-25 16:18:34 +00:00
Muhammad Moinur Rahman 63ae23ca43 astro/qmapshack: Update version 1.12.3=>1.13.0
- fix libproj detection: Our graphics proj is built with autotools and thus
   does not install it's cmake files. Patches provide an alternate method
   for finding libproj using pkg-config, see:
   https://sourceforge.net/p/qlandkartegt/mailman/message/36639866/
- fix a crash with current Qt when no GPS device is found (which at least for
   me is the default case): since the last Qt update, QList aborts on an
   assertion when trying to access the first element of an empty list.

PR:		237425
Submitted by:	cmt
2019-04-21 18:09:48 +00:00
Tobias C. Berner ee161386d4 archivers/quazip: remove flavors (Qt4 deprecation) 2019-03-16 19:37:25 +00:00
Christoph Moench-Tegeder 1a8e22771e astro/qmapshack: update to 1.12.3
1.12.2: https://sourceforge.net/p/qlandkartegt/mailman/message/36541467/
1.12.3: https://sourceforge.net/p/qlandkartegt/mailman/message/36582171/

PR:		235599
Approved by:	maintainer-timeout (bofh)
2019-02-22 20:32:44 +00:00
Tijl Coosemans 1bf487d3e7 Fix Qt5 symbol version scripts to put the catch-all clause first. When
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)
2019-01-16 11:13:44 +00:00
Muhammad Moinur Rahman fa44522a16 astro/qmapshack: Update version 1.12.0=>1.12.1
PR:234456
Submitted by:cmt
2019-01-02 07:24:33 +00:00
Gerald Pfeifer a9f015d155 Bump PORTREVISION for ports depending on the canonical version of GCC
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
2018-12-12 01:35:33 +00:00
Tobias C. Berner 89d1bb9ab0 Merge lang/qt5-qml and x11-toolkits/qt5-quick into x11-toolkits/qt5-declarative
- 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
2018-11-04 19:00:53 +00:00
Christoph Moench-Tegeder 3f5efd41bc astro/qmapshack: update to 1.12.0
Announcement: https://sourceforge.net/p/qlandkartegt/mailman/message/36406997/

PR:		231359
Approved by:	maintainer-timeout (bofh)
2018-09-29 15:05:36 +00:00
Tobias C. Berner 00a567a7c1 astro/qmapshack: fix build with Qt 5.11
PR:		230884
Obtained from:	upstream
2018-09-02 08:49:56 +00:00
Gerald Pfeifer 09f9633cb6 Bump PORTREVISION for ports depending on the canonical version of GCC
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
2018-07-29 22:18:44 +00:00
Christoph Moench-Tegeder 4dbb03aeaa astro/qmapshack: remove obsolete patch file
this one escaped my last commit.

PR:		227643
2018-07-17 10:30:24 +00:00
Christoph Moench-Tegeder bf6cbd2c07 astro/qmapshack: update to 1.11.1
Release: https://sourceforge.net/p/qlandkartegt/mailman/message/36297727/

PR:		227643
Approved by:	bofh (maintainer timeout)
2018-07-17 10:19:46 +00:00
Tobias C. Berner b1a1d38bf9 Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mk
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
2018-06-28 17:39:53 +00:00
Adriaan de Groot 1ed71433c0 Fix astro/qmapshack ahead of CMake 3.11.
Because of the way CMake 3.11 orders includes in mocs_compilation.cpp,
it shows up cases where headers don't have all of the necessary
includes or forward-type-declarations in place. Add one here to
fix the build. The error message is in the patch.

Also reported upstream,
  https://bitbucket.org/maproom/qmapshack/issues/325/cmake-311-build-fix
but it had already been (unrelatedly) fixed upstream in
  https://bitbucket.org/maproom/qmapshack/commits/2968b238

Approved by:	tcberner (mentor, implicit)
Differential Revision:	https://reviews.freebsd.org/D14932
2018-04-02 20:19:06 +00:00
Christoph Moench-Tegeder c27532b9b0 update qmapshack to 1.11.0
Announcement: https://sourceforge.net/p/qlandkartegt/mailman/message/36244502/

PR:		226488
Approved by:	bofh (maintainer)
2018-03-22 21:00:52 +00:00
Tobias C. Berner 9870e21a41 Convert archivers/quazip and archivers/quazip-qt5 into flavors
Approved by:	portmgr (mat)
Differential Revision:	https://reviews.freebsd.org/D14640
2018-03-11 10:05:42 +00:00
Christoph Moench-Tegeder f72b1d6faf astro/qmapshack: update to 1.10.0
PR:		225739
Approved by:	bofh (maintainer-timeout)
2018-02-22 22:01:22 +00:00
Christoph Moench-Tegeder 29c61a5186 astro/qmapshack: update to 1.9.1
Announcement: https://sourceforge.net/p/qlandkartegt/mailman/message/36042436/

PR:		222453
Approved by:	bofh (maintainer-timeout)
2017-10-16 11:56:17 +00:00
Gerald Pfeifer e59c88cece Bump PORTREVISION for ports depending on the canonical version of GCC
(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
2017-09-10 20:55:38 +00:00
Dmitry Marakasov 294ff7f951 - Update WWW
Approved by:	portmgr blanket
2017-07-29 09:01:09 +00:00
Christoph Moench-Tegeder 111c827722 astro/qmapshack: update to 1.8.1
Announcement:
https://sourceforge.net/p/qlandkartegt/mailman/message/35839232/

PR:		219425
Approved by:	maintainer-timeout
2017-06-04 20:15:41 +00:00
Muhammad Moinur Rahman 3c8607257c astro/qmapshack: Update version 1.7.2=>1.8.0
PR:		218306
Submitted by:	cmt
2017-04-11 17:26:22 +00:00
Gerald Pfeifer 04d6f52202 Bump PORTREVISIONs for ports depending on the canonical version of GCC and
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
2017-04-01 15:23:30 +00:00
Christoph Moench-Tegeder 1208355e8b astro/qmapshack: 1.7.2
PR:		215423
Approved by:	rene (mentor, implicit), maintainer-timeout
2017-01-10 08:51:56 +00:00
Christoph Moench-Tegeder d79f919be1 update qmapshack to 1.7.1
PR:		212844
Approved by:	rene (mentor)
Approved by:	maintainer timeout
2016-10-18 18:49:24 +00:00
Mathieu Arnold 9fa9eb9ac7 Cleanup patches, a* categories.
Rename them to follow the make makepatch naming, and regenerate them.

With hat:	portmgr
Sponsored by:	Absolight
2016-07-26 16:51:15 +00:00
Muhammad Moinur Rahman 426df6c6b8 astro/qmapshack: Update version 1.6.1=>1.6.3
- Upstream FreeBSD support

PR:		210808
Submitted by:	cmt
2016-07-14 18:39:51 +00:00
Dmitry Marakasov 0b6450f020 - Clarify LICENSE, add LICENSE_FILE
- Fix dependency on qt5-dbus (move to USE_QT5)

Approved by:	portmgr blanket
2016-06-23 12:14:44 +00:00
Muhammad Moinur Rahman 4593f92124 astro/qmapshack: Update version 1.3.1=>1.6.1
- UNBREAK
- Remove depreceation
- Reqiores c++11 based compiler

PR:		210063
Submitted by:	cmt
2016-06-10 09:40:12 +00:00
Antoine Brodin c31defa0fc Deprecate ports broken for more than 6 months 2016-06-03 16:44:58 +00:00
Mathieu Arnold 7f4572eae4 Remove ${PORTSDIR}/ from dependencies, Mk and categories a, b, and c.
With hat:	portmgr
Sponsored by:	Absolight
2016-04-01 13:29:15 +00:00
Antoine Brodin 3734047f8d Mark BROKEN: unfetchable
Reported by:	pkg-fallout
2015-11-01 14:01:53 +00:00
Muhammad Moinur Rahman 97349561b4 [NEW] astro/qmapshack: Ultimate outdoor aficionado's tool
Use QMapShack to plan your next outdoor trip or to visualize and archive all the
GPS recordings of your past exciting adventures. QMapShack is the next
generation of the famous QLandkarte GT application. And of course it's even
better and easier to use.

WWW: http://bitbucket.org/maproom/qmapshack
2015-10-27 13:43:31 +00:00