notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

non port: editors/openoffice-devel/Makefile

Number of commits found: 256 (showing only 100 on this page)

«  1 | 2 | 3  »  

Saturday, 1 Apr 2017
15:23 gerald search for other commits by this committer
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
Original commitRevision:437439 
Tuesday, 31 Jan 2017
03:25 truckman search for other commits by this committer
Upgrade to upstream svn revision r1780246.  This incorporates the
pointer comparision fixes required to compile with clang 4.0, so
delete patch-clang40.  Also,
patch-lingucomponent_source_spellcheck_spell_sspellimp.cxx has been
incorporated upstream.

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
and to use a 16-byte offset in the "new" wrapper, and apply this
patch on amd64 if clang 4.0 is the system compiler.

Pass the --with-alloc=system flag to configure so that the libc
version of malloc() is used instead of one of the internal memory
allocator implementations.

Fix a few mis-sorts in BUILD_DEPENDS and don't list www/p5-libwww
twice.

Fix a sporadic failure in the clear_001 QA test that occasionally
breaks the build.  The nominal mutex hold time is 5 seconds, but
because it is only checked one per second, the actual time is more
likely to be around 6 seconds.  When the before time value is
subtracted from the after time value, the result might be 7 whole
seconds and a large negative number of nanoseconds.  Since the
pass/fail check only looks at the difference in the seconds fields,
it will fail the "< 7" assertion.  Relax the assertion to "<= 7"
as a quick fix.

Add PowerPC64 support.  [1]

Add a section to pkg-message mentioning that spell check dictionaries
for the desired languages should be installed.  [2]

Various fixes from PR 216245:   [3]
 * Add option for mysql driver, default off.

 * Poppler is only needed for the optional PDF Import extension
   (and we only need poppler and not poppler-glib).

 * The --without-stlport configure flag is not needed.

 * Pass the -with-build-version flag to configure (but use ${PKGNAME}
   for completeness instead of just  ${PORTNAME}-${PORTVERSION})

 * Tweak a comment in the Makefile.

PR:		215130, 212103, 216245
Submitted by:	Curtis Hamilton <hamiltcl@verizon.net> [1]
Submitted by:	Arrigo Marchiori <ardovm AT yahoo.it> [2]
Submitted by:	pfg [3]
Original commitRevision:432895 
Wednesday, 18 Jan 2017
13:20 tijl search for other commits by this committer
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)
Original commitRevision:431796 
Saturday, 7 Jan 2017
14:43 jbeich search for other commits by this committer
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
Original commitRevision:430796 
10:42 olivierd search for other commits by this committer
Chase update of graphics/poppler (and slaves ports) in revision r430777
Original commitRevision:430778 
Friday, 6 Jan 2017
08:45 jbeich search for other commits by this committer
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
Original commitRevision:430692 
Saturday, 3 Dec 2016
22:24 jbeich search for other commits by this committer
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)
Original commitRevision:427743 
Wednesday, 23 Nov 2016
12:45 jbeich search for other commits by this committer
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)
Original commitRevision:426908 
Friday, 21 Oct 2016
12:51 mat search for other commits by this committer
${RM} already has -f.

PR:		213570
Submitted by:	mat
Exp-run by:	antoine
Sponsored by:	Absolight
Original commitRevision:424411 
Sunday, 9 Oct 2016
12:10 jbeich search for other commits by this committer
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
Original commitRevision:423591 
Monday, 5 Sep 2016
20:02 olivierd search for other commits by this committer
Chase update of Poppler after revision r421386
Original commitRevision:421390 
Thursday, 21 Jul 2016
18:13 truckman search for other commits by this committer
Upgrade to upstream svn revision r1753426, which includes the fix for
CVE-2016-1513.

Regenerate distinfo to add TIMESTAMP.

MFH:		2016Q3
Security:	72f71e26-4f69-11e6-ac37-ac9e174be3af
Original commitRevision:418886 
Tuesday, 12 Jul 2016
03:24 truckman search for other commits by this committer
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
Original commitRevision:418412 
Thursday, 23 Jun 2016
15:29 truckman search for other commits by this committer
Upgrade to upstream svn revision 1749607.

