Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
4.1.3_7 31 Jan 2017 03:42:07 |
truckman |
On amd64, clang++ 4.0 uses the MOVAPS SSE instruction to initialize
sufficiently large objects returned by the "new" operator. This
requires that the object have 16-byte alignment. The FreeBSD
malloc() implementation does the correct thing here, but OpenOffice
has a couple of internal memory allocator implementations that only
align to 8-byte boundaries at most. In addition OpenOffice overrides
the new operator to interpose a couple of layers of wrappers. If
the --enable-debug option is passed to configure, the wrapper adds
8 to the size passed to the allocator and adds an 8 byte offset to
the pointer returned by the allocator to make room for a signature
that it adds to the beginning of the memory block (the signature
is validated and the inverse transformation is done when the memory
is freed). This breaks the proper alignment done by the mamory
allocator. Fix these problems by adding an EXTRA_PATCH that teaches
the internal OpenOffice memory allocators to do 16-byte alignment (Only the first 15 lines of the commit message are shown above ) |
4.1.3_6 24 Jan 2017 06:30:15 |
truckman |
Clean up the logic for setting FREEBSD_ENV_SET.
Make a guess at the proper value of PACKAGE_MIDDLE for powerpc64 (needed
for solver and language packs).
A fixup for language packs on powerpc64 that was missed in the previous
commit. |
4.1.3_6 24 Jan 2017 02:09:10 |
truckman |
Add PowerPC64 support. [1]
Add a section to pkg-message mentioning that spell check dictionaries
for the desired languages should be installed. [2]
PR: 215130, 212103
Submitted by: Curtis Hamilton <hamiltcl@verizon.net> [1]
Submitted by: Arrigo Marchiori <ardovm AT yahoo.it> [2] |
4.1.3_5 22 Jan 2017 08:35:12 |
jbeich |
editors/openoffice-devel: unbreak with clang 4.0
main/desktop/source/app/officeipcthread.cxx:228:14: error: ordered comparison
between pointer and zero ('rtlDigest' (aka 'void *') and 'int')
if ( handle > 0 )
~~~~~~ ^ ~
main/desktop/source/deployment/misc/dp_misc.cxx:106:16: error: ordered
comparison between pointer and zero ('rtlDigest' (aka 'void *') and 'int')
if (digest <= 0) {
~~~~~~ ^ ~
main/sd/source/ui/view/viewshe3.cxx:229:48: error: ordered comparison between
pointer and zero ('SdPage *' and 'int')
if (pDocument->GetSdPage(0, ePageKind) > 0)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~
PR: 216206
Submitted by: pfg
Obtained from: upstream |
4.1.3_5 18 Jan 2017 13:20:32 |
tijl |
The output of tools like awk, date, sort, tr,... depends on the current
locale set by the user. Add LANG=C and LC_ALL=C at the beginning of
bsd.port.mk and export them so all commands are executed with the C locale.
LC_ALL=C overrides all other LC_* variables. LANG is used by setlocale(3)
as default value for LC_* variables, so normally it isn't used when LC_ALL
is set, but there's code out there that looks at LANG directly so it's safer
to set it as well. The only commands not captured by this are !=
assignments before any inclusion of bsd.port.*mk.
Introduce USE_LOCALE=<locale> that adds LANG=<locale> and LC_ALL=<locale> to
CONFIGURE_ENV and MAKE_ENV so upstream build systems can be executed with a
different locale (e.g. USE_LOCALE=en_US.UTF-8).
PR: 215882
Exp-run by: antoine
Approved by: portmgr (antoine) |
4.1.3_5 07 Jan 2017 14:43:11 |
jbeich |
textproc/hunspell: update to 1.6.0
- Restore DIST_SUBDIR from r305651
- Adjust license for "or later" clause
- Restore GPLv2+/LGPL21+ license files removed upstream as
GPLv3+/LGPL3+ only affects Hunspell 2.0 (not currently built)
- Unbreak |make makepatch|
Changes: https://github.com/hunspell/hunspell/releases/tag/v1.6.0
PR: 215714
Submitted by: sunpoet (based on)
Exp-run by: antoine
MFH: 2017Q1
Differential Revision: https://reviews.freebsd.org/D8887 |
4.1.3_4 07 Jan 2017 10:42:51 |
olivierd |
Chase update of graphics/poppler (and slaves ports) in revision r430777 |
4.1.3_3 06 Jan 2017 08:45:04 |
jbeich |
devel/boost-*: update to 1.63.0
Changes: http://www.boost.org/users/history/version_1_63_0.html
PR: 215598
Exp-run by: antoine
Approved by: office (bapt)
MFH: 2017Q1 |
4.1.3_2 03 Dec 2016 22:24:36 |
jbeich |
textproc/hunspell: update to 1.5.4
Changes: https://github.com/hunspell/hunspell/blob/v1.5.4/ChangeLog
PR: 214837
Exp-run by: antoine (for 1.5.3)
Approved by: office (bapt) |
4.1.3_1 26 Nov 2016 16:54:30 |
jbeich |
editors/openoffice*: unbreak consumers with hunspell 1.5
main/lingucomponent/source/spellcheck/spell/sspellimp.cxx:39:10: fatal error:
'dictmgr.hxx' file not found
#include <dictmgr.hxx>
^
PR: 214844
Obtained from: upstream
Approved by: portmgr blanket |
4.1.3_1 23 Nov 2016 12:45:47 |
jbeich |
devel/boost-*: update to 1.62.0
- Enable `long double` C99 math usage
- Switch 9.x back to building with GCC
Changes: http://www.boost.org/users/history/
PR: 199601
Submitted by: Chen Xu, bapt, amdmi3, truckman (based on)
Reviewed by: rakuco (kde) (earlier version)
Exp-run by: antoine (3 tries), truckman (consumers only, earlier versions)
Approved by: bapt (office) |
4.1.3 21 Oct 2016 12:51:41 |
mat |
${RM} already has -f.
PR: 213570
Submitted by: mat
Exp-run by: antoine
Sponsored by: Absolight |
4.1.3 12 Oct 2016 21:19:55 |
truckman |
Upgrade ApacheOpenOffice to version 4.1.3.
This version contains the fix for CVE-2016-1513 that was fixed locally
in 4.1.2_8 with a patch from upstream.
Configure now requires p5-LWP-Protocol-https, though we don't actually
use it we don't use bootstrap to download anything. |
4.1.2_10 09 Oct 2016 12:10:02 |
jbeich |
devel/nspr, security/nss: drop version from SONAME
No other downstream appends synthetic library version, and doing so
causes underlinking due to fragile build system (see below). Not to
mention being unable to swap out bundled libs from upstream builds.
$ cc -lplds4 -L/usr/local/lib
/usr/lib/crt1.o: In function `_start1':
crt1_c.c:(.text+0xa6): undefined reference to `main'
/usr/local/lib/libplds4.so: undefined reference to `pthread_set_name_np'
/usr/local/lib/libplds4.so: undefined reference to `pthread_create'
/usr/local/lib/libplds4.so: undefined reference to `pthread_condattr_init'
/usr/local/lib/libplds4.so: undefined reference to `pthread_setschedparam'
/usr/local/lib/libplds4.so: undefined reference to `pthread_getschedparam'
PR: 213144
Exp-run by: antoine |
4.1.2_9 05 Sep 2016 20:02:03 |
olivierd |
Chase update of Poppler after revision r421386 |
4.1.2_8 21 Jul 2016 18:09:59 |
truckman |
Fix CVE-2016-1513 - Memory Corruption Vulnerability (Impress Presentations).
Regenerate distinfo to add TIMESTAMP.
Obtained from: <https://bz.apache.org/ooo/show_bug.cgi?id=127045>
MFH: 2016Q3
Security: 72f71e26-4f69-11e6-ac37-ac9e174be3af |
4.1.2_7 12 Jul 2016 03:24:20 |
truckman |
Add missing dependencies reported by stage-qa:
USE_XORG+= sm xinerama
devel/dbus (when GNOME option is enabled)
multimedia/gstreamer (when MMEDIA option is enabled)
graphics/poppler (-devel only, when PDFIMPORT option is enabled)
Add USES=ssl since this OpenOffice does use OpenSSL. The base and ports
versions of OpenSSL are both known to work. It is unknown if LibreSSL
works because the dependency ftp/curl does not currently build with
LibreSSL.
Replace one remaining path to a .jar file with ${JAVALIBDIR} in
CONFIGURE_ARGS.
Replace an absolute symlink with a relative one.
Re-align \ line continuation characters in *_DEPENDS after removal of
${PORTSDIR} from dependencies, and make a few other whitespace cleanups.
MFH: 2016Q3 |
4.1.2_6 26 May 2016 06:01:49 |
truckman |
Fix build of openoffice-4 and openoffice-devel with libc++ 3.8.0.
Openffice defines its own overloaded variant of round(), which is
only different in return type from the 'real' round() from <math.h>,
so it is ambiguous (in the C++ lookup sense). Fix this by renaming
the custom round() to round_(), and using a define to minimize
needed changes in the code.
PR: 209588
Submitted by: dim |
4.1.2_6 01 May 2016 05:26:21 |
truckman |
Update TARGET_ORDER_OVERRIDE to for the changes to Uses/gnome.mk
in r413768.
Don't bother trying to create ${STAGEDIR}${DESKTOPDIR} since it
is already handled by mtree. |
4.1.2_5 01 Apr 2016 14:00:57 |
mat |
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.
With hat: portmgr
Sponsored by: Absolight |
4.1.2_5 20 Mar 2016 21:42:08 |
truckman |
Delay running gnome-post-install until the plist has been generated by
post-install so that the icons are detected and gtk-update-icon-cache
gets run when the package is installed. [1]
Import upstream trunk commit r1728872 to add the
CLOSESOCKET_DOESNT_WAKE_UP_ACCEPT up accept fix to the pipe code. [2]
PR: 208026 [1]
PR: 207301 [2] |
4.1.2_4 11 Mar 2016 11:53:42 |
tijl |
Combine print/cups-base, print/cups-client and print/cups-image into
print/cups and update it to 2.1.3. Also remove print/cups-pstoraster,
improve print/cups-filters, print/foomatic-* and update print/hplip to
3.16.2.
Long description:
First some background. When you hand a file to cups it sets up a chain of
filter programs that converts the file to something a printer understands.
Each filter has a cost associated with it and cups tries to find the
cheapest chain. Costs used to be configured in such a way that files were
first converted to PostScript. This could then be manipulated further (e.g.
putting multiple pages on one sheet) before finally being sent to a
PostScript printer or another filter like pstoraster which produces a raster
format understood by non-PostScript printer drivers. Nowadays most filters (Only the first 15 lines of the commit message are shown above ) |
4.1.2_3 29 Jan 2016 00:44:00 |
truckman |
Fix nss-related problems with password-protected documents.
Apply patches from upstream commits r1724971 and r1726068 to fix
upstream bug <https://bz.apache.org/ooo/show_bug.cgi?id=125431>,
"The Password is incorrect. The file cannot be opened."
PR: 206234
Submitted by: Arrigo Marchiori <ardovm AT yahoo.it>
MFH: 2106Q1 |
4.1.2_2 21 Jan 2016 19:40:10 |
kwm |
Update poppler to 0.40.0. [1]
Add patches to py-poppler [2] and rubygem-poppler [3] to fix the build
of these ports with poppler 0.39+.
PR: 206293 [1]
Submitted by: olivierd@ [1]
Obtained from: ubuntu [2], rubygem-poppler upstream [3] |
4.1.2_1 02 Jan 2016 20:58:43 |
truckman |
Correct the Icon entry in the .desktop files so that the icons are
visible in the menu.
PR: 205758 |
4.1.2 13 Nov 2015 04:13:58 |
truckman |
Now that we are no longer avoiding certain versions of clang, convert to
USES=compiler:c++11-lib instead of trying to emulate it. |
4.1.2 29 Oct 2015 16:29:50 |
truckman |
Upgrade to Apache OpenOffice 4.1.2
* Release Notes:
<https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.1.2+Release+Notes
>
* Bug Fixes: <http://s.apache.org/9uI>
* Improvements / Enhancements
o Several distinct enhancements were applied to the WebDAV
management and file locking: OpenOffice is now able to properly
interact with Microsoft Sharepoint, enabling a more productive
usage in corporate-level environments. These enhancements were
funded, and contributed upstream, by the Emilia-Romagna regional (Only the first 15 lines of the commit message are shown above ) |
4.1.1_18 23 Oct 2015 23:22:24 |
truckman |
Explicity set $JAVA_HOME in startup wrapper to the OpenJDK version used
for the build to avoid any potential issues with relying on javavmwrapper
parsing bsd.java.mk to determine this at runtime.
Fix an botch in the FreeBSD-specific $LD_LIBRARY_PATH code in the
startup wrapper.
Java is needed at runtime, so flag it as a runtime dependency. |
4.1.1_17 18 Oct 2015 08:18:26 |
truckman |
Patch the source with r1697228, r1697237, r1697247, r1697306, and
r1697312 from upstream trunk (with a few tweaks to compensate for
some other upstream changes not included here) to unbreak the build
with OpenJDK8.
Revert r399536 to unmark broken.
PR: 199591 (openjdk8 by default exp-run) |
4.1.1_16 17 Oct 2015 13:19:25 |
swills |
editors/openoffice-4: mark broken with OpenJDK8 |
4.1.1_16 09 Oct 2015 22:17:28 |
truckman |
Removing --enable-symbols=small from CONFIGURE_ARGS allows us to avoid
the need to use ${STRIP_CMD}.
Fix an intermittent build failure by adding a missing dependency to the
port's build framework. This change has been committed to the upstream
trunk. |
4.1.1_16 26 Sep 2015 07:40:48 |
truckman |
Add Caladea and Carlito fonts. They are metrically equivalent to some
Microsoft fonts and the proper definitions within OpenOffice have been
added so that they are recognized as such. [1]
The Linux ports handle the mapping from the printeradmin command to the
spadmin executable in the shell wrapper. Do the same in the FreeBSD
port rather than munging the printeradmin.desktop file. Retain the
spadmin link to the wrapper for backwards compatability.
The setofficelang command went away a long time ago. Remove it from
the shell wrapper and remove the link.
Exec the OpenOffice executables from the wrapper so that the shell for
the wrapper doesn't hang around as an extra process until OpenOffice
terminates.
Nuke an extraneous shell continuation in the Makefile.
Suggested by: pfg [1] |
4.1.1_15 24 Sep 2015 21:07:19 |
truckman |
Fix a regression in directory permissions and add a missing directory used
for shared extensions. This combination of issues could cause incomplete
cleanup on pkg removal if OpenOffice had been run by a user in the wheel
group.
Add a note about the location of the Wiki Publisher extension to
pkg-message. |
4.1.1_14 16 Sep 2015 03:03:46 |
truckman |
Update the comment about the clang 3.6 and clang 3.7 code generation
bug with the upstream bug ID.
More do-install target optimization:
* Use the tar -s option to modify the path names when unpacking
the install archive into the staging directory rather than
unpacking, repacking, and unpacking again
* Pass --with-unix-wrapper to configure and patch a makefile
to get the desired Exec and Icon entries in the .desktop
files instead of patching them after they have been staged.
The Icon entries do not need to specify the .png suffix.
* Streamline the usage of ${STRIP_CMD} (Only the first 15 lines of the commit message are shown above ) |
4.1.1_13 10 Sep 2015 00:33:08 |
truckman |
Unbreak wrapper script so that if a particular application is
specified but without specifying a document, that application is
started instead of presenting the user with the generic startup
window and requiring him to pick the document type (running
openoffice-*-scalc should open to a new spreadsheet, etc.)
Building with clang 3.7 is reported to have the same failure mode
as clang 3.6, so use the same optimization tweak as a workaround.
Various cleanups to do-install:
* The paths ${PREFIX}/${INSTALLATION_BASEDIR} and
${PREFIX}/${INSTALLATION_BASEDIR}/${AOODIR}, and
${PREFIX}/${INSTALLATION_BASEDIR}/${AOODIR}/share/xdg are
frequently used, so create a few variables to hold those paths (Only the first 15 lines of the commit message are shown above ) |
4.1.1_12 07 Sep 2015 15:19:19 |
truckman |
Import various improvements from openoffice-devel r393676, r395652, and
r396247:
* Consolidate patch-freebsd.mk, patch-set_soenv.in, patch-unxfbsd.mk,
and other changes that were committed to the upstream trunk
into patch-build-framework:
o Changes to aid building with gcc from ports on FreeBSD
o Changes to detect when building with clang and to decode the
compiler version
* Remove the REINPLACE_CMD patches from post-patch and $FBSD_LDFLAGS
from do-build that are no longer needed for building with gcc in
the general case because of the previous patch (Only the first 15 lines of the commit message are shown above ) |
4.1.1_11 17 Aug 2015 14:20:41 |
mat |
Remove UNIQUENAME and LATEST_LINK.
UNIQUENAME was never unique, it was only used by USE_LDCONFIG and now,
we won't have conflicts there.
Use PKGBASE instead of LATEST_LINK in PKGLATESTFILE, the *only* consumer
is pkg-devel, and it works just fine without LATEST_LINK as pkg-devel
has the correct PKGNAME anyway.
Now that UNIQUENAME is gone, OPTIONSFILE is too. (it's been called
OPTIONS_FILE now.)
Reviewed by: antoine, bapt
Exp-run by: antoine
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D3336 |
4.1.1_11 04 Aug 2015 22:13:34 |
truckman |
Various build updates from openoffice-devel (primarily r382334 and
r391960):
* patch-i118574 no longer seems necessary for a clean build
* Regnerate patch-i114430 with make makepatch
* Build using boost from ports instead of the bundled boost
* Build using silgraphite from ports instead of the bundled version
* Add missing LIB_DEPENDS that are brought in by other dependencies,
but are directly linked as requested by pkgconfig/*.pc
* Build using sane and xrender headers from ports instead of bundled (Only the first 15 lines of the commit message are shown above ) |
4.1.1_10 02 Aug 2015 16:06:17 |
kwm |
Update poppler to 0.34.0. [1]
Chase all users of shlib version change of libpoppler.so.
PR: 201477 [1]
Submitted by: olivierd@ [1] |
4.1.1_9 28 Jun 2015 15:20:05 |
antoine |
MAKE_JOBS_SAFE=yes is a nop since july 2013 |
4.1.1_9 22 Jun 2015 18:33:22 |
antoine |
Convert to USES=jpeg |
4.1.1_9 14 May 2015 23:07:18 |
truckman |
Do not attempt to override the intent of DISABLE_MAKE_JOBS, which
does not succeed in any case.
The do-build target does not need to use bash, or even an extra
level of shell.
There are two levels of parallelism in the openoffice build framework.
Split MAKE_JOBS_NUMBER between the two levels instead of potentially
running MAKE_JOBS_NUMBER^2 compilations in parallel.
PR: 199930
Approved by: mat (mentor, implicit) |
4.1.1_9 08 May 2015 15:58:39 |
truckman |
Add a patch to fix the HWP filter vulnerability documented in
CVE-2015-1774 and
<http://www.openoffice.org/security/cves/CVE-2015-1774.html>
Approved by: mat (mentor)
MFH: 2015Q2
Security: b13af778-f4fc-11e4-a95d-ac9e174be3af
Differential Revision: https://reviews.freebsd.org/D2478 |
4.1.1_8 05 May 2015 20:38:34 |
truckman |
Unbreak editors/openoffice-* build when GCONF and GNOMEVFS are disabled
There is a missing dependency on devel/dbus-glib that causes the
openoffice build to fail when the GCONF and GNOMEVFS options are
disabled. When these options are enabled, one of the dependencies
added by these options brings along dbus-glib so the default build
succeeds.
There is a configure knob to control whether or not dbus-glib is
used, so follow the lead of the libreoffice port and rename the
GCONF option to GNOME and bundle both Gconf and DBUS handling under
the GNOME option.
Borrow the MMEDIA option from the libreoffice port and use that to
control the using of gstreamer. (Only the first 15 lines of the commit message are shown above ) |
4.1.1_8 30 Mar 2015 17:57:49 |
sunpoet |
- Add CPE information
PR: 199029
Submitted by: shun <shun.fbsd.pr@dropcut.net> |
4.1.1_8 27 Mar 2015 20:22:37 |
truckman |
Update openoffice-4 with applicable changes in openoffice-devel r382334:
* Work around broken build on FreeBSD 11.0-CURRENT i386, which appears
to be a code generation bug in clang 3.6 when using -Os optimization.
* Use the dictionaries already installed by ports.
* Update patch-*.mk patches to versions that were imported upstream.
They are tuned for clang to use as is, with only some minor
additional tweaks needed for gcc.
* Wordsmith pkg-message.
* Some Makefile cleanups.
Differential Revision: https://reviews.freebsd.org/D2151
Reviewed by: pfg
Approved by: mat (mentor) |
4.1.1_7 21 Mar 2015 23:05:21 |
bapt |
Make fonts repecting XDG
Xorg is now looking in ${LOCALBASE}/share/fonts by default
Xorg now accepts symlinks in etc/X11/fontpath.d (as decribed in Xserver(1))
Large cleanup on lots of font ports
All fonts are now properly dynamically generating fonts.dir and fonts.scale
instead of sometime overwriting existing ones)
All fonts are generating fontconfig's cache
Improve consistency in fonts ports |
4.1.1_7 17 Mar 2015 15:04:44 |
truckman |
Unbreak editors/openoffice-4 and editors/openoffice-devel on systems
where clang is the base compiler. The issue was that these ports
would only successfully build with gcc and libstdc++, so they
specified USE_GCC=yes, but they linked to other C++ ports that were
compiled with clang, which brought in libc++. The conflict between
libstdc++ and libc++ caused the application to crash whenever an
operation that popped up a dialog box was attempted. Thanks to
dim@ for helping me track this down. The fix is to patch various
bits of the openoffice souce to allow it to be built with clang
on systems where the C++ dependencies are also compiled with clang. [1]
Add a CUPS option so that CUPS can be disabled [2].
Register print/cups-client as a LIB_DEPENDS when CUPS is enabled.
(Only the first 15 lines of the commit message are shown above ) |
4.1.1_6 25 Feb 2015 06:01:58 |
truckman |
Fix build breakage when libreoffice is installed.
The problem is that libreoffice installs its own copy of unopkg in
${PREFIX}/bin and that the openoffice build attempts to use this copy
of unopkg instead of the openoffice version which is in subdirectory
of ${WRKSRC}.
The reason is that the openoffice build expects to find its own copy
of unopkg by depending on having "." in its $PATH, but its $PATH has
${PREFIX}/bin before ".". Openoffice attempts to do the right thing
by first constructing $PATH by prepending "." and a small number of
other directories where it stashes executables used during the build
to the value of $PATH that it inherits from the environment. Things
go wrong when it tries to add the paths for ${CC}, perl, and java
to $PATH. If $PATH has /usr/bin before ${PREFIX}/bin, the openoffice (Only the first 15 lines of the commit message are shown above ) |
4.1.1_6 15 Feb 2015 22:30:46 |
truckman |
Switch back to USE_GCC=yes.
Work around this bug <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65009>
in g++49 -Os optimzation by using -O0 optimization if we are compiling
with g++49.
Differential Revision: https://reviews.freebsd.org/D1792
Approved by: mat (mentor) |
4.1.1_6 13 Feb 2015 01:01:35 |
brd |
math/coinmp: Update to 1.8.0
PR: 197554
Submitted by: Carlos Jacobo Puga Medina <cpm@fbsd.es> (maintainer)
Approved by: zi |
4.1.1_5 03 Feb 2015 12:28:24 |
kwm |
Update poppler to 0.30.0 [1].
Make sure we use openjpeg1 in poppler, while openjpeg2 support
was added there still bugs in openjpeg2 that need to be fixed.
Add patches to inkscape for API changes in poppler 0.29.0 [2].
PR: 196599 [1]
Submitted by: olivierd@ [1]
Exp-run by: antoine@
Obtained from: upstream [2] |
4.1.1_4 21 Jan 2015 09:03:10 |
truckman |
Unbreak languagepack target (package-rename and ure targets are still
broken).
plist fixes:
* Don't add @dirrm to generated plist
* Don't add a blank line to generated plist
* Don't truncate ${TMPPLIST} (from mat@)
* Don't add @dirrm to generated plist
* Add @dir for empty directories
Makefile diff reduction vs. upcoming openoffice-devel update.
Differential Revision: https://reviews.freebsd.org/D1561
Approved by: mat (mentor) |
4.1.1_4 19 Jan 2015 17:45:18 |
truckman |
The sdk and package-canonical targets were suffering from bit rot.
Unbreak. [1]
The port build fails with gcc 4.9, convert to USE_GCC=4.8. [2]
Differential Revision: https://reviews.freebsd.org/D1557
Submitted by: pfg [1]
Submitted by: gerald [2]
Reviewed by: pfg
Approved by: mat (mentor) |
4.1.1_4 19 Jan 2015 00:57:31 |
truckman |
The editors/openoffice-4 port currently depends on textproc/saxon-devel and
relies on features that are only present in this version of saxon. The
recent update to math/scilab added a dependency to textproc/saxon-he, and
it requires features that are only present in this version. Unfortunately
saxon-devel and saxon-he conflict because they both want to install
/usr/local/share/java/classes/saxon9-xqj.jar, which means that openoffice-4
and scilab can't both be installed on the same machine. Avoid this problem
by tweaking openoffice-4 use a private copy of saxon. This requires a
new version of the ext_sources tarball.
Bump PORTREVISION so that users pick up the updated port.
Modernize MASTER_SITES syntax and update MASTER_SITE for unowinreg.dll.
Update comment to take de facto mainternship.
PR: 193776
Differential Revision: https://reviews.freebsd.org/D1553
Reviewed by: bapt, pfg
Approved by: mat (mentor) |
4.1.1_3 25 Dec 2014 20:54:43 |
bapt |
Bump portrevision after png update |
4.1.1_2 25 Nov 2014 12:55:54 |
makc |
Bump PORTREVISION after graphics/poppler update to 0.26.3 |
4.1.1_1 10 Sep 2014 20:50:37 |
gerald |
Update the default version of GCC in the Ports Collection from GCC 4.7.4
to GCC 4.8.3.
Part II, Bump PORTREVISIONs.
PR: 192025
Tested by: antoine (-exp runs)
Approved by: portmgr (implicit) |
4.1.1 26 Aug 2014 22:48:21 |
truckman |
Apache OpenOffice 4.1.1 has been officially released.
Release announcement:
Announcing Apache OpenOffice 4.1.1
21 August 2014 - The Apache OpenOffice project is pleased to announce
the immediate availability of OpenOffice 4.1.1. You can download
it from our website.
Apache OpenOffice 4.1.1 is a micro update with many useful and
critical bugfixes including 2 security relevant fixes (details will
come separately).
Bugfixes include: (Only the first 15 lines of the commit message are shown above ) |
4.1.0 25 Aug 2014 23:21:55 |
truckman |
Remove the --with-system-graphite configure option to unbreak
editors/openoffice-4 on FreeBSD 10.0 and 11.0. The cause of the
breakage is that on systems with clang as the default compiler,
graphics/silgraphite is built with clang and linked to libc++.so.1,
while openoffice is built with gcc from ports and linked to libstdc++.
This combination causes the resulting executables to go boom.
Add a source makefile patch to unbreak the --with-system-jpeg option
and enable this option. The problem is that without this patch the
build tries to link to the openjdk version of libjpeg instead of
the version installed by graphics/jpeg.
The --with-system-mythes options also works, so enable it as well.
Adjust LIB_DEPENDS for these changes. Also make the graphics/png (Only the first 15 lines of the commit message are shown above ) |
4.0.1_4 12 Jun 2014 09:17:33 |
tijl |
Bump PORTREVISION on everything that depends on devel/apr1 due to the
library version change.
Approved by: portmgr (implicit) |
4.0.1_3 16 Apr 2014 18:28:50 |
zeising |
The FreeBSD x11@ and graphics team proudly presents
a zeising, kwm production, with help from dumbbell, bdrewery:
NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE
This update switches over to use the new xorg stack by default on FreeBSD 9
and 10 stable, on osversions where vt(9) is available.
It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in
/etc/make.conf .
FreeBSD 8-STABLE and released versions of FreeBSD still use
the old version.
A package repository with binary packages for new xorg will
be available soon.
This patch also contains updates of libxcb and related ports, pixman, as well (Only the first 15 lines of the commit message are shown above ) |
4.0.1_2 30 Mar 2014 21:26:27 |
bapt |
Create mime and icon directory inside the stage directory
Reported by: Norbert Augenstein <lists@augenstein.net>, pfg |
4.0.1_2 26 Mar 2014 08:11:08 |
bapt |
Support stage |
4.0.1_2 07 Feb 2014 11:44:09 |
bapt |
Chase boost and icu bump
While here convert some LIB_DEPENDS |
4.0.1_1 22 Jan 2014 05:44:33 |
maho |
Fix build
PR: 185401
Submitted by: Jan Henrik Sylvester <me@janh.de> |
4.0.1_1 30 Dec 2013 20:55:19 |
ohauer |
- rename AL2 to APACHE20 in Mk/bsd.licenses.db.mk
- svn move Templates/Licenses/AL2 Templates/Licenses/APACHE20
- add APACHE10 and APACHE11 to Mk/bsd.licenses.db.mk
- add entry in UPDATING
- bulk change all ports AL2 => APACHE20
- math/openfst/pkg-plist: remove share/licenses/openfst-1.3.4
PR: ports/184785
Submitted by: ohauer
Reviewed by: tabthorpe
Approved by: portmgr (tabthorpe@) |
4.0.1_1 27 Dec 2013 16:54:22 |
kwm |
Update poppler to 0.24.4.
Update comment.
Use new LIB_DEPENDS syntax, use USES=pathfix.
Stagify.
Bump portrevision of all affected ports, and Update poppler* LIB_DEPENDS to
new syntax. |
4.0.1 22 Oct 2013 13:57:35 |
amdmi3 |
- Remove manual creation and removal of share/applications, as it's now in the
mtree (categories starting with [bce])
Approved by: portmgr (bdrewery) |
4.0.1 03 Oct 2013 00:50:13 |
maho |
update to 4.0.1 |
4.0.0 20 Sep 2013 16:36:24 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
editors) |
4.0.0 18 Sep 2013 08:38:20 |
bapt |
Add an explicit dependency on pkgconf |
4.0.0 12 Sep 2013 06:39:10 |
maho |
Unbreake by reroll of ext packages. Actually
former archive misses some tarballs, and I added to
avoid fetching while compiling. |
4.0.0 31 Aug 2013 02:00:00 |
bdrewery |
- Mark BROKEN, fails checksum |
4.0.0 30 Aug 2013 12:47:05 |
bdrewery |
- Fix with bmake |
4.0.0 28 Aug 2013 00:28:07 |
maho |
bsd.port.options.mk, needs to be placed before bsd.port.pre.mk.
Submitted by: jgh@ |
4.0.0 27 Aug 2013 06:27:25 |
maho |
convert to USES, and adoption of optionsNG styling, add CCACHE as configurable
option
PR: 181574
Submitted by: jgh@ |
4.0.0 26 Aug 2013 04:19:17 |
maho |
Update (branching) Apache OpenOffice port to 4.0.0. |