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