Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/libodfgen: libodfgen-0.1.3.ebuild ChangeLog
Date: Wed, 04 Feb 2015 09:20:54
Message-Id: 20150204092050.3AB9B1106C@oystercatcher.gentoo.org
1 mgorny 15/02/04 09:20:50
2
3 Modified: ChangeLog
4 Added: libodfgen-0.1.3.ebuild
5 Log:
6 Version bump. Bug #538754.
7
8 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
9
10 Revision Changes Path
11 1.17 app-text/libodfgen/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libodfgen/ChangeLog?rev=1.17&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libodfgen/ChangeLog?rev=1.17&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libodfgen/ChangeLog?r1=1.16&r2=1.17
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-text/libodfgen/ChangeLog,v
20 retrieving revision 1.16
21 retrieving revision 1.17
22 diff -u -r1.16 -r1.17
23 --- ChangeLog 30 Dec 2014 15:07:14 -0000 1.16
24 +++ ChangeLog 4 Feb 2015 09:20:50 -0000 1.17
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-text/libodfgen
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-text/libodfgen/ChangeLog,v 1.16 2014/12/30 15:07:14 dilfridge Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-text/libodfgen/ChangeLog,v 1.17 2015/02/04 09:20:50 mgorny Exp $
31 +
32 +*libodfgen-0.1.3 (04 Feb 2015)
33 +
34 + 04 Feb 2015; Michał Górny <mgorny@g.o> +libodfgen-0.1.3.ebuild:
35 + Version bump. Bug #538754.
36
37 30 Dec 2014; Andreas K. Huettel <dilfridge@g.o>
38 libodfgen-0.0.4.ebuild:
39
40
41
42 1.1 app-text/libodfgen/libodfgen-0.1.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libodfgen/libodfgen-0.1.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libodfgen/libodfgen-0.1.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libodfgen-0.1.3.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-text/libodfgen/libodfgen-0.1.3.ebuild,v 1.1 2015/02/04 09:20:50 mgorny Exp $
52
53 EAPI=5
54
55 inherit eutils
56
57 DESCRIPTION="Library to generate ODF documents from libwpd and libwpg"
58 HOMEPAGE="http://libwpd.sf.net"
59 SRC_URI="mirror://sourceforge/libwpd/${P}.tar.xz"
60
61 # git://git.code.sf.net/p/libwpd/libodfgen
62
63 LICENSE="|| ( LGPL-2.1 MPL-2.0 )"
64 SLOT="0"
65 KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
66 IUSE="doc"
67
68 RDEPEND="
69 dev-libs/librevenge
70 "
71 DEPEND="${RDEPEND}
72 >=dev-libs/boost-1.46
73 virtual/pkgconfig
74 doc? ( app-doc/doxygen )
75 "
76
77 src_configure() {
78 econf \
79 --disable-static \
80 --disable-werror \
81 --with-sharedptr=boost \
82 --docdir="${EPREFIX}"/usr/share/doc/${PF} \
83 $(use_with doc docs)
84 }
85
86 src_install() {
87 default
88 prune_libtool_files --all
89 }