Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libvisio: libvisio-0.0.19.ebuild ChangeLog
Date: Tue, 31 Jul 2012 15:00:36
Message-Id: 20120731150027.185C32004B@flycatcher.gentoo.org
1 scarabeus 12/07/31 15:00:26
2
3 Modified: ChangeLog
4 Added: libvisio-0.0.19.ebuild
5 Log:
6 Version bump to fix crasher.
7
8 (Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.34 media-libs/libvisio/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/ChangeLog?rev=1.34&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/ChangeLog?rev=1.34&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/ChangeLog?r1=1.33&r2=1.34
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/libvisio/ChangeLog,v
20 retrieving revision 1.33
21 retrieving revision 1.34
22 diff -u -r1.33 -r1.34
23 --- ChangeLog 29 Jun 2012 11:56:42 -0000 1.33
24 +++ ChangeLog 31 Jul 2012 15:00:26 -0000 1.34
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-libs/libvisio
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libvisio/ChangeLog,v 1.33 2012/06/29 11:56:42 scarabeus Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libvisio/ChangeLog,v 1.34 2012/07/31 15:00:26 scarabeus Exp $
30 +
31 +*libvisio-0.0.19 (31 Jul 2012)
32 +
33 + 31 Jul 2012; Tomáš Chvátal <scarabeus@g.o> +libvisio-0.0.19.ebuild:
34 + Version bump to fix crasher.
35
36 29 Jun 2012; Tomáš Chvátal <scarabeus@g.o> -libvisio-0.0.17.ebuild,
37 libvisio-0.0.18.ebuild:
38
39
40
41 1.1 media-libs/libvisio/libvisio-0.0.19.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/libvisio-0.0.19.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/libvisio-0.0.19.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libvisio-0.0.19.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/libvisio/libvisio-0.0.19.ebuild,v 1.1 2012/07/31 15:00:26 scarabeus Exp $
51
52 EAPI=4
53
54 EGIT_REPO_URI="git://anongit.freedesktop.org/git/libreoffice/contrib/libvisio/"
55 inherit base
56 [[ ${PV} == 9999 ]] && inherit autotools git-2
57
58 DESCRIPTION="Library parsing the visio documents"
59 HOMEPAGE="http://www.freedesktop.org/wiki/Software/libvisio"
60 [[ ${PV} == 9999 ]] || SRC_URI="http://dev-www.libreoffice.org/src/${P}.tar.xz"
61
62 LICENSE="LGPL-2.1"
63 SLOT="0"
64 [[ ${PV} == 9999 ]] || KEYWORDS="~amd64 ~ppc ~x86"
65 IUSE="doc static-libs"
66
67 RDEPEND="
68 app-text/libwpd:0.9
69 app-text/libwpg:0.2
70 "
71 DEPEND="${RDEPEND}
72 >=dev-libs/boost-1.46
73 virtual/pkgconfig
74 sys-devel/libtool
75 doc? ( app-doc/doxygen )
76 "
77
78 src_prepare() {
79 [[ -d m4 ]] || mkdir "m4"
80 base_src_prepare
81 [[ ${PV} == 9999 ]] && eautoreconf
82 }
83
84 src_configure() {
85 econf \
86 --docdir="${EPREFIX}/usr/share/doc/${PF}" \
87 $(use_enable static-libs static) \
88 --disable-werror \
89 $(use_with doc docs)
90 }
91
92 src_install() {
93 default
94 find "${ED}" -name '*.la' -exec rm -f {} +
95 }