This fixes the build problem with libc++ 3.8.0, so
patch-vcl_source_glyphs_graphite__layout.cxx is no longer needed.
Original commitRevision:417378 
Sunday, 1 May 2016
04:44 truckman search for other commits by this committer
Pet portlint - use a tab (not space) after a variable name
Original commitRevision:414382 
Saturday, 30 Apr 2016
19:04 truckman search for other commits by this committer
Revert the part of the change in r408688 that allowed the PDF Import
extension to build with boost 1.60, which should have been reverted
in r411540.  The fix implemented upstream does not require linking
with any boost libraries, so return boost to always just being
a build dependency.

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.
Original commitRevision:414357 
Friday, 1 Apr 2016
14:00 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412346 
Monday, 21 Mar 2016
05:53 truckman search for other commits by this committer
Upgrade to upstream svn revision r1735889.  This contains the
CLOSESOCKET_DOESNT_WAKE_UP_ACCEPT pipe fix [1].  It also contains
a slightly different fix for building with boost 1.60, so delete
patch-sdext_source_pdfimport_makefile.mk, which is no longer needed.

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. [2]

Add missing USES=shared-mime-info.

PR:		207301 [1]
PR:		208026 [2]
Original commitRevision:411540 
Friday, 11 Mar 2016
11:53 tijl search for other commits by this committer
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
have been moved from cups to cups-filters and they have been configured to
use PDF as an intermediate format instead of PostScript.

Merging of cups-base, cups-client and cups-image into print/cups:
- cups-image provides a library to work with the cups raster format.  It is
  only used to implement filters and printer drivers and these only exist
  in the context of a cups server so there's no need to separate this from
  cups-base.
- cups-client provides a library that allows applications to print via cups.
  It is possible to use the library to access a remote cups server without
  running a local cups server, but such a setup is discouraged and the
  configuration file to set this up has been marked deprecated.  It is
  better to run a local cups server and let that talk to the remote cups
  server because then you have the benefits of local job queuing in case the
  remote server is down or busy.  Given this and the fact that without
  filters cups-base is now smaller than it used to be it makes sense to
  merge the ports.  The patch also adds options IPPTOOL, DOCS and NLS which
  when disabled make the new cups package smaller than the current
  cups-client package.  Merging the ports also prevents problems with
  options like ZEROCONF being configured differently in both ports.
- print/cups was a metaport that depended on cups-base and some filters.
  There isn't really a need for such a metaport so cups-base can be renamed
  to cups.  The filters can be depended on by printer drivers such as hplip
  if they need them.

Additional changes to the new print/cups:
- Clean up the patches.  They seem to have been regenerated with post-patch
  changes included.
- Add a patch to prevent intermediate conversion to PDF when a PostScript
  file is sent to a PostScript printer when cups-filters is installed.
- Fix the PAM configuration file.
- Add a patch to let the server search /usr/local/share/ppd like on Linux so
  other ports don't have to add links to it.
- Remove ulpt(4) helper scripts.  The port uses libusb with ugen(4).
- Remove support for mDNSResponder.  cups-filters only supports Avahi.
- Combine ICONS and XDG_OPEN options into an X11 option to support WITHOUT_X11.
- Optionally depend on colord for ICC profile support.
- Various smaller changes.

Changes to print/cups-filters:
- Let the cups_browsed rc.d script depend on cupsd and avahi_daemon instead
  of LOGIN.
- Development of foomatic-filters has been moved to cups-filters so let this
  port install foomatic related files and add foomatic-filters to CONFLICTS.
- Fix location of liblouis tables.
- Add patch to fix ICC support.

Changes to print/cups-pstoraster:
This port is essentially an old version of Ghostscript plus a cups filter.
It's no longer developed.  This commit removes it and changes existing
dependencies to print/cups-filters which depends on print/ghostscript* and
includes a gstoraster filter that can handle both PostScript and PDF.

Changes to print/foomatic-db*:
Remove old MASTER_SITES and dependencies and eliminate PKGNAMEPREFIX.

Changes to print/foomatic-filters:
Install beh backend with its original name again and add cups-filters to
CONFLICTS.

Changes to print/hplip:
- Stop installing hpijs/foomatic-rip support.  This is no longer supported
  upstream.
- Stop installing hpcups PPDs.  These are now automatically generated.  The
  bundled PPDs are generated for an older version of cups.
- Rename the QT option to X11 to support WITHOUT_X11.
- Simplify the patches now that ports are installed in a staging area.
- Add a patch to set SO_REUSEPORT (next to SO_REUSEADDR) on the mDNS socket
  like avahi-daemon does.  This fixes Zeroconf support for HP network
  printers.

PR:		207746
Exp-run by:	antoine
Approved by:	portmgr (antoine)
Original commitRevision:410825 
Thursday, 11 Feb 2016
15:40 truckman search for other commits by this committer
Unbreak PDF Import extension when building with modern boost.  Similar
to the patch by amdmi3, link the extension with -lboost_system, but
only do this in the --with-system-boost case.  Doing this unconditionally
would break building with the bundled boost because only the boost headers
are available and the boost libraries are not built.  This is still a bit
pessimal because -lboost_system may be used when it is not strictly
necessary (when the system boost is old), but it is likely that this is
only relevant to FreeBSD and we are in the process of upgrading boost.
This fix should be acceptable upstream.

