Jenkins squawked about invalid shebangs after the previous update so a
fix has been provided which involves a dependency on perl.
PR: 190482
Submitted by: Yashuhito FUTATSUKI
Reported by: swills (Jenkins)
The main problem was the WRKDIR is not within STAGEDIR. Fix this while
moving all the directory creation steps into one. While here
set TAR to use switches as outlined in its man page.
Also, the permission setting in stagedir is not necessary, so it's simply
been removed.
- Options helpers
- Uses += libtool
- Regenerate pkg-plist based on 'make makeplist'
- Almost all of what was in Makefile.features disappeared due to
usage of options helpers, so make that file redundant.
PR: 191286
Approved by: maintainer timeout (> 3 weeks)
minor COMMENT typos and surrounding whitespace fixes. A few Makefiles
where not included as they contain Latin-1 characters that break
the Phabricator workflow. Categories P-S.
CR: D422
Approved by: portmgr (bapt)
The vendor is "The Chromium Project" as shown on [1], Google is the vendor of the
Google Chrome browser which is derived from the open source Chromium browser.
[1] http://www.chromium.org/Home
MFH: 2014Q3
#40339: Fix leaked directory handle when listing mounted file
systems.
#40094: The xargs --help output has a small number of cosmetic
improvements.
#39197: Small fix to find's manual page to remove an unwanted
backslash, which made the troff incompatible with Eric
Raymond's doclifter software.
#39162: -printf reads beyond arguments terminated by \
#35753: Check the success/failure of material I/O operations where
these are important to the use of the output (i.e. check the
output for "find -ok" but not debugging output).
#31005: The find manual page and Texinfo manual now more clearly state
that -exec ... + always returns true.
** Translations
Updated translations: Estonian, Polish, Ukranian.
PR: 191904
Submitted by: aehlig@linta.de (maintainer)
The configure error "Not configured with libgsf or libole2 but that's
needed for MSI support" is caused by using the wrong configure option
of MSI that was introduced in last commit.
Changing to MSI_CONFIGURE_ENABLE=libgsf to MSI_CONFIGURE_WITH=libgsf
should have solved the problem, but unfortunately there is a logic
flaw in the configure script. If --without-libgsf is passed to it,
it mistakenly tries to find it anyway with pkgconfig and then fails.
The way to fix this properly is to patch the configure script, but I am
going to cheat by making libgsf an unconditional requirement as it was
before adamw fixed the options reversal.