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/libmwaw: libmwaw-0.3.4.ebuild ChangeLog
Date: Wed, 04 Feb 2015 08:39:44
Message-Id: 20150204083939.C27E811058@oystercatcher.gentoo.org
1 mgorny 15/02/04 08:39:39
2
3 Modified: ChangeLog
4 Added: libmwaw-0.3.4.ebuild
5 Log:
6 Version bump. Bug #538188.
7
8 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
9
10 Revision Changes Path
11 1.15 app-text/libmwaw/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libmwaw/ChangeLog?rev=1.15&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libmwaw/ChangeLog?rev=1.15&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libmwaw/ChangeLog?r1=1.14&r2=1.15
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-text/libmwaw/ChangeLog,v
20 retrieving revision 1.14
21 retrieving revision 1.15
22 diff -u -r1.14 -r1.15
23 --- ChangeLog 10 Oct 2014 20:17:48 -0000 1.14
24 +++ ChangeLog 4 Feb 2015 08:39:39 -0000 1.15
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-text/libmwaw
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-text/libmwaw/ChangeLog,v 1.14 2014/10/10 20:17:48 maekke Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-text/libmwaw/ChangeLog,v 1.15 2015/02/04 08:39:39 mgorny Exp $
31 +
32 +*libmwaw-0.3.4 (04 Feb 2015)
33 +
34 + 04 Feb 2015; Michał Górny <mgorny@g.o> +libmwaw-0.3.4.ebuild:
35 + Version bump. Bug #538188.
36
37 10 Oct 2014; Markus Meier <maekke@g.o> libmwaw-0.3.1.ebuild:
38 add ~arm, bug #520692
39
40
41
42 1.1 app-text/libmwaw/libmwaw-0.3.4.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libmwaw/libmwaw-0.3.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libmwaw/libmwaw-0.3.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libmwaw-0.3.4.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/libmwaw/libmwaw-0.3.4.ebuild,v 1.1 2015/02/04 08:39:39 mgorny Exp $
52
53 EAPI=5
54
55 inherit base eutils
56
57 DESCRIPTION="Library parsing many pre-OSX MAC text formats"
58 HOMEPAGE="http://sourceforge.net/p/libmwaw/wiki/Home/"
59 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
60
61 LICENSE="LGPL-2.1"
62 SLOT="0"
63 KEYWORDS="~amd64 ~arm ~x86"
64 IUSE="doc static-libs"
65
66 RDEPEND="
67 dev-libs/librevenge
68 dev-libs/libxml2
69 sys-libs/zlib
70 "
71 DEPEND="${RDEPEND}
72 >=dev-libs/boost-1.46:=
73 sys-devel/libtool
74 virtual/pkgconfig
75 doc? ( app-doc/doxygen )
76 "
77
78 src_configure() {
79 # zip is hard enabled as the zlib is dep on the rdeps anyway
80 econf \
81 --docdir="${EPREFIX}/usr/share/doc/${PF}" \
82 --with-sharedptr=boost \
83 --enable-zip \
84 --disable-werror \
85 $(use_enable static-libs static) \
86 $(use_with doc docs)
87 }
88
89 src_install() {
90 default
91 prune_libtool_files --all
92 }