Gentoo Archives: gentoo-commits

From: "Mike Gilbert (floppym)" <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/zfs: zfs-9999.ebuild ChangeLog
Date: Mon, 27 Feb 2012 01:14:30
Message-Id: 20120227011413.F33772004B@flycatcher.gentoo.org
1 floppym 12/02/27 01:14:13
2
3 Modified: zfs-9999.ebuild ChangeLog
4 Log:
5 Updates by Richard to resolve bug 405795. Add custom-cflags USE flag.
6
7 (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.9 sys-fs/zfs/zfs-9999.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/zfs/zfs-9999.ebuild?rev=1.9&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/zfs/zfs-9999.ebuild?rev=1.9&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/zfs/zfs-9999.ebuild?r1=1.8&r2=1.9
15
16 Index: zfs-9999.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-fs/zfs/zfs-9999.ebuild,v
19 retrieving revision 1.8
20 retrieving revision 1.9
21 diff -u -r1.8 -r1.9
22 --- zfs-9999.ebuild 24 Feb 2012 22:46:23 -0000 1.8
23 +++ zfs-9999.ebuild 27 Feb 2012 01:14:13 -0000 1.9
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/zfs/zfs-9999.ebuild,v 1.8 2012/02/24 22:46:23 floppym Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/zfs/zfs-9999.ebuild,v 1.9 2012/02/27 01:14:13 floppym Exp $
29
30 EAPI="4"
31
32 @@ -14,7 +14,7 @@
33 LICENSE="CDDL GPL-2"
34 SLOT="0"
35 KEYWORDS=""
36 -IUSE="debug static-libs"
37 +IUSE="custom-cflags debug static-libs"
38
39 DEPEND=">=sys-kernel/spl-${PV}"
40 RDEPEND="${DEPEND}
41 @@ -27,7 +27,8 @@
42 AUTOTOOLS_IN_SOURCE_BUILD="1"
43
44 pkg_setup() {
45 - CONFIG_CHECK="!PREEMPT
46 + CONFIG_CHECK="MODULES
47 + !PREEMPT
48 !DEBUG_LOCK_ALLOC
49 ZLIB_DEFLATE
50 ZLIB_INFLATE
51 @@ -43,9 +44,11 @@
52 }
53
54 src_configure() {
55 + use custom-cflags || strip-flags
56 set_arch_to_kernel
57 local myeconfargs=(
58 - --exec-prefix=
59 + --bin=/bin
60 + --sbin=/sbin
61 --with-config=all
62 --with-linux="${KV_DIR}"
63 --with-linux-obj="${KV_OUT_DIR}"
64 @@ -64,3 +67,8 @@
65 autotools-utils_src_test
66 fi
67 }
68 +
69 +src_install() {
70 + autotools-utils_src_install
71 + gen_usr_ldscript -a uutil nvpair zpool zfs
72 +}
73
74
75
76 1.9 sys-fs/zfs/ChangeLog
77
78 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/zfs/ChangeLog?rev=1.9&view=markup
79 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/zfs/ChangeLog?rev=1.9&content-type=text/plain
80 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/zfs/ChangeLog?r1=1.8&r2=1.9
81
82 Index: ChangeLog
83 ===================================================================
84 RCS file: /var/cvsroot/gentoo-x86/sys-fs/zfs/ChangeLog,v
85 retrieving revision 1.8
86 retrieving revision 1.9
87 diff -u -r1.8 -r1.9
88 --- ChangeLog 24 Feb 2012 22:46:23 -0000 1.8
89 +++ ChangeLog 27 Feb 2012 01:14:13 -0000 1.9
90 @@ -1,6 +1,9 @@
91 # ChangeLog for sys-fs/zfs
92 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
93 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/zfs/ChangeLog,v 1.8 2012/02/24 22:46:23 floppym Exp $
94 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/zfs/ChangeLog,v 1.9 2012/02/27 01:14:13 floppym Exp $
95 +
96 + 27 Feb 2012; Mike Gilbert <floppym@g.o> zfs-9999.ebuild:
97 + Updates by Richard to resolve bug 405795. Add custom-cflags USE flag.
98
99 24 Feb 2012; Mike Gilbert <floppym@g.o> zfs-9999.ebuild:
100 Updates from Richard Yao for bug 405203.