- Convert to USES=localbase
Changelog:
* new : preferences, add preview for chart color scheme
* new : doc, added every payment into the lexicon
* wish : #1509485 quicksearch split transactions memo/category
* wish : #1507252 ability to batch-edit selected transactions easily
* wish : #1501125 export to CSV for all reports list view
* wish : #1501111 double-click on sheduled txn in main window to open
template editor
* wish : #1292377 enable edit transactions from report detail list
* wish : #880846 hide/show txn list column on right click
* bugfix: #1577555 scheduled transaction edit doesn't enable file save
* bugfix: #1556289 scheduled transactions disappear with no reason
* bugfix: #1553862 budget report categories displayed when
selecting subcategories
* bugfix: #1523216 import window wrongly sized
* bugfix: #1511325 no warning about old gtk3.x version when
compiling from source
* bugfix: #1464961 inconsistency in my file internal xfer
The different cases are:
- Only bring it if the one bundled with Perl is outdated.
- The version bundled with all our Perl is sufficient.
- Scalar-List-Util is not really needed by the port.
(looking for /(Sub|Scalar|List)::Util/ returns nothing.)
While there, do some minor cleanup that caught my eye.
PR: 208378
With hat: perl@
Sponsored by: Absolight
Install x11/kdelibs4's headers into include/kde4 instead of include (which
consequently causes several other ports to have their installation paths
changed too).
The idea behind this is to reduce path conflicts between KDE4 ports and the
upcoming KDE Frameworks 5 ports that will be installed into include/KF5. If
we continue installing the KDE4 headers into include/, we can end up in a
situation like this:
c++ [...] -I/usr/local/include -I/usr/local/include/KF5 file.cpp
If the KDE4 and KF5 versions of a port have the same headers, the KDE4 port
will unintentionally be picked up first and the build will fail.
Most of this huge patch is just PORTREVISION bumps, pkg-plist changes and a
few patches to FooConfig.cmake files to make them look into the kde4/
subdirectory in include/.
Changes which don't fit into the above are:
- deskutils/kdepimlibs4: Import an upstream patch to remove some double
semicolons that cause base GCC to fail. They have always been present, but
since the faulty header was referenced via -isystem /usr/local/include
this never caused any problems.
- devel/subversion, devel/subversion18: Update patch-configure. The current
kwallet changes there date back to 2011 (r272490), at a time when the
build could fail when both KDE3 and KDE4 were installed. Replace those
bits with a change I've submitted upstream to use the kde4-config program
to determine where KDE4's headers and libraries are installed instead of
assuming the headers are always in include/.
Once again, huge thanks to Tobias Berner <tcberner@gmail.com> for being the
first one to notice this problem when working on the KDE Frameworks 5 ports,
coming up with the solution and bugging me until I had time to work on this
and ask for the exp-run :-)
PR: 207906 (exp-run)