Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libexplain: ChangeLog libexplain-1.1.ebuild
Date: Thu, 31 Jan 2013 13:28:54
Message-Id: 20130131132851.6B8CF2171D@flycatcher.gentoo.org
1 jlec 13/01/31 13:28:51
2
3 Modified: ChangeLog libexplain-1.1.ebuild
4 Log:
5 dev-libs/libexplain: Handle docs correctly
6
7 (Portage version: 2.2.0_alpha161/cvs/Linux x86_64, signed Manifest commit with key 70EB7916)
8
9 Revision Changes Path
10 1.24 dev-libs/libexplain/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libexplain/ChangeLog?rev=1.24&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libexplain/ChangeLog?rev=1.24&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libexplain/ChangeLog?r1=1.23&r2=1.24
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libexplain/ChangeLog,v
19 retrieving revision 1.23
20 retrieving revision 1.24
21 diff -u -r1.23 -r1.24
22 --- ChangeLog 31 Jan 2013 13:16:20 -0000 1.23
23 +++ ChangeLog 31 Jan 2013 13:28:51 -0000 1.24
24 @@ -1,6 +1,9 @@
25 # ChangeLog for dev-libs/libexplain
26 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libexplain/ChangeLog,v 1.23 2013/01/31 13:16:20 jlec Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libexplain/ChangeLog,v 1.24 2013/01/31 13:28:51 jlec Exp $
29 +
30 + 31 Jan 2013; Justin Lecher <jlec@g.o> libexplain-1.1.ebuild:
31 + Handle docs correctly
32
33 31 Jan 2013; Justin Lecher <jlec@g.o> libexplain-0.52.ebuild,
34 libexplain-1.0.ebuild, libexplain-1.1.ebuild:
35
36
37
38 1.3 dev-libs/libexplain/libexplain-1.1.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libexplain/libexplain-1.1.ebuild?rev=1.3&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libexplain/libexplain-1.1.ebuild?rev=1.3&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libexplain/libexplain-1.1.ebuild?r1=1.2&r2=1.3
43
44 Index: libexplain-1.1.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libexplain/libexplain-1.1.ebuild,v
47 retrieving revision 1.2
48 retrieving revision 1.3
49 diff -u -r1.2 -r1.3
50 --- libexplain-1.1.ebuild 31 Jan 2013 13:16:20 -0000 1.2
51 +++ libexplain-1.1.ebuild 31 Jan 2013 13:28:51 -0000 1.3
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2013 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libexplain/libexplain-1.1.ebuild,v 1.2 2013/01/31 13:16:20 jlec Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libexplain/libexplain-1.1.ebuild,v 1.3 2013/01/31 13:28:51 jlec Exp $
57
58 EAPI=5
59
60 @@ -18,7 +18,7 @@
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
63 LICENSE="GPL-3 LGPL-3"
64 -IUSE="static-libs"
65 +IUSE="doc static-libs"
66
67 RDEPEND="
68 sys-libs/libcap
69 @@ -26,7 +26,11 @@
70 sys-process/lsof"
71 DEPEND="${RDEPEND}
72 >=sys-kernel/linux-headers-2.6.35
73 - app-text/ghostscript-gpl"
74 + doc? (
75 + app-text/ghostscript-gpl
76 + sys-apps/groff
77 + )
78 +"
79
80 S=${WORKDIR}/${MY_P}
81
82 @@ -49,3 +53,8 @@
83
84 autotools-utils_src_prepare
85 }
86 +
87 +src_compile() {
88 + autotools-utils_src_compile
89 + use doc && autotools-utils_src_compile all-doc
90 +}