Age | Commit message (Collapse) | Author | Files | Lines |
|
major change.
Reported by Robert Elz in PR 41345.
|
|
This is a major update, I couldn't find the relevant changecogs but
the last one. A couple of bugfixes.
pkgsrc note: Since base and plugins are seperate distfiles now, we
could abandon the Makefile.common or at least part of its complexity.
I'll leave this to the MAINTAINER.
Also, I'd suggest to rip -plugins into parts - many are too exotic.
(There are also some new which are not built, I've just kept status quo.)
|
|
|
|
|
|
should fix copy-and-paste, reported by Andreas Burghardt in PR pkg/38133,
bump PKGREVISION
|
|
on packages that are affected by the switch from the openssl 0.9.7
branch to the 0.9.8 branch. ok jlam@
|
|
code inspection, so remove it.
|
|
|
|
Now it fails in the linker stage with an undefined reference to
UT_XML::processingInstruction(const char *, const char *).
|
|
Bump PKGREVISION.
|
|
|
|
affected packages.
|
|
|
|
More import and export filters and graphics formats are available
with the abiwords-plugins package.
|
|
|
|
|
|
|
|
* Bug-fix release, see ChangeLog for details
|
|
|
|
This fixes problems when some installed packages are outdated.
Per wiz@'s request.
Grrr, I really hate this kind of change.
|
|
|
|
Almost completely rewrote the DocBook export filter, gaining substantial more functionality in the process
Fixed a security bug pointed out to us by Joxean Koret
Fixed a massive amount of bugs in the OpenDocument import and export filters
Fixed the unstability on x86_64 architectures
|
|
|
|
|
|
|
|
|
|
|
|
See http://www.abisource.com/changelogs/2.4.4.phtml for details
|
|
USE_TOOLS+=msgfmt.
|
|
libtasn1 had a shlib major bump.
Also update dependencies in bl3.mk files.
Addresses PR 32998 by Robert Elz.
|
|
|
|
|
|
of the shlib major bump.
PKGREVISION++ for the dependencies.
|
|
* Added an OpenDocument exportes, and substantially updated the OpenDocument
importer
* Greatly improved the print quality of images (Unix)
* Fixed a substantial number of memory leaks
|
|
This is during the freeze. Hopefully, this fixes PR #32310
and #32144. Before this fix, under Linux, the package's PLIST
didn't match up with what was actually installed. Also problem
was seen recently on bulk-builds list.
Add patch-af from
abiword-2.0.9-windowshelppaths.patch from Fedora Core 4 Extras abiword-2.4.1-2.
This gets rid of the DOS style file paths of images.
Add patch-ag to have portable use of cp -r * instead of */.
This fixes problem where files were not installed to their subdirectories.
Use post-build target to create "help" docs and to clean out junk.
(Fixes problem where "make clean" can't clean.)
Fix permissions in post-build too. Fixes problem where some
subdirectories for the help files were not browsable.
Copy the help files into place in the post-install target.
Many PLIST changes due to fixing of the help files.
While I am here, use PKGMANDIR instead of "man" and add INSTALLATION_DIRS
for that.
Bump PKGREVISION.
The maintainer of this package, adam, said he was unavailable to
work on this currently and said it was okay for me to work on this.
I tested on PkgLinux and NetBSD/i386. I reviewed some "help" files
in browser (which abiword opens). And saw some images too.
|
|
adopts the iconv interface of the underlaying OS and DragonFly follows
SUS there.
|
|
* CAN-2005-2972: Fix several stack-based buffer overflows in the RTF importer
* Fix the BiDi direction in menu strings (Windows)
* Fix various crashers related to Equation editing
|
|
* grammar checker, equation editor
* improved GNOME Office integration
* OpenDocument support
|
|
* Fix security bug: AbiWord RTF import stack-based buffer overflow / CESA-2005-004 - rev 1
* Fix a list corruption in the MS Word importer
* Fix the text highlighting color in TOC and field elements (Windows)
|
|
file's sole purpose was to provide a dependency on pkg-config and set
some environment variables. Instead, turn pkg-config into a "tool"
in the tools framework, where the pkg-config wrapper automatically
adds PKG_CONFIG_LIBDIR to the environment before invoking the real
pkg-config.
For all package Makefiles that included pkg-config/buildlink3.mk, remove
that inclusion and replace it with USE_TOOLS+=pkg-config.
|
|
* Bugfixes
|
|
No PKGREVISION bump since pkg-config is only a BUILD_DEPENDS.
|
|
* Make Text Folding actually work
* Fix text justification on MacOSX
* Initial support for the OpenDocument (.odt) file format
|
|
Several changes are involved since they are all interrelated. These
changes affect about 1000 files.
The first major change is rewriting bsd.builtin.mk as well as all of
the builtin.mk files to follow the new example in bsd.builtin.mk.
The loop to include all of the builtin.mk files needed by the package
is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk
is now included by each of the individual builtin.mk files and provides
some common logic for all of the builtin.mk files. Currently, this
includes the computation for whether the native or pkgsrc version of
the package is preferred. This causes USE_BUILTIN.* to be correctly
set when one builtin.mk file includes another.
The second major change is teach the builtin.mk files to consider
files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most
of the builtin.mk files test for the presence of built-in software by
checking for the existence of certain files, e.g. <pthread.h>, and we
now assume that if that file is under ${LOCALBASE}, then it must be
from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The
exceptions to this new check are the X11 distribution packages, which
are handled specially as noted below.
The third major change is providing builtin.mk and version.mk files
for each of the X11 distribution packages in pkgsrc. The builtin.mk
file can detect whether the native X11 distribution is the same as
the one provided by pkgsrc, and the version.mk file computes the
version of the X11 distribution package, whether it's built-in or not.
The fourth major change is that the buildlink3.mk files for X11 packages
that install parts which are part of X11 distribution packages, e.g.
Xpm, Xcursor, etc., now use imake to query the X11 distribution for
whether the software is already provided by the X11 distribution.
This is more accurate than grepping for a symbol name in the imake
config files. Using imake required sprinkling various builtin-imake.mk
helper files into pkgsrc directories. These files are used as input
to imake since imake can't use stdin for that purpose.
The fifth major change is in how packages note that they use X11.
Instead of setting USE_X11, package Makefiles should now include
x11.buildlink3.mk instead. This causes the X11 package buildlink3
and builtin logic to be executed at the correct place for buildlink3.mk
and builtin.mk files that previously set USE_X11, and fixes packages
that relied on buildlink3.mk files to implicitly note that X11 is
needed. Package buildlink3.mk should also include x11.buildlink3.mk
when linking against the package libraries requires also linking
against the X11 libraries. Where it was obvious, redundant inclusions
of x11.buildlink3.mk have been removed.
|
|
USE_GNU_TOOLS -> USE_TOOLS
awk -> gawk
m4 -> gm4
make -> gmake
sed -> gsed
yacc -> bison
|
|
|
|
doesn't do it. From adam per tech-pkg.
|
|
|
|
windows importer improvements, and bugfixes
|
|
|