Gentoo Archives: gentoo-commits

From: "Christoph Junghans (ottxor)" <ottxor@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/xsane: xsane-0.998-r1.ebuild ChangeLog
Date: Wed, 22 Aug 2012 02:24:20
Message-Id: 20120822022410.F3A7E202C4@flycatcher.gentoo.org
1 ottxor 12/08/22 02:24:10
2
3 Modified: xsane-0.998-r1.ebuild ChangeLog
4 Log:
5 added prefix keywords
6
7 (Portage version: 2.2.0_alpha121/cvs/Linux i686)
8
9 Revision Changes Path
10 1.3 media-gfx/xsane/xsane-0.998-r1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/xsane/xsane-0.998-r1.ebuild?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/xsane/xsane-0.998-r1.ebuild?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/xsane/xsane-0.998-r1.ebuild?r1=1.2&r2=1.3
15
16 Index: xsane-0.998-r1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-gfx/xsane/xsane-0.998-r1.ebuild,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- xsane-0.998-r1.ebuild 5 May 2012 07:00:20 -0000 1.2
23 +++ xsane-0.998-r1.ebuild 22 Aug 2012 02:24:10 -0000 1.3
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2012 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/xsane/xsane-0.998-r1.ebuild,v 1.2 2012/05/05 07:00:20 jdhore Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/xsane/xsane-0.998-r1.ebuild,v 1.3 2012/08/22 02:24:10 ottxor Exp $
29
30 EAPI="4"
31
32 @@ -13,7 +13,7 @@
33
34 LICENSE="GPL-2"
35 SLOT="0"
36 -KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
37 +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
38 IUSE="nls jpeg png tiff gimp lcms ocr"
39
40 RDEPEND="media-gfx/sane-backends
41 @@ -50,7 +50,7 @@
42 src_configure() {
43 local extraCPPflags
44 if use lcms; then
45 - extraCPPflags="-I /usr/include/lcms"
46 + extraCPPflags="-I ${EPREFIX}/usr/include/lcms"
47 fi
48 CPPFLAGS="${CPPFLAGS} ${extraCPPflags}" econf --enable-gtk2 \
49 $(use_enable nls) \
50 @@ -68,15 +68,15 @@
51 # link xsane so it is seen as a plugin in gimp
52 if use gimp; then
53 local plugindir
54 - if [ -x /usr/bin/gimptool ]; then
55 + if [ -x "${EPREFIX}"/usr/bin/gimptool ]; then
56 plugindir="$(gimptool --gimpplugindir)/plug-ins"
57 - elif [ -x /usr/bin/gimptool-2.0 ]; then
58 + elif [ -x "${EPREFIX}"/usr/bin/gimptool-2.0 ]; then
59 plugindir="$(gimptool-2.0 --gimpplugindir)/plug-ins"
60 else
61 die "Can't find GIMP plugin directory."
62 fi
63 - dodir "${plugindir}"
64 - dosym /usr/bin/xsane "${plugindir}"
65 + dodir "${plugindir#${EPREFIX}}"
66 + dosym /usr/bin/xsane "${plugindir#${EPREFIX}}"
67 fi
68
69 newicon src/xsane-48x48.png ${PN}.png
70
71
72
73 1.96 media-gfx/xsane/ChangeLog
74
75 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/xsane/ChangeLog?rev=1.96&view=markup
76 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/xsane/ChangeLog?rev=1.96&content-type=text/plain
77 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/xsane/ChangeLog?r1=1.95&r2=1.96
78
79 Index: ChangeLog
80 ===================================================================
81 RCS file: /var/cvsroot/gentoo-x86/media-gfx/xsane/ChangeLog,v
82 retrieving revision 1.95
83 retrieving revision 1.96
84 diff -u -r1.95 -r1.96
85 --- ChangeLog 5 May 2012 07:00:20 -0000 1.95
86 +++ ChangeLog 22 Aug 2012 02:24:10 -0000 1.96
87 @@ -1,6 +1,9 @@
88 # ChangeLog for media-gfx/xsane
89 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
90 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/xsane/ChangeLog,v 1.95 2012/05/05 07:00:20 jdhore Exp $
91 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/xsane/ChangeLog,v 1.96 2012/08/22 02:24:10 ottxor Exp $
92 +
93 + 22 Aug 2012; Christoph Junghans <ottxor@g.o> xsane-0.998-r1.ebuild:
94 + added prefix keywords
95
96 05 May 2012; Jeff Horelick <jdhore@g.o> xsane-0.998.ebuild,
97 xsane-0.998-r1.ebuild: