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