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.8.ebuild libvisio-0.0.7.ebuild
Date: Tue, 04 Oct 2011 14:58:46
Message-Id: 20111004145819.3AB252004B@flycatcher.gentoo.org
1 scarabeus 11/10/04 14:58:19
2
3 Modified: ChangeLog
4 Added: libvisio-0.0.8.ebuild
5 Removed: libvisio-0.0.7.ebuild
6 Log:
7 Version bump to the latest, drop older.
8
9 (Portage version: 2.2.0_alpha60/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.7 media-libs/libvisio/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/ChangeLog?rev=1.7&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/ChangeLog?rev=1.7&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/ChangeLog?r1=1.6&r2=1.7
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/media-libs/libvisio/ChangeLog,v
21 retrieving revision 1.6
22 retrieving revision 1.7
23 diff -u -r1.6 -r1.7
24 --- ChangeLog 13 Sep 2011 14:51:51 -0000 1.6
25 +++ ChangeLog 4 Oct 2011 14:58:19 -0000 1.7
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.6 2011/09/13 14:51:51 scarabeus Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libvisio/ChangeLog,v 1.7 2011/10/04 14:58:19 scarabeus Exp $
31 +
32 +*libvisio-0.0.8 (04 Oct 2011)
33 +
34 + 04 Oct 2011; Tomáš Chvátal <scarabeus@g.o> -libvisio-0.0.7.ebuild,
35 + +libvisio-0.0.8.ebuild:
36 + Version bump to the latest, drop older.
37
38 *libvisio-0.0.7 (13 Sep 2011)
39
40
41
42
43 1.1 media-libs/libvisio/libvisio-0.0.8.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/libvisio-0.0.8.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/libvisio-0.0.8.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libvisio-0.0.8.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.8.ebuild,v 1.1 2011/10/04 14:58:19 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 }