Re-enable the PDF Import extension by default.

When the PDF Import extension is enabled, promote boost from BUILD_DEPENDS
to LIB_DEPENDS.

Tested with PDFIMPORT both on and off.  Also tested with PDFIMPORT on,
--with-system-boost disabled, and boost removed from *_DEPENDS.

PR:		207073, 199601
Original commitRevision:408688 
Wednesday, 10 Feb 2016
00:47 truckman search for other commits by this committer
Disable PDF import plugin to unbreak build with modern boost.

A proper fix that can be upstreamed will take a bit longer.

PR:		199601
Original commitRevision:408611 
Saturday, 30 Jan 2016
21:26 truckman search for other commits by this committer
Upgrade to upstream svn revision 1727463.  This fixes the upstream
bug <https://bz.apache.org/ooo/show_bug.cgi?id=125431>,
"The Password is incorrect. The file cannot be opened."

PR:		206234
Original commitRevision:407553 
Thursday, 21 Jan 2016
19:40 kwm search for other commits by this committer
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]
Original commitRevision:406872 
Saturday, 2 Jan 2016
20:58 truckman search for other commits by this committer
Correct the Icon entry in the .desktop files so that the icons are
visible in the menu.

PR:		205758
Original commitRevision:405096 
Friday, 13 Nov 2015
04:13 truckman search for other commits by this committer
Now that we are no longer avoiding certain versions of clang, convert to
USES=compiler:c++11-lib instead of trying to emulate it.
Original commitRevision:401475 
Friday, 6 Nov 2015
15:50 truckman search for other commits by this committer
Switch back to tracking the upstream trunk instead of OpenOffice 4.1.2
release candidates.  Upgrade to SVN revision r1712473.

Add an option to build and install the PDF Import extension and enable
it by default.

Patch the extensions.lst file so that it points to the locations
of the extension files rather than passing that information as
a configure option.  Add a patch to enable enable the use of file://
in extensions.lst for local integrated extensions as is documented in
the comments in this file.

Nuke the patches that have been committed upstream.

Don't try to run the create_tree.sh script with "sh -c" since this
script is not marked executable.

MFH:		2015Q4
Original commitRevision:400938 
Saturday, 24 Oct 2015
01:00 truckman search for other commits by this committer
Upgrade to OpenOffice 4.1.2-RC3.

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.

Add an option to build and install the SDK and disable it by default.
The port has been building it all along, but not installing it.  We
save only a small amount of time by not building it, but we save about
70 MB of space when the port is installed.

Add an option to build and install the Wiki Publisher extension.  If
it is enabled, it is now handled as an integrated extension, so the
user does not have manually use the extension manager to track it down
and install it.

Tweak an existing script to install the icons instead of using a bunch
of complicated code in the Makefile.

Nuke some unused targets in Makefiles.others.  The SDK is now explicitly
handled, and the Uno Runtime Environment hasn't had the capability for
separate installation in quite some time.

Nuke an extraneous "-" from the tar command when unpacking the
installation archive during staging.
Original commitRevision:400085 
Sunday, 18 Oct 2015
08:20 truckman search for other commits by this committer
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 r399537 to unmark broken.

PR:		199591 (openjdk8 by default exp-run)
Original commitRevision:399606 
Saturday, 17 Oct 2015
13:20 swills search for other commits by this committer
editors/openoffice-devel: mark broken with OpenJDK8
Original commitRevision:399537 
Wednesday, 14 Oct 2015
17:09 truckman search for other commits by this committer
Upgrade to OpenOffice 4.1.2-RC2.
Original commitRevision:399282 
Thursday, 8 Oct 2015
01:09 truckman search for other commits by this committer
Temporarily downgrade the openoffice-devel port from the upstream trunk
branch to 4.1.2-RC1 in order to give the latter wider exposure before
4.1.2 is released.

Add this missing missing bits of patch-i114430 that were committed
to trunk upstream but that are not in 4.1.2-RC1.

