Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/ntfs3g: ntfs3g-2012.1.15-r2.ebuild ChangeLog
Date: Sun, 30 Sep 2012 00:24:37
Message-Id: 20120930002425.DCF1421600@flycatcher.gentoo.org
1 zmedico 12/09/30 00:24:25
2
3 Modified: ntfs3g-2012.1.15-r2.ebuild ChangeLog
4 Log:
5 Fix possible "double prefix" for udevdir.
6
7 (Portage version: 2.2.0_alpha134/cvs/Linux i686)
8
9 Revision Changes Path
10 1.2 sys-fs/ntfs3g/ntfs3g-2012.1.15-r2.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2012.1.15-r2.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2012.1.15-r2.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2012.1.15-r2.ebuild?r1=1.1&r2=1.2
15
16 Index: ntfs3g-2012.1.15-r2.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2012.1.15-r2.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- ntfs3g-2012.1.15-r2.ebuild 10 Aug 2012 17:29:28 -0000 1.1
23 +++ ntfs3g-2012.1.15-r2.ebuild 30 Sep 2012 00:24:25 -0000 1.2
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/sys-fs/ntfs3g/ntfs3g-2012.1.15-r2.ebuild,v 1.1 2012/08/10 17:29:28 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ntfs3g-2012.1.15-r2.ebuild,v 1.2 2012/09/30 00:24:25 zmedico Exp $
29
30 EAPI=4
31 inherit linux-info toolchain-funcs
32 @@ -65,7 +65,10 @@
33 use suid && fperms u+s /usr/bin/${MY_PN}
34
35 local udevdir=/lib/udev
36 - has_version sys-fs/udev && udevdir="$($(tc-getPKG_CONFIG) --variable=udevdir udev)"
37 + if has_version sys-fs/udev; then
38 + udevdir="$($(tc-getPKG_CONFIG) --variable=udevdir udev)"
39 + udevdir=${udevdir#${EPREFIX}}
40 + fi
41 insinto "${udevdir}"/rules.d
42 doins "${FILESDIR}"/99-ntfs3g.rules
43
44
45
46
47 1.137 sys-fs/ntfs3g/ChangeLog
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ntfs3g/ChangeLog?rev=1.137&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ntfs3g/ChangeLog?rev=1.137&content-type=text/plain
51 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/ntfs3g/ChangeLog?r1=1.136&r2=1.137
52
53 Index: ChangeLog
54 ===================================================================
55 RCS file: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v
56 retrieving revision 1.136
57 retrieving revision 1.137
58 diff -u -r1.136 -r1.137
59 --- ChangeLog 25 Aug 2012 22:37:41 -0000 1.136
60 +++ ChangeLog 30 Sep 2012 00:24:25 -0000 1.137
61 @@ -1,6 +1,9 @@
62 # ChangeLog for sys-fs/ntfs3g
63 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
64 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v 1.136 2012/08/25 22:37:41 vapier Exp $
65 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/ntfs3g/ChangeLog,v 1.137 2012/09/30 00:24:25 zmedico Exp $
66 +
67 + 30 Sep 2012; Zac Medico <zmedico@g.o> ntfs3g-2012.1.15-r2.ebuild:
68 + Fix possible "double prefix" for udevdir.
69
70 25 Aug 2012; Mike Frysinger <vapier@g.o> ntfs3g-2012.1.15-r1.ebuild:
71 Drop useless -vf args to mv #432632 by Joshua B. Kahlenberg.