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/libmspub: metadata.xml libmspub-9999.ebuild ChangeLog
Date: Thu, 07 Jun 2012 11:41:30
Message-Id: 20120607114117.CD4C12004B@flycatcher.gentoo.org
1 scarabeus 12/06/07 11:41:17
2
3 Added: metadata.xml libmspub-9999.ebuild ChangeLog
4 Log:
5 Initial commit, live ebuild for now. Required by trunk libreoffice. Fixes bug#419967.
6
7 (Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 app-text/libmspub/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libmspub/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libmspub/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>openoffice</herd>
21 </pkgmetadata>
22
23
24
25 1.1 app-text/libmspub/libmspub-9999.ebuild
26
27 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libmspub/libmspub-9999.ebuild?rev=1.1&view=markup
28 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libmspub/libmspub-9999.ebuild?rev=1.1&content-type=text/plain
29
30 Index: libmspub-9999.ebuild
31 ===================================================================
32 # Copyright 1999-2012 Gentoo Foundation
33 # Distributed under the terms of the GNU General Public License v2
34 # $Header: /var/cvsroot/gentoo-x86/app-text/libmspub/libmspub-9999.ebuild,v 1.1 2012/06/07 11:41:17 scarabeus Exp $
35
36 EAPI=4
37
38 EGIT_REPO_URI="git://anongit.freedesktop.org/git/libreoffice/${PN}/"
39 [[ ${PV} == 9999 ]] && vcs="autotools git-2"
40 inherit base ${vcs}
41 unset vcs
42
43 DESCRIPTION="Library parsing the Microsoft Publisher documents"
44 HOMEPAGE="http://www.freedesktop.org/wiki/Software/libmspub"
45 [[ ${PV} == 9999 ]] || SRC_URI="http://dev-www.libreoffice.org/src/${P}.tar.xz"
46
47 LICENSE="LGPL-2.1"
48 SLOT="0"
49 [[ ${PV} == 9999 ]] || KEYWORDS="~amd64 ~ppc ~x86"
50 IUSE="doc static-libs"
51
52 RDEPEND="
53 app-text/libwpd:0.9
54 app-text/libwpg:0.2
55 sys-libs/zlib
56 "
57 DEPEND="${RDEPEND}
58 virtual/pkgconfig
59 sys-devel/libtool
60 doc? ( app-doc/doxygen )
61 "
62
63 src_prepare() {
64 base_src_prepare
65 [[ -d m4 ]] || mkdir "m4"
66 [[ ${PV} == 9999 ]] && eautoreconf
67 }
68
69 src_configure() {
70 econf \
71 $(use_enable static-libs static) \
72 --disable-werror \
73 $(use_with doc docs)
74 }
75
76 src_install() {
77 default
78 find "${ED}" -name '*.la' -exec rm -f {} +
79 }
80
81
82
83 1.1 app-text/libmspub/ChangeLog
84
85 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libmspub/ChangeLog?rev=1.1&view=markup
86 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libmspub/ChangeLog?rev=1.1&content-type=text/plain
87
88 Index: ChangeLog
89 ===================================================================
90 # ChangeLog for app-text/libmspub
91 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
92 # $Header: /var/cvsroot/gentoo-x86/app-text/libmspub/ChangeLog,v 1.1 2012/06/07 11:41:17 scarabeus Exp $
93
94 *libmspub-9999 (07 Jun 2012)
95
96 07 Jun 2012; Tomáš Chvátal <scarabeus@g.o> +libmspub-9999.ebuild,
97 +metadata.xml:
98 Initial commit, live ebuild for now. Required by trunk libreoffice. Fixes
99 bug#419967.