file, so the order remains the same.
Every PHP (or Zend) extension now installs its own .ini file in
/usr/local/etc/php. A PHP extension will be automatically activated
when installed. The order into which extensions are loaded is
automatically guessed. In some very rare cases, the guess will be
wrong, and PHP_MOD_PRIO will need to be set. Refer to the USES=php
section of the Porter's Handbook for more information.
Convert ports touching etc/php/extensions.ini manually, or telling the
OP to do it.
And finally, bump PORTREVISION for all php extensions.
PR: 210697
Submitted by: mat
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D7022
* wish : #1507253 template at top into txn dialog
* wish : #1429411 reconcile etc. could be a linked set of toggle buttons
* wish : #532564 clean feature to delete unused payees/categories
* bugfix: #1602835 filter by status in the ledger
* bugfix: #1594152 zillion questions importing from QIF file
* bugfix: #1583406 changes in settings -> format-> numbers
options is never saved
* bugfix: #1562372 statistics filtered on category with
split display wrong results
* bugfix: #1535483 importing cvs file silently skips a line!
The port was changed from autoplist to manual plist to ensure detenction
of silent configuration changes.
Bump port revision has valid packages (although with missing content) was
generated.
PR: 210394
README.pod is no longer manified into a README.3, as the README.pod is
installed and can be read with perldoc, remove the README.3 files that
may be generated.
With hat: perl@
Sponsored by: Absolight
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
- 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)