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