Removing --enable-symbols=small from CONFIGURE_ARGS allows us to avoid
the need to use ${STRIP_CMD}.
Original commitRevision:398790 
Saturday, 26 Sep 2015
07:40 truckman search for other commits by this committer
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]
Original commitRevision:397932 
Thursday, 24 Sep 2015
21:06 truckman search for other commits by this committer
Update to svn revsion r1704217.

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.
Original commitRevision:397760 
Wednesday, 16 Sep 2015
03:03 truckman search for other commits by this committer
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}

  * Create hard links to the wrapper for the individual apps
    instead of symbolic links, and use a for loop instead of
    repeating the command a bunch of times

  * Centralize the plist generation, which allows the icon
    installation ot be simplified

  * Install missing startcenter app icon

  * Mute many of the commands, but add strategic ${ECHO_CMD}s
Original commitRevision:397038 
Thursday, 10 Sep 2015
00:26 truckman search for other commits by this committer
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
    instead of repeating the same, long sequence in a number of places

  * Tweak openoffice-wrapper to take advantage of the previous change

  * Use INSTALLS_ICONS=yes instead of manually adding the @exec and
    @unexec entries to the plist

  * Edit bootstraprc only once with ${REINPLACE_CMD} instead of
    running it twice to edit the same line

  * Remove bootstraprc.bak so that it does not get installed

  * With the advent of staging, it is not necessary to remove
    ${STAGEDIR}${DESKTOPDIR}/${EXECBASE}

  * Simplify code for installing icons

Rename remaining OOO* variables to AOO*.
Original commitRevision:396544 
Monday, 7 Sep 2015
06:22 truckman search for other commits by this committer
Sort USE_XORG
Original commitRevision:396247 
Monday, 31 Aug 2015
07:54 truckman search for other commits by this committer
Upgrade to upstream svn revision r1697984.

Nuke patch-clang34 because it has been incorporated upstream.

Replace the default images in the opening splash window and the
Help->About window with FreeBSD-branded versions that also mark
this as a developer snapshot.  Thanks to pfg for suggesting this
and reviewing the new images.
Original commitRevision:395652 
Monday, 17 Aug 2015
14:20 mat search for other commits by this committer
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
Original commitRevision:394508 
Thursday, 6 Aug 2015
22:40 truckman search for other commits by this committer
Update to SVN revision 1694132, which contains some changes to aid
building with gcc from ports on FreeBSD.  Remove the REINPLACE_CMD
patches in the ports Makefile and $FBSD_LDFLAGS from do-build that
are no longer needed for building with gcc in the general case.

Add a patch to disable optimization when compiling one source file
with base clang 3.4 on FreeBSD 10 amd64 to avoid tripping on a compiler
code generation bug.  This allows us to build with base clang on
FreeBSD 10 amd64 instead of using the clang35 port.

Fine tune compiler optimization flags when using clang 3.6 on FreeBSD 11
i386 or gcc 4.9 instead of totally disabling optimization.  Unbreak
the build with gcc 4.9 on amd64.

A few Makefile cleanups without functional change:

  * Combine two .if ${ARCH} == amd64 sections of Makefile

  * Merge the pre-configure target into post-extract

  * Simplify the code in the do-build target

Approved by:	mat (mentor, implicit)
Original commitRevision:393676 
Sunday, 2 Aug 2015
16:06 kwm search for other commits by this committer
Update poppler to 0.34.0. [1]

Chase all users of shlib version change of libpoppler.so.

PR:		201477 [1]
Submitted by:	olivierd@ [1]
Original commitRevision:393431 
Monday, 13 Jul 2015
21:03 truckman search for other commits by this committer
Upgrade to upstream SVN revision 1689959.

patch-jpeg and patch-nss have been upstreamed and are no longer needed.

patch-i118574 no longer seems necessary for a clean build.

Regnerate patch-i114430 with make makepatch.

Always build using boost from ports instead of the bundled boost, updating
the BUILD_DEPENDS with the header that configure looks for.

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 headers.

Update LICENSE* to account for bundled software.

Reformat pkg-message and mention that the scanner interface can be enabled
by installing sane-backends.

Pet portlint.

Reviewed by:	pfg
Approved by:	mat (mentor)
Differential Revision:	https://reviews.freebsd.org/D3064
Original commitRevision:391960 
Sunday, 28 Jun 2015
15:20 antoine search for other commits by this committer
MAKE_JOBS_SAFE=yes is a nop since july 2013
Original commitRevision:390787 
Monday, 22 Jun 2015
18:33 antoine search for other commits by this committer
Convert to USES=jpeg
Original commitRevision:390310 
Thursday, 14 May 2015
23:07 truckman search for other commits by this committer
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)
Original commitRevision:386368 
Friday, 8 May 2015
16:04 truckman search for other commits by this committer
Resurrect the part of patch-i114430 that was not accepted upstream.

