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/libmspub: libmspub-0.1.2.ebuild ChangeLog
Date: Wed, 04 Feb 2015 09:04:54
Message-Id: 20150204090451.40E9D11068@oystercatcher.gentoo.org
1 mgorny 15/02/04 09:04:51
2
3 Modified: ChangeLog
4 Added: libmspub-0.1.2.ebuild
5 Log:
6 Version bump. Bug #538748.
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/libmspub/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libmspub/ChangeLog?rev=1.15&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libmspub/ChangeLog?rev=1.15&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libmspub/ChangeLog?r1=1.14&r2=1.15
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-text/libmspub/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:19 -0000 1.14
24 +++ ChangeLog 4 Feb 2015 09:04:51 -0000 1.15
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-text/libmspub
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-text/libmspub/ChangeLog,v 1.14 2014/10/10 20:17:19 maekke Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-text/libmspub/ChangeLog,v 1.15 2015/02/04 09:04:51 mgorny Exp $
31 +
32 +*libmspub-0.1.2 (04 Feb 2015)
33 +
34 + 04 Feb 2015; Michał Górny <mgorny@g.o> +libmspub-0.1.2.ebuild:
35 + Version bump. Bug #538748.
36
37 10 Oct 2014; Markus Meier <maekke@g.o> libmspub-0.1.1.ebuild:
38 add ~arm, bug #520692
39
40
41
42 1.1 app-text/libmspub/libmspub-0.1.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libmspub/libmspub-0.1.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libmspub/libmspub-0.1.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libmspub-0.1.2.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/libmspub/libmspub-0.1.2.ebuild,v 1.1 2015/02/04 09:04:51 mgorny Exp $
52
53 EAPI=5
54
55 EGIT_REPO_URI="git://anongit.freedesktop.org/git/libreoffice/${PN}/"
56 inherit base eutils
57 [[ ${PV} == 9999 ]] && inherit autotools git-2
58
59 DESCRIPTION="Library parsing Microsoft Publisher documents"
60 HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libmspub"
61 [[ ${PV} == 9999 ]] || SRC_URI="http://dev-www.libreoffice.org/src/${PN}/${P}.tar.xz"
62
63 LICENSE="LGPL-2.1"
64 SLOT="0"
65
66 # Don't move KEYWORDS on the previous line or ekeyword won't work # 399061
67 [[ ${PV} == 9999 ]] || \
68 KEYWORDS="~amd64 ~arm ~x86"
69
70 IUSE="doc static-libs"
71
72 RDEPEND="
73 dev-libs/icu:=
74 dev-libs/librevenge
75 sys-libs/zlib
76 "
77 DEPEND="${RDEPEND}
78 virtual/pkgconfig
79 dev-libs/boost
80 sys-devel/libtool
81 doc? ( app-doc/doxygen )
82 "
83
84 src_prepare() {
85 base_src_prepare
86 [[ -d m4 ]] || mkdir "m4"
87 [[ ${PV} == 9999 ]] && eautoreconf
88 }
89
90 src_configure() {
91 econf \
92 --docdir="${EPREFIX}/usr/share/doc/${PF}" \
93 $(use_enable static-libs static) \
94 --disable-werror \
95 $(use_with doc docs)
96 }
97
98 src_install() {
99 default
100 prune_libtool_files --all
101 }