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-9999.ebuild ChangeLog
Date: Wed, 30 Jul 2014 22:33:12
Message-Id: 20140730223309.BFC6F2004E@flycatcher.gentoo.org
1 xmw 14/07/30 22:33:09
2
3 Modified: ChangeLog
4 Added: libXcm-9999.ebuild
5 Log:
6 Add live ebuild (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.19 media-libs/libXcm/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libXcm/ChangeLog?rev=1.19&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libXcm/ChangeLog?rev=1.19&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libXcm/ChangeLog?r1=1.18&r2=1.19
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/libXcm/ChangeLog,v
20 retrieving revision 1.18
21 retrieving revision 1.19
22 diff -u -r1.18 -r1.19
23 --- ChangeLog 30 Jul 2014 22:29:44 -0000 1.18
24 +++ ChangeLog 30 Jul 2014 22:33:09 -0000 1.19
25 @@ -1,6 +1,11 @@
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.18 2014/07/30 22:29:44 xmw Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libXcm/ChangeLog,v 1.19 2014/07/30 22:33:09 xmw Exp $
30 +
31 +*libXcm-9999 (30 Jul 2014)
32 +
33 + 30 Jul 2014; Michael Weber <xmw@g.o> +libXcm-9999.ebuild:
34 + Add live ebuild (bug 503798)
35
36 *libXcm-0.5.3 (30 Jul 2014)
37
38
39
40
41 1.1 media-libs/libXcm/libXcm-9999.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libXcm/libXcm-9999.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libXcm/libXcm-9999.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libXcm-9999.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/libXcm/libXcm-9999.ebuild,v 1.1 2014/07/30 22:33:09 xmw Exp $
51
52 EAPI=5
53
54 inherit autotools-multilib git-2
55
56 DESCRIPTION="reference implementation of the net-color spec"
57 HOMEPAGE="http://www.oyranos.org/libxcm/"
58 EGIT_REPO_URI="git://www.oyranos.org/git/xcolor"
59
60 LICENSE="MIT"
61 SLOT="0"
62 KEYWORDS=""
63 IUSE="X doc static-libs"
64
65 RDEPEND="X? ( >=x11-libs/libXmu-1.1.1-r1[${MULTILIB_USEDEP}]
66 >=x11-libs/libXfixes-5.0.1[${MULTILIB_USEDEP}]
67 >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
68 >=x11-proto/xproto-7.0.24[${MULTILIB_USEDEP}] )"
69 DEPEND="${RDEPEND}
70 doc? ( app-doc/doxygen )"
71
72 src_configure() {
73 local myeconfargs=(
74 --disable-silent-rules
75 $(use_with X x11)
76 $(use_enable static-libs static)
77 )
78 autotools-multilib_src_configure
79 }
80
81 src_compile() {
82 autotools-multilib_src_compile
83 use doc && doxygen
84 }
85
86 src_install() {
87 autotools-multilib_src_install
88 use doc && dohtml doc/html/*
89 }