Gentoo Archives: gentoo-commits

From: "Michael Weber (xmw)" <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libXcm: libXcm-0.5.3.ebuild ChangeLog
Date: Wed, 30 Jul 2014 22:29:52
Message-Id: 20140730222945.C84B42004F@flycatcher.gentoo.org
1 xmw 14/07/30 22:29:44
2
3 Modified: ChangeLog
4 Added: libXcm-0.5.3.ebuild
5 Log:
6 Version bump (bug 503798)
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 62EEF090)
9
10 Revision Changes Path
11 1.18 media-libs/libXcm/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libXcm/ChangeLog?rev=1.18&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libXcm/ChangeLog?rev=1.18&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libXcm/ChangeLog?r1=1.17&r2=1.18
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/libXcm/ChangeLog,v
20 retrieving revision 1.17
21 retrieving revision 1.18
22 diff -u -r1.17 -r1.18
23 --- ChangeLog 18 Jun 2014 19:50:34 -0000 1.17
24 +++ ChangeLog 30 Jul 2014 22:29:44 -0000 1.18
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-libs/libXcm
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libXcm/ChangeLog,v 1.17 2014/06/18 19:50:34 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libXcm/ChangeLog,v 1.18 2014/07/30 22:29:44 xmw Exp $
30 +
31 +*libXcm-0.5.3 (30 Jul 2014)
32 +
33 + 30 Jul 2014; Michael Weber <xmw@g.o> +libXcm-0.5.3.ebuild,
34 + -files/libXcm-0.5.0-buildsystem.patch:
35 + Version bump (bug 503798)
36
37 18 Jun 2014; Michał Górny <mgorny@g.o> libXcm-0.5.2-r1.ebuild:
38 Update dependencies to require guaranteed EAPI=5 or multilib ebuilds, bug
39
40
41
42 1.1 media-libs/libXcm/libXcm-0.5.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libXcm/libXcm-0.5.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libXcm/libXcm-0.5.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libXcm-0.5.3.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-libs/libXcm/libXcm-0.5.3.ebuild,v 1.1 2014/07/30 22:29:44 xmw Exp $
52
53 EAPI=5
54
55 inherit autotools-multilib
56
57 DESCRIPTION="reference implementation of the net-color spec"
58 HOMEPAGE="http://www.oyranos.org/libxcm/"
59 SRC_URI="mirror://sourceforge/oyranos/${PN}/${PN}-0.4.x/${P}.tar.bz2"
60
61 LICENSE="MIT"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~x86"
64 IUSE="X doc static-libs"
65
66 RDEPEND="X? ( >=x11-libs/libXmu-1.1.1-r1[${MULTILIB_USEDEP}]
67 >=x11-libs/libXfixes-5.0.1[${MULTILIB_USEDEP}]
68 >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
69 >=x11-proto/xproto-7.0.24[${MULTILIB_USEDEP}] )"
70 DEPEND="${RDEPEND}
71 doc? ( app-doc/doxygen )"
72
73 src_configure() {
74 local myeconfargs=(
75 --disable-silent-rules
76 $(use_with X x11)
77 $(use_enable static-libs static)
78 )
79 autotools-multilib_src_configure
80 }
81
82 src_compile() {
83 autotools-multilib_src_compile
84 use doc && doxygen
85 }
86
87 src_install() {
88 autotools-multilib_src_install
89 use doc && dohtml doc/html/*
90 }