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.29.ebuild ChangeLog
Date: Tue, 02 Jul 2013 14:12:46
Message-Id: 20130702141242.48CED2171C@flycatcher.gentoo.org
1 scarabeus 13/07/02 14:12:42
2
3 Modified: ChangeLog
4 Added: libvisio-0.0.29.ebuild
5 Log:
6 Version bump to latest.
7
8 (Portage version: 2.2.0_alpha186/cvs/Linux x86_64, signed Manifest commit with key 8EEE3BE8)
9
10 Revision Changes Path
11 1.54 media-libs/libvisio/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/ChangeLog?rev=1.54&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/ChangeLog?rev=1.54&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/ChangeLog?r1=1.53&r2=1.54
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/libvisio/ChangeLog,v
20 retrieving revision 1.53
21 retrieving revision 1.54
22 diff -u -r1.53 -r1.54
23 --- ChangeLog 21 Jun 2013 12:23:00 -0000 1.53
24 +++ ChangeLog 2 Jul 2013 14:12:42 -0000 1.54
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-libs/libvisio
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libvisio/ChangeLog,v 1.53 2013/06/21 12:23:00 scarabeus Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libvisio/ChangeLog,v 1.54 2013/07/02 14:12:42 scarabeus Exp $
30 +
31 +*libvisio-0.0.29 (02 Jul 2013)
32 +
33 + 02 Jul 2013; Tomáš Chvátal <scarabeus@g.o> +libvisio-0.0.29.ebuild:
34 + Version bump to latest.
35
36 21 Jun 2013; Tomáš Chvátal <scarabeus@g.o> -libvisio-0.0.26.ebuild:
37 Remove older.
38
39
40
41 1.1 media-libs/libvisio/libvisio-0.0.29.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/libvisio-0.0.29.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/libvisio-0.0.29.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libvisio-0.0.29.ebuild
47 ===================================================================
48 # Copyright 1999-2013 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.29.ebuild,v 1.1 2013/07/02 14:12:42 scarabeus Exp $
51
52 EAPI=5
53
54 EGIT_REPO_URI="git://anongit.freedesktop.org/git/libreoffice/contrib/libvisio/"
55 inherit base eutils
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="|| ( GPL-2+ LGPL-2.1 MPL-1.1 )"
63 SLOT="0"
64 [[ ${PV} == 9999 ]] || \
65 KEYWORDS="~amd64 ~arm ~ppc ~x86"
66 IUSE="doc static-libs"
67
68 RDEPEND="
69 app-text/libwpd:0.9
70 app-text/libwpg:0.2
71 dev-libs/icu:=
72 dev-libs/libxml2
73 sys-libs/zlib
74 "
75 DEPEND="${RDEPEND}
76 >=dev-libs/boost-1.46
77 dev-util/gperf
78 sys-devel/libtool
79 virtual/pkgconfig
80 doc? ( app-doc/doxygen )
81 "
82
83 src_prepare() {
84 [[ -d m4 ]] || mkdir "m4"
85 base_src_prepare
86 [[ ${PV} == 9999 ]] && eautoreconf
87 }
88
89 src_configure() {
90 econf \
91 --docdir="${EPREFIX}/usr/share/doc/${PF}" \
92 $(use_enable static-libs static) \
93 --disable-werror \
94 $(use_with doc docs)
95 }
96
97 src_install() {
98 default
99 prune_libtool_files --all
100 }