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.21.ebuild ChangeLog libvisio-0.0.20.ebuild
Date: Wed, 21 Nov 2012 10:06:59
Message-Id: 20121121100647.565D620C65@flycatcher.gentoo.org
1 scarabeus 12/11/21 10:06:47
2
3 Modified: ChangeLog
4 Added: libvisio-0.0.21.ebuild
5 Removed: libvisio-0.0.20.ebuild
6 Log:
7 Version bump to latest.
8
9 (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 8EEE3BE8)
10
11 Revision Changes Path
12 1.39 media-libs/libvisio/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/ChangeLog?rev=1.39&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/ChangeLog?rev=1.39&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/ChangeLog?r1=1.38&r2=1.39
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/media-libs/libvisio/ChangeLog,v
21 retrieving revision 1.38
22 retrieving revision 1.39
23 diff -u -r1.38 -r1.39
24 --- ChangeLog 16 Nov 2012 19:53:54 -0000 1.38
25 +++ ChangeLog 21 Nov 2012 10:06:47 -0000 1.39
26 @@ -1,6 +1,12 @@
27 # ChangeLog for media-libs/libvisio
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libvisio/ChangeLog,v 1.38 2012/11/16 19:53:54 ago Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libvisio/ChangeLog,v 1.39 2012/11/21 10:06:47 scarabeus Exp $
31 +
32 +*libvisio-0.0.21 (21 Nov 2012)
33 +
34 + 21 Nov 2012; Tomáš Chvátal <scarabeus@g.o> +libvisio-0.0.21.ebuild,
35 + -libvisio-0.0.20.ebuild:
36 + Version bump to latest.
37
38 16 Nov 2012; Agostino Sarubbo <ago@g.o> libvisio-0.0.19.ebuild,
39 libvisio-0.0.20.ebuild:
40
41
42
43 1.1 media-libs/libvisio/libvisio-0.0.21.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/libvisio-0.0.21.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvisio/libvisio-0.0.21.ebuild?rev=1.1&content-type=text/plain
47
48 Index: libvisio-0.0.21.ebuild
49 ===================================================================
50 # Copyright 1999-2012 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.21.ebuild,v 1.1 2012/11/21 10:06:47 scarabeus Exp $
53
54 EAPI=4
55
56 EGIT_REPO_URI="git://anongit.freedesktop.org/git/libreoffice/contrib/libvisio/"
57 inherit base autotools
58 [[ ${PV} == 9999 ]] && inherit autotools git-2
59
60 DESCRIPTION="Library parsing the visio documents"
61 HOMEPAGE="http://www.freedesktop.org/wiki/Software/libvisio"
62 [[ ${PV} == 9999 ]] || SRC_URI="http://dev-www.libreoffice.org/src/${P}.tar.xz"
63
64 LICENSE="LGPL-2.1"
65 SLOT="0"
66
67 # Don't move KEYWORDS on the previous line or ekeyword won't work # 399061
68 [[ ${PV} == 9999 ]] || \
69 KEYWORDS="~amd64 ~ppc ~x86"
70
71 IUSE="doc static-libs"
72
73 RDEPEND="
74 app-text/libwpd:0.9
75 app-text/libwpg:0.2
76 dev-libs/libxml2
77 sys-libs/zlib
78 "
79 DEPEND="${RDEPEND}
80 >=dev-libs/boost-1.46
81 virtual/pkgconfig
82 sys-devel/libtool
83 doc? ( app-doc/doxygen )
84 "
85
86 PATCHES=(
87 "${FILESDIR}/${P}-fix-underlinking-with-gold.patch"
88 )
89
90 src_prepare() {
91 [[ -d m4 ]] || mkdir "m4"
92 base_src_prepare
93 eautoreconf
94 }
95
96 src_configure() {
97 econf \
98 --docdir="${EPREFIX}/usr/share/doc/${PF}" \
99 $(use_enable static-libs static) \
100 --disable-werror \
101 $(use_with doc docs)
102 }
103
104 src_install() {
105 default
106 find "${ED}" -name '*.la' -exec rm -f {} +
107 }