diff options
author | wiz <wiz@pkgsrc.org> | 2014-12-30 14:35:46 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2014-12-30 14:35:46 +0000 |
commit | df08cbaf1dc965e1d15e64c5226e2be86118190a (patch) | |
tree | 6b15b159feb33ee801ce13ba7b4220ad376195a8 /converters | |
parent | e1cd50170323c8aead8476098d01c3607fd73e8d (diff) | |
download | pkgsrc-df08cbaf1dc965e1d15e64c5226e2be86118190a.tar.gz |
Update to 0.1.1:
libabw 0.1.1
- Use symbol visibility on Linux. The library only exports the two public
functions now.
- Handle text language.
- Honor global setting of writing mode.
- Handle basic document metadata.
- Handle headings.
- Fix the loss of text formatting attributes that would happen in certain
cases.
- Several other smaller changes and improvements.
Diffstat (limited to 'converters')
-rw-r--r-- | converters/libabw/Makefile | 5 | ||||
-rw-r--r-- | converters/libabw/distinfo | 9 | ||||
-rw-r--r-- | converters/libabw/patches/patch-configure | 15 |
3 files changed, 22 insertions, 7 deletions
diff --git a/converters/libabw/Makefile b/converters/libabw/Makefile index 1475c7b44e9..547a984b7ea 100644 --- a/converters/libabw/Makefile +++ b/converters/libabw/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.10 2014/11/07 19:39:27 adam Exp $ +# $NetBSD: Makefile,v 1.11 2014/12/30 14:35:46 wiz Exp $ -DISTNAME= libabw-0.1.0 -PKGREVISION= 2 +DISTNAME= libabw-0.1.1 CATEGORIES= converters MASTER_SITES= http://dev-www.libreoffice.org/src/ EXTRACT_SUFX= .tar.bz2 diff --git a/converters/libabw/distinfo b/converters/libabw/distinfo index e5036948fa3..4e279d2c1a3 100644 --- a/converters/libabw/distinfo +++ b/converters/libabw/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.3 2014/07/22 11:01:53 wiz Exp $ +$NetBSD: distinfo,v 1.4 2014/12/30 14:35:46 wiz Exp $ -SHA1 (libabw-0.1.0.tar.bz2) = 4b297339615d46b422157fc4473103d52b80367d -RMD160 (libabw-0.1.0.tar.bz2) = 012e9ffe6c24dcc7c155ebc44b546d3ec81e97f3 -Size (libabw-0.1.0.tar.bz2) = 362087 bytes +SHA1 (libabw-0.1.1.tar.bz2) = d4bc4d7d67ccc815a4f9c6fa54077f5fdb82a57f +RMD160 (libabw-0.1.1.tar.bz2) = 05cd7138c9af02a35ab1185f6beda3e6797ed6f2 +Size (libabw-0.1.1.tar.bz2) = 369311 bytes +SHA1 (patch-configure) = 02896a3366f5fc13b4267fdbc92950a190b146d0 diff --git a/converters/libabw/patches/patch-configure b/converters/libabw/patches/patch-configure new file mode 100644 index 00000000000..af88cd48e8f --- /dev/null +++ b/converters/libabw/patches/patch-configure @@ -0,0 +1,15 @@ +$NetBSD: patch-configure,v 1.1 2014/12/30 14:35:46 wiz Exp $ + +Fix unportable test(1) comparison operator. + +--- configure.orig 2014-12-20 13:23:18.000000000 +0000 ++++ configure +@@ -16628,7 +16628,7 @@ else + fi + + +-if test $platform_win32 == yes; then : ++if test $platform_win32 = yes; then : + + else + |