Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/libabw: libabw-0.0.2.ebuild ChangeLog libabw-0.0.1.ebuild
Date: Tue, 25 Feb 2014 19:47:13
Message-Id: 20140225194704.609AD2004C@flycatcher.gentoo.org
1 scarabeus 14/02/25 19:47:04
2
3 Modified: ChangeLog
4 Added: libabw-0.0.2.ebuild
5 Removed: libabw-0.0.1.ebuild
6 Log:
7 Version bump to 0.0.2 and drop redundant wpg dependency. Fixes bug#500734 and bug#500778.
8
9 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 8EEE3BE8)
10
11 Revision Changes Path
12 1.2 app-text/libabw/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libabw/ChangeLog?rev=1.2&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libabw/ChangeLog?rev=1.2&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libabw/ChangeLog?r1=1.1&r2=1.2
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-text/libabw/ChangeLog,v
21 retrieving revision 1.1
22 retrieving revision 1.2
23 diff -u -r1.1 -r1.2
24 --- ChangeLog 27 Jan 2014 15:32:41 -0000 1.1
25 +++ ChangeLog 25 Feb 2014 19:47:04 -0000 1.2
26 @@ -1,6 +1,13 @@
27 # ChangeLog for app-text/libabw
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-text/libabw/ChangeLog,v 1.1 2014/01/27 15:32:41 scarabeus Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-text/libabw/ChangeLog,v 1.2 2014/02/25 19:47:04 scarabeus Exp $
31 +
32 +*libabw-0.0.2 (25 Feb 2014)
33 +
34 + 25 Feb 2014; Tomáš Chvátal <scarabeus@g.o> +libabw-0.0.2.ebuild,
35 + -libabw-0.0.1.ebuild:
36 + Version bump to 0.0.2 and drop redundant wpg dependency. Fixes bug#500734 and
37 + bug#500778.
38
39 *libabw-0.0.1 (27 Jan 2014)
40
41
42
43
44 1.1 app-text/libabw/libabw-0.0.2.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libabw/libabw-0.0.2.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libabw/libabw-0.0.2.ebuild?rev=1.1&content-type=text/plain
48
49 Index: libabw-0.0.2.ebuild
50 ===================================================================
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-text/libabw/libabw-0.0.2.ebuild,v 1.1 2014/02/25 19:47:04 scarabeus Exp $
54
55 EAPI=5
56
57 inherit base eutils
58
59 DESCRIPTION="Library parsing abiword documents"
60 HOMEPAGE="http://www.freedesktop.org/wiki/Software/libabw/"
61 SRC_URI="http://dev-www.libreoffice.org/src//${P}.tar.xz"
62
63 LICENSE="LGPL-2.1"
64 SLOT="0"
65 KEYWORDS="~amd64 ~arm ~ppc ~x86"
66 IUSE="doc static-libs"
67
68 RDEPEND="
69 app-text/libwpd:0.9
70 dev-libs/libxml2
71 sys-libs/zlib
72 "
73 DEPEND="${RDEPEND}
74 >=dev-libs/boost-1.46
75 sys-devel/libtool
76 virtual/pkgconfig
77 doc? ( app-doc/doxygen )
78 "
79
80 src_configure() {
81 econf \
82 --docdir="${EPREFIX}/usr/share/doc/${PF}" \
83 --disable-werror \
84 $(use_enable static-libs static) \
85 $(use_with doc docs)
86 }
87
88 src_install() {
89 default
90 prune_libtool_files --all
91 }