Submitted by:	pfg
Approved by:	mat (mentor, implicit)
MFH:		2015Q2
Original commitRevision:385793 
00:07 truckman search for other commits by this committer
Upgrade to svn revision r1677314, fixing the HWP filter
vulnerability documented in CVE-2015-1774 and
<http://www.openoffice.org/security/cves/CVE-2015-1774.html>

Differential Revision:	https://reviews.freebsd.org/D2470
Submitted by:	pi
Reviewed by:	pi, pfg
Approved by:	mat (mentor)
MFH:		2015Q2
Security:	b13af778-f4fc-11e4-a95d-ac9e174be3af
Original commitRevision:385717 
Tuesday, 5 May 2015
20:38 truckman search for other commits by this committer
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.

Add a couple of missing p5-* build dependencies.

Add the --enable-gtk, --disable-kde, --disable-kde4 configure flags
so that the port does not try to build with KDE if it is installed
because compilation fails.

USE_AUTOTOOLS=autoconf -> USES=autoreconf:autoconf

PR:		199865
Reported by:	pi
Differential Revision:	https://reviews.freebsd.org/D2441
Reviewed by:	pi, pfg
Approved by:	mat (mentor)
Original commitRevision:385489 
Monday, 30 Mar 2015
17:58 sunpoet search for other commits by this committer
- Add CPE information

PR:		199030
Submitted by:	shun <shun.fbsd.pr@dropcut.net>
Original commitRevision:382700 
Thursday, 26 Mar 2015
18:03 truckman search for other commits by this committer
Upgrade to apache-openoffice SVN revision 1667428.

Word 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.

Build using the ports version of graphics/silgraphite instead of
building an internal copy.

When building with clang, use the ports version of devel/boost-libs
instead of an internal copy.

Use the dictionaries already installed by ports.

Update the patch-bridges and patch-*.mk patches to versions that
will be sent upstream.  The latter are tuned for clang to use as
is, with only some minor additional tweaks needed for gcc.

Nuke patch-webdav because it has been incorporated upstream.

Wordsmith pkg-message.

Various Makefile cleanups.

Differential Revision:	https://reviews.freebsd.org/D2108
Reviewed by:	pfg
Approved by:	mat (mentor)
Original commitRevision:382334 
Saturday, 21 Mar 2015
23:05 bapt search for other commits by this committer
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
Original commitRevision:381876 
Tuesday, 17 Mar 2015
15:04 truckman search for other commits by this committer
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.

pkg-message claims that user settings are stored in
~/.openoffice,org4, whereas all other platforms seem to use
~/.openoffice.org/4 (or equivalent), and both openoffice-4 and
openoffice-devel actually use ~/.openoffice.org-devel/4. The
addition of -devel to the location happened with r325370.
The / appears to have been introduced in r297259. Change the
location match other platforms. Introduce a new variable
${AOOUDIR} so that the actual location and pkg-message stay in
sync.

Rename ${OOOTAG} to ${AOOTAG} and restore its value so that it
can once again be substituted into pkg-message. It has not
been set since r296269.

Various Makefile cleanups:
  * Gather and sort USE_*

  * Simplify use of ${REINPLACE_CMD}

  * --x-includes and --x-libraries are automatically passed to configure,
    which ignores them

  * Get rid of unnecessary include of bsd.port.options.mk

PR:		188088 [1]
PR:		198458 [2]
Differential Revision:	https://reviews.freebsd.org/D2055
Reviewed by:	pfg
Approved by:	mat (mentor)
Original commitRevision:381494 
Wednesday, 25 Feb 2015
05:58 truckman search for other commits by this committer
Undo an unintended Makefile change that slipped in.

Approved by:	mat (mentor)
Original commitRevision:379875 
05:55 truckman search for other commits by this committer
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
build finds the perl symlink in /usr/bin before it finds perl in
${PREFIX}/bin, so it prepends ${PREFIX}/bin to $PATH to try to ensure
that the correct version of perl will be found first. This moves
${PREFIX}/bin earlier in $PATH than ".".

The operation to put the path to ${CC} in $PATH has a different
problem. It uses the variable COMPATH for this, which is the dirname
of the patch to $CC, with the trailing /bin stripped off. That
results in /usr/local being added to $PATH, which is nonsensical,
though mostly harmless.

There are three fixes here:

* Always keep the parts of $PATH for the directories under ${WRKSRC},
  including "." at the beginning of the path.

* Ignore symlinks to executables when deciding to prepend a directory
  to the path.

* Append "/bin" when using COMPATH so that the result points to the
  directory where ${CC} actually resides.  There is actually another
  variable CC_PATH, but it has an extra trailing "/", so it doesn't
  match ${PREFIX}/bin.

