Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libvisio: libvisio-0.1.1.ebuild ChangeLog
Date: Wed, 04 Feb 2015 09:15:52
Message-Id: 20150204091548.8F56C11068@oystercatcher.gentoo.org
1 mgorny 15/02/04 09:15:48
2
3 Modified: ChangeLog
4 Added: libvisio-0.1.1.ebuild
5 Log:
6 Version bump. Bug #538298.
7
8 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
9
10 Revision Changes Path
11 1.60 media-libs/libvisio/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/ChangeLog?rev=1.60&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/ChangeLog?rev=1.60&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/ChangeLog?r1=1.59&r2=1.60
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/libvisio/ChangeLog,v
20 retrieving revision 1.59
21 retrieving revision 1.60
22 diff -u -r1.59 -r1.60
23 --- ChangeLog 2 Feb 2015 14:46:18 -0000 1.59
24 +++ ChangeLog 4 Feb 2015 09:15:48 -0000 1.60
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-libs/libvisio
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libvisio/ChangeLog,v 1.59 2015/02/02 14:46:18 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libvisio/ChangeLog,v 1.60 2015/02/04 09:15:48 mgorny Exp $
30 +
31 +*libvisio-0.1.1 (04 Feb 2015)
32 +
33 + 04 Feb 2015; Michał Górny <mgorny@g.o> +libvisio-0.1.1.ebuild:
34 + Version bump. Bug #538298.
35
36 02 Feb 2015; Jeroen Roovers <jer@g.o> libvisio-0.1.0.ebuild:
37 Marked ~hppa (bug #538520).
38
39
40
41 1.1 media-libs/libvisio/libvisio-0.1.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/libvisio-0.1.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/libvisio-0.1.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libvisio-0.1.1.ebuild
47 ===================================================================
48 # Copyright 1999-2015 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.1.1.ebuild,v 1.1 2015/02/04 09:15:48 mgorny Exp $
51
52 EAPI=5
53
54 EGIT_REPO_URI="git://anongit.freedesktop.org/git/libreoffice/libvisio/"
55 inherit base eutils
56 [[ ${PV} == 9999 ]] && inherit autotools git-2
57
58 DESCRIPTION="Library parsing the visio documents"
59 HOMEPAGE="https://wiki.documentfoundation.org/DLP/Libraries/libvisio"
60 [[ ${PV} == 9999 ]] || SRC_URI="http://dev-www.libreoffice.org/src/${PN}/${P}.tar.xz"
61
62 LICENSE="|| ( GPL-2+ LGPL-2.1 MPL-1.1 )"
63 SLOT="0"
64 [[ ${PV} == 9999 ]] || \
65 KEYWORDS="~amd64 ~arm ~hppa ~x86"
66 IUSE="doc static-libs test"
67
68 RDEPEND="
69 dev-libs/icu:=
70 dev-libs/librevenge
71 dev-libs/libxml2
72 sys-libs/zlib
73 "
74 DEPEND="${RDEPEND}
75 >=dev-libs/boost-1.46
76 dev-util/gperf
77 sys-devel/libtool
78 virtual/pkgconfig
79 doc? ( app-doc/doxygen )
80 test? ( dev-util/cppunit )
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 $(use_enable test tests)
96 }
97
98 src_install() {
99 default
100 prune_libtool_files --all
101 }