Tue Dec 30 14:35:46 2014 UTC ()
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.


(wiz)
diff -r1.10 -r1.11 pkgsrc/converters/libabw/Makefile
diff -r1.3 -r1.4 pkgsrc/converters/libabw/distinfo
diff -r0 -r1.1 pkgsrc/converters/libabw/patches/patch-configure

cvs diff -r1.10 -r1.11 pkgsrc/converters/libabw/Makefile (expand / switch to unified diff)

--- pkgsrc/converters/libabw/Makefile 2014/11/07 19:39:27 1.10
+++ pkgsrc/converters/libabw/Makefile 2014/12/30 14:35:46 1.11
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.10 2014/11/07 19:39:27 adam Exp $ 1# $NetBSD: Makefile,v 1.11 2014/12/30 14:35:46 wiz Exp $
2 2
3DISTNAME= libabw-0.1.0 3DISTNAME= libabw-0.1.1
4PKGREVISION= 2 
5CATEGORIES= converters 4CATEGORIES= converters
6MASTER_SITES= http://dev-www.libreoffice.org/src/ 5MASTER_SITES= http://dev-www.libreoffice.org/src/
7EXTRACT_SUFX= .tar.bz2 6EXTRACT_SUFX= .tar.bz2
8 7
9MAINTAINER= ryoon@NetBSD.org 8MAINTAINER= ryoon@NetBSD.org
10HOMEPAGE= http://dev-www.libreoffice.org/src/ 9HOMEPAGE= http://dev-www.libreoffice.org/src/
11COMMENT= Library for AbiWord documents 10COMMENT= Library for AbiWord documents
12LICENSE= mpl-2.0 11LICENSE= mpl-2.0
13 12
14TOOL_DEPENDS+= gperf-[0-9]*:../../devel/gperf 13TOOL_DEPENDS+= gperf-[0-9]*:../../devel/gperf
15 14
16GNU_CONFIGURE= yes 15GNU_CONFIGURE= yes
17USE_LIBTOOL= yes 16USE_LIBTOOL= yes

cvs diff -r1.3 -r1.4 pkgsrc/converters/libabw/distinfo (expand / switch to unified diff)

--- pkgsrc/converters/libabw/distinfo 2014/07/22 11:01:53 1.3
+++ pkgsrc/converters/libabw/distinfo 2014/12/30 14:35:46 1.4
@@ -1,5 +1,6 @@ @@ -1,5 +1,6 @@
1$NetBSD: distinfo,v 1.3 2014/07/22 11:01:53 wiz Exp $ 1$NetBSD: distinfo,v 1.4 2014/12/30 14:35:46 wiz Exp $
2 2
3SHA1 (libabw-0.1.0.tar.bz2) = 4b297339615d46b422157fc4473103d52b80367d 3SHA1 (libabw-0.1.1.tar.bz2) = d4bc4d7d67ccc815a4f9c6fa54077f5fdb82a57f
4RMD160 (libabw-0.1.0.tar.bz2) = 012e9ffe6c24dcc7c155ebc44b546d3ec81e97f3 4RMD160 (libabw-0.1.1.tar.bz2) = 05cd7138c9af02a35ab1185f6beda3e6797ed6f2
5Size (libabw-0.1.0.tar.bz2) = 362087 bytes 5Size (libabw-0.1.1.tar.bz2) = 369311 bytes
 6SHA1 (patch-configure) = 02896a3366f5fc13b4267fdbc92950a190b146d0

File Added: pkgsrc/converters/libabw/patches/Attic/patch-configure
$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