Differential Revision:	https://reviews.freebsd.org/D1958
Reviewed by:	pfg
Approved by:	mat (mentor)
Original commitRevision:379874 
Tuesday, 17 Feb 2015
01:26 truckman search for other commits by this committer
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/D1607
Reviewed by:	pfg
Approved by:	mat (mentor)
Original commitRevision:379132 
Friday, 13 Feb 2015
01:01 brd search for other commits by this committer
math/coinmp: Update to 1.8.0

PR:		197554
Submitted by:	Carlos Jacobo Puga Medina <cpm@fbsd.es> (maintainer)
Approved by:	zi
Original commitRevision:378905 
Tuesday, 3 Feb 2015
12:28 kwm search for other commits by this committer
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]
Original commitRevision:378348 
Wednesday, 21 Jan 2015
22:57 truckman search for other commits by this committer
Unbreak fetch.

Differential Revision:	https://reviews.freebsd.org/D1578
Reviewed by:	pfg
Approved by:	mat (mentor)
Original commitRevision:377630 
19:50 antoine search for other commits by this committer
Fix duplicate pkgnames
Original commitRevision:377624 
17:40 truckman search for other commits by this committer
Update to SVN revision 1652526.

Resynchronize to openoffice-4 including:

  * portlint fixes

  * fix all but one stage-qa warning

  * add source makefile patch to unbreak --with-system-jpeg

  * add the --with-system-hyphen, --with-system-nss, --with-system-jpeg,
    and --with-system-mythes configure options

  * remove the --with-system-saxon option to allow coexistance with
    math/scilab

  * add all distfiles that were previously downloaded during build
    to the ext_sources distfile, and add --disable-fetch-external

  * make the graphics/png dependency explicit

  * change from USE_GCC=yes to USE_GCC=4.8 because of a compile error with
    gcc 4.9

  * remove SVNREVISION from the ext_sources tarball name and
    tweak how it is extracted to allow it to be shared by
    multiple AOO releases

  * remove trailing cruft from files/patch-sal (from pfg@)

  * nuke files/patch-sal-inline (from pfg@)

  * modernize MASTER_SITES syntax and update MASTER_SITE for unowinreg.dll

  * unbreak sdk, package-canonical, and languagepack targets (from pfg@)

  * don't truncate generated plist (from mat@)

  * don't add @dirrm to generated plist, but add @dir for empty directories

  * don't add license files to generated plist because the framework
    does this (from mat@)

  * don't add a blank line to generated plist

  * merge post-install target into do-install (from mat@)

  * misc Makefile cleanup

PR:		192557
Differential Revision:	https://reviews.freebsd.org/D1571
Reviewed by:	pfg
Approved by:	mat (mentor)
Original commitRevision:377620 
Tuesday, 25 Nov 2014
12:55 makc search for other commits by this committer
Bump PORTREVISION after graphics/poppler update to 0.26.3
Original commitRevision:373404 
Sunday, 19 Oct 2014
15:43 mva search for other commits by this committer
- Convert ports from dns/, editors/ and emulators/ to new
  USES=python

Approved by:	portmgr (implicit)
Original commitRevision:371188 
Wednesday, 10 Sep 2014
20:50 gerald search for other commits by this committer
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)
Original commitRevision:367888 
Thursday, 12 Jun 2014
09:17 tijl search for other commits by this committer
Bump PORTREVISION on everything that depends on devel/apr1 due to the
library version change.

Approved by:	portmgr (implicit)
Original commitRevision:357574 
Wednesday, 16 Apr 2014
18:28 zeising search for other commits by this committer
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
as some drivers and utilities.

Bump portrevisions for xf86-* ports, as well as virtualbox-ose-additions due
to xserver version change.

Apart from these updates, the way shared libraries are handled has been
changed for all xorg ports, as well as libxml2 and freetype, which means
ltverhack is gone and as a consequence shared libraries have been bumped.
The plan is that this change will make library bumps less likely in the
future.
All affected ports have had their portrevisions bumped as a consequence of
this.

Fix some issues where WITH_NEW_XORG weren't detected properly on CURRENT.

Update instructions, hardware support, and more notes can be found on
https://wiki.freebsd.org/Graphics

Thanks to:	all testers, bdrewery and the FreeBSD x11@ team
exp-run by:	bdrewery [1]
PR:		ports/187602 [1]
Approved by:	portmgr (bdrewery), core (jhb)
Original commitRevision:351411 
Saturday, 5 Apr 2014
17:31 antoine search for other commits by this committer
Possibly unbreak

