Gentoo Archives: gentoo-commits

From: "Peter Volkov (pva)" <pva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/libieee1284: libieee1284-0.2.11-r1.ebuild ChangeLog
Date: Wed, 02 Jun 2010 06:02:56
Message-Id: 20100602060249.4A2EA2CE14@corvid.gentoo.org
1 pva 10/06/02 06:02:48
2
3 Modified: ChangeLog
4 Added: libieee1284-0.2.11-r1.ebuild
5 Log:
6 Improve python handling and make python bindings USE configurable, fixes bug #301666, thank Oschtan and Alex 12th Voronkov for report.
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.23 sys-libs/libieee1284/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libieee1284/ChangeLog?rev=1.23&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libieee1284/ChangeLog?rev=1.23&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libieee1284/ChangeLog?r1=1.22&r2=1.23
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-libs/libieee1284/ChangeLog,v
19 retrieving revision 1.22
20 retrieving revision 1.23
21 diff -u -r1.22 -r1.23
22 --- ChangeLog 1 Jul 2009 10:00:29 -0000 1.22
23 +++ ChangeLog 2 Jun 2010 06:02:48 -0000 1.23
24 @@ -1,6 +1,12 @@
25 # ChangeLog for sys-libs/libieee1284
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libieee1284/ChangeLog,v 1.22 2009/07/01 10:00:29 aballier Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libieee1284/ChangeLog,v 1.23 2010/06/02 06:02:48 pva Exp $
30 +
31 +*libieee1284-0.2.11-r1 (02 Jun 2010)
32 +
33 + 02 Jun 2010; Peter Volkov <pva@g.o> +libieee1284-0.2.11-r1.ebuild:
34 + Improve python handling and make python bindings USE configurable, fixes
35 + bug #301666, thank Oschtan and Alex 12th Voronkov for report.
36
37 01 Jul 2009; Alexis Ballier <aballier@g.o>
38 libieee1284-0.2.11.ebuild:
39
40
41
42 1.1 sys-libs/libieee1284/libieee1284-0.2.11-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libieee1284/libieee1284-0.2.11-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/libieee1284/libieee1284-0.2.11-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libieee1284-0.2.11-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sys-libs/libieee1284/libieee1284-0.2.11-r1.ebuild,v 1.1 2010/06/02 06:02:48 pva Exp $
52
53 EAPI="3"
54
55 PYTHON_DEPEND="python? 2"
56 inherit python
57
58 DESCRIPTION="Library to query devices using IEEE1284"
59 HOMEPAGE="http://cyberelk.net/tim/libieee1284/index.html"
60 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
65 IUSE="doc python"
66
67 RDEPEND=""
68 DEPEND="${RDEPEND}
69 doc? (
70 app-text/docbook-sgml-utils
71 >=app-text/docbook-sgml-dtd-4.1
72 app-text/docbook-dsssl-stylesheets
73 dev-perl/XML-RegExp
74 )"
75
76 pkg_setup() {
77 python_set_active_version 2
78 }
79
80 src_configure() {
81 econf \
82 $(use_with python) \
83 --disable-dependency-tracking
84 }
85
86 src_install () {
87 emake DESTDIR="${ED}" install || die "emake install failed"
88 dodoc AUTHORS NEWS README* TODO doc/interface* || die
89 }