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.15.ebuild ChangeLog
Date: Thu, 01 Mar 2012 20:17:03
Message-Id: 20120301201654.543B52004B@flycatcher.gentoo.org
1 scarabeus 12/03/01 20:16:54
2
3 Modified: ChangeLog
4 Added: libvisio-0.0.15.ebuild
5 Log:
6 Version bump to latest.
7
8 (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.22 media-libs/libvisio/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/ChangeLog?rev=1.22&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/ChangeLog?rev=1.22&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/ChangeLog?r1=1.21&r2=1.22
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/libvisio/ChangeLog,v
20 retrieving revision 1.21
21 retrieving revision 1.22
22 diff -u -r1.21 -r1.22
23 --- ChangeLog 18 Feb 2012 16:28:59 -0000 1.21
24 +++ ChangeLog 1 Mar 2012 20:16:54 -0000 1.22
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.21 2012/02/18 16:28:59 scarabeus Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libvisio/ChangeLog,v 1.22 2012/03/01 20:16:54 scarabeus Exp $
30 +
31 +*libvisio-0.0.15 (01 Mar 2012)
32 +
33 + 01 Mar 2012; Tomáš Chvátal <scarabeus@g.o> +libvisio-0.0.15.ebuild:
34 + Version bump to latest.
35
36 *libvisio-0.0.14-r1 (18 Feb 2012)
37
38
39
40
41 1.1 media-libs/libvisio/libvisio-0.0.15.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/libvisio-0.0.15.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/libvisio-0.0.15.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libvisio-0.0.15.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.15.ebuild,v 1.1 2012/03/01 20:16:54 scarabeus Exp $
51
52 EAPI=4
53
54 EGIT_REPO_URI="git://anongit.freedesktop.org/git/libreoffice/contrib/libvisio/"
55 [[ ${PV} == 9999 ]] && vcs="autotools git-2"
56 inherit base ${vcs}
57 unset vcs
58
59 DESCRIPTION="Library parsing the visio documents"
60 HOMEPAGE="http://www.freedesktop.org/wiki/Software/libvisio"
61 [[ ${PV} == 9999 ]] || SRC_URI="http://dev-www.libreoffice.org/src/${P}.tar.xz"
62
63 LICENSE="LGPL-2.1"
64 SLOT="0"
65 [[ ${PV} == 9999 ]] || KEYWORDS="~amd64 ~ppc ~x86"
66 IUSE="doc static-libs"
67
68 RDEPEND="
69 app-text/libwpd:0.9
70 app-text/libwpg:0.2
71 "
72 DEPEND="${RDEPEND}
73 >=dev-libs/boost-1.46
74 dev-util/pkgconfig
75 sys-devel/libtool
76 doc? ( app-doc/doxygen )
77 "
78
79 src_prepare() {
80 [[ -d m4 ]] || mkdir "m4"
81 base_src_prepare
82 [[ ${PV} == 9999 ]] && eautoreconf
83 }
84
85 src_configure() {
86 econf \
87 --docdir="${EPREFIX}/usr/share/doc/${PF}" \
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 }