Reported by:	pkg-fallout
With hat:	portmgr
Original commitRevision:350251 
Wednesday, 26 Mar 2014
13:07 bapt search for other commits by this committer
Remove a line that is already done by USES=desktop-file-utils
Forgotten during stagification
Original commitRevision:349248 
08:17 bapt search for other commits by this committer
Support stage
Original commitRevision:349233 
Monday, 10 Mar 2014
20:55 gerald search for other commits by this committer
Update the default version of GCC used in the Ports Collection from
GCC 4.6.4 to GCC 4.7.3.  This entails updating the lang/gcc port as
well as changing the default in Mk/bsd.default-versions.mk.

Part II, Bump PORTREVISIONs.

PR:		182136
Supported by:	Christoph Moench-Tegeder <cmt@burggraben.net> (fixing many ports)
Tested by:	bdrewery (two -exp runs)
Original commitRevision:347809 
Friday, 7 Feb 2014
11:44 bapt search for other commits by this committer
Chase boost and icu bump
While here convert some LIB_DEPENDS
Original commitRevision:343214 
Wednesday, 5 Feb 2014
00:42 maho search for other commits by this committer
Update to 1560773

https://cwiki.apache.org/confluence/display/OOOUSERS/Development+Snapshot+Builds
Now we set USE_GCC to avoid gcc 4.2.1 (along with FBSD9) bug.
Original commitRevision:342617 
Monday, 3 Feb 2014
11:31 maho search for other commits by this committer
Now we use system nss.
Original commitRevision:342426 
Monday, 27 Jan 2014
07:32 maho search for other commits by this committer
Update to svn 1543006

Suggested by: pfg@
Original commitRevision:341334 
Monday, 30 Dec 2013
20:55 ohauer search for other commits by this committer
- 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@)
Original commitRevision:338168 
Friday, 27 Dec 2013
16:54 kwm search for other commits by this committer
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.
Original commitRevision:337749 
Tuesday, 22 Oct 2013
13:57 amdmi3 search for other commits by this committer
- Remove manual creation and removal of share/applications, as it's now in the
mtree (categories starting with [bce])

Approved by:	portmgr (bdrewery)
Original commitRevision:331271 
Monday, 7 Oct 2013
12:23 bapt search for other commits by this committer
Fix pkgname collision
Original commitRevision:329696 
Friday, 20 Sep 2013
16:36 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
editors)
Original commitRevision:327720 
Wednesday, 18 Sep 2013
08:38 bapt search for other commits by this committer
Add an explicit dependency on pkgconf
Original commitRevision:327535 
Friday, 30 Aug 2013
07:24 maho search for other commits by this committer
Fix mismatched {}

PR:		181667
Submitted by:	Katsuyuki Miyoshi <katsu@miyoshi.matsuyama.ehime.jp>
Original commitRevision:325663 
Wednesday, 28 Aug 2013
00:29 maho search for other commits by this committer
bsd.port.options.mk, needs to be placed before bsd.port.pre.mk.

Submitted by:	jgh@
Original commitRevision:325497 
Tuesday, 27 Aug 2013
03:36 maho search for other commits by this committer
update to svn 1517723.
some cleanups [1].

PR:		181574
Original commitRevision:325427 
Wednesday, 14 Aug 2013
22:35 ak search for other commits by this committer
- Remove MAKE_JOBS_SAFE variable

Approved by:	portmgr (bdrewery)
Original commitRevision:324744 
Monday, 5 Aug 2013
15:55 wg search for other commits by this committer
editors/openoffice-*: bump PORTREVISION

- CoinMP has been updated

Submitted by:	Pedro Giffuni <giffunip tutopia.com>
Original commitRevision:324278 
Sunday, 4 Aug 2013
12:47 az search for other commits by this committer
- Convert to new perl framework

Approved by:	bapt@ (office@)
Original commitRevision:324225 
Thursday, 11 Jul 2013
16:26 sunpoet search for other commits by this committer
- Update to 7.31.0
- Bump PORTREVISION for ftp/curl shlib change
- Add TEST_DEPENDS
- Convert to new options framework
- Adjust options:
  - Add COOKIES
  - Add CYASSL, NSS, POLARSSL, THREADED_RESOLVER, TLS_SRP [1]
  - Add GSSAPI and SPNEGO [2]
  - Remove KERBEROS4
  - Rename LIBIDN to IDN
  - Remove TRACKMEMORY [1]
- Sort option handler
- Add SLAVEDIRS: ftp/curl-hiphop
- Cosmetic change
- Cleanup Makefile header
- While I'm here, fix typo (PORTREVSION) in x11-wm/ede/Makefile

