Gentoo Archives: gentoo-commits

From: "Patrick Kursawe (phosphan)" <phosphan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/sane-backends: ChangeLog sane-backends-1.0.23.ebuild
Date: Fri, 01 Feb 2013 12:07:10
Message-Id: 20130201120707.8EB662171D@flycatcher.gentoo.org
1 phosphan 13/02/01 12:07:07
2
3 Modified: ChangeLog sane-backends-1.0.23.ebuild
4 Log:
5 Bug #451822: If threads is not in USE, default-disable backends that require them.
6
7 (Portage version: 2.1.11.50/cvs/Linux i686, signed Manifest commit with key EECC9A5C)
8
9 Revision Changes Path
10 1.220 media-gfx/sane-backends/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/sane-backends/ChangeLog?rev=1.220&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/sane-backends/ChangeLog?rev=1.220&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/sane-backends/ChangeLog?r1=1.219&r2=1.220
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-gfx/sane-backends/ChangeLog,v
19 retrieving revision 1.219
20 retrieving revision 1.220
21 diff -u -r1.219 -r1.220
22 --- ChangeLog 22 Jan 2013 20:04:33 -0000 1.219
23 +++ ChangeLog 1 Feb 2013 12:07:07 -0000 1.220
24 @@ -1,6 +1,10 @@
25 # ChangeLog for media-gfx/sane-backends
26 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/sane-backends/ChangeLog,v 1.219 2013/01/22 20:04:33 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/sane-backends/ChangeLog,v 1.220 2013/02/01 12:07:07 phosphan Exp $
29 +
30 + 01 Feb 2013; Patrick Kursawe <phosphan@g.o> sane-backends-1.0.23.ebuild:
31 + Bug #451822: If "threads" is not in USE, default-disable backends that
32 + require them.
33
34 22 Jan 2013; Jeroen Roovers <jer@g.o> sane-backends-1.0.23.ebuild:
35 Stable for HPPA (bug #448008).
36
37
38
39 1.14 media-gfx/sane-backends/sane-backends-1.0.23.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/sane-backends/sane-backends-1.0.23.ebuild?rev=1.14&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/sane-backends/sane-backends-1.0.23.ebuild?rev=1.14&content-type=text/plain
43 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/sane-backends/sane-backends-1.0.23.ebuild?r1=1.13&r2=1.14
44
45 Index: sane-backends-1.0.23.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/media-gfx/sane-backends/sane-backends-1.0.23.ebuild,v
48 retrieving revision 1.13
49 retrieving revision 1.14
50 diff -u -r1.13 -r1.14
51 --- sane-backends-1.0.23.ebuild 22 Jan 2013 20:04:33 -0000 1.13
52 +++ sane-backends-1.0.23.ebuild 1 Feb 2013 12:07:07 -0000 1.14
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2013 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/sane-backends/sane-backends-1.0.23.ebuild,v 1.13 2013/01/22 20:04:33 jer Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/sane-backends/sane-backends-1.0.23.ebuild,v 1.14 2013/02/01 12:07:07 phosphan Exp $
58
59 EAPI="4"
60
61 @@ -96,9 +96,18 @@
62
63 IUSE="avahi doc gphoto2 ipv6 threads usb v4l xinetd"
64
65 +mySign=""
66 +
67 for backend in ${IUSE_SANE_BACKENDS}; do
68 if [ ${backend} = pnm ]; then
69 IUSE="${IUSE} -sane_backends_pnm"
70 + elif [ ${backend} = mustek_usb2 -o ${backend} = kvs40xx ]; then
71 + if use threads; then
72 + mySign="+"
73 + else
74 + mySign="-"
75 + fi
76 + IUSE="${IUSE} ${mySign}sane_backends_${backend}"
77 else
78 IUSE="${IUSE} +sane_backends_${backend}"
79 fi