Changes:	http://curl.haxx.se/changes.html
PR:		ports/172325 (-exp run), ports/177369 (based on) [1]
Submitted by:	Hirohisa Yamaguchi <umq@ueo.co.jp> [1], hrs (via email) [2]
Exp run by:	miwi
Original commitRevision:322783 
Wednesday, 8 May 2013
09:36 maho search for other commits by this committer
Update to svn 1479753
Original commitRevision:317648 
Wednesday, 17 Apr 2013
02:40 maho search for other commits by this committer
update to svn 1466687.

Feature safe: yes
Original commitRevision:315923 
Saturday, 8 Nov 2003
01:47 maho search for other commits by this committer
Repocopy has been done for openoffice,
so rename from:
editors/openoffice
editors/openoffice-devel
to
editors/openoffice-1.0
editors/openoffice-1.1

Acknowledgment to: nork
Original commit
Friday, 3 Oct 2003
00:09 maho search for other commits by this committer
(1) omit RC4 in pkg-message
(2) PORTREVERSION -> PORTREVISION

Pointed out by: FUJIMOTO Kou <fujimoto@j.dendai.ac.jp> (1)
Pointy hat to:  myself (2)
Original commit
Thursday, 2 Oct 2003
06:45 maho search for other commits by this committer
a) add several patches made by Takashi Ono (JCA signed person)
   1) To enable handling of MS Word for Windows 95/6.0 CJK Version
      patch-word6+95-cjkhandling
      http://www.openoffice.org/issues/show_bug.cgi?id=17498
      (target milestone 1.1.1, resolved and fixed)

   2) Patch to enable rtf filter handle local language files
      patch-rtfcjk
      http://www.openoffice.org/issues/show_bug.cgi?id=17503
      (target milestone 2.0, verified and fixed)

   3) rtf writing enhancement for CJK
      patch-wrtrtf
      http://www.openoffice.org/issues/show_bug.cgi?id=20264
      (not confirmed yet)

   4) read first section attribute correctly for
      MS Word for Windows 95/6.0
      patch-topsection
     
http://ja.openoffice.org/servlets/ProjectDownloadList?action=download&dlID=312
      (IZ is not raized)

b) bump portrevision
Original commit
02:07 maho search for other commits by this committer
Update to 1.1.0 official release
(archive is exactly same as 1.1rc5b)
Original commit
Wednesday, 1 Oct 2003
07:52 maho search for other commits by this committer
1) update to 1.1rc5b.
2) too small so I treated this update as bump portrevision
Original commit
05:53 maho search for other commits by this committer
Localized helpcontents have been changed from 1.0 to 1.1, and
unfortunately, both helpcontents have same names and located
at different place. there's (AFAIK) no way to make one more deeper
subdirectory at DISTDIR, so I splitted /usr/ports/distfiles/openoffice to
/usr/ports/distfiles/openoffice1.0, /usr/ports/distfiles/openoffice1.1.
Original commit
Thursday, 25 Sep 2003
22:29 mbr search for other commits by this committer
Upgrade to 1.1rc5 snapshot. Fix a remaining error in the startup
script.
Original commit
Sunday, 21 Sep 2003
07:04 mbr search for other commits by this committer
Fix minor install problem: s/openoffice/openoffice-wrapper/

Submitted by:   Lars Bungum <lars@bungum.no>
Approved by:    marcus (portsmgr)
Original commit
Wednesday, 17 Sep 2003
04:06 mbr search for other commits by this committer
Make it easier for people, move a big chunk of the startup
wrapper out into a script included by soffice.sh. This way
there aren't any traps at first startup time and people
hopefully don't ask the same questions anymore.

At the same time, make more substitutions, also in oo_setup.resp.

Approved by:    marcus (portsmgr)
Original commit
Tuesday, 16 Sep 2003
04:26 mbr search for other commits by this committer
Fix post-install target, remove a dash.

Approved by:    marcus (portsmgr)
Original commit
Sunday, 14 Sep 2003
21:52 mbr search for other commits by this committer
Make OO1.1RC working. Many thanks to kan for the debugging session
at the dev summit !

Approved by:    joe (portsmgr)
Original commit
Tuesday, 9 Sep 2003
12:39 mbr search for other commits by this committer
Back out parts of rev. 1.95.

The framebuffer hack is still needed. Without it, we cannot
install openoffice-devel on bento at all, neither on my build
machines.
Original commit
Monday, 8 Sep 2003
15:36 mbr search for other commits by this committer
Add gcc port dependency.
Original commit

Number of commits found: 256 (showing only 100 on this page)

«  1 | 2 | 3  »