Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-fs/udev: udev-9999.ebuild ChangeLog
Date: Sat, 02 Aug 2014 00:29:32
Message-Id: 20140802002929.B754B2004E@flycatcher.gentoo.org
1 ssuominen 14/08/02 00:29:29
2
3 Modified: udev-9999.ebuild ChangeLog
4 Log:
5 Migrate src_configure() over to multilib_native_use_enable() function from multilib-build.eclass
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
8
9 Revision Changes Path
10 1.316 sys-fs/udev/udev-9999.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev/udev-9999.ebuild?rev=1.316&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev/udev-9999.ebuild?rev=1.316&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev/udev-9999.ebuild?r1=1.315&r2=1.316
15
16 Index: udev-9999.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-fs/udev/udev-9999.ebuild,v
19 retrieving revision 1.315
20 retrieving revision 1.316
21 diff -u -r1.315 -r1.316
22 --- udev-9999.ebuild 1 Aug 2014 09:22:41 -0000 1.315
23 +++ udev-9999.ebuild 2 Aug 2014 00:29:29 -0000 1.316
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2014 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/udev-9999.ebuild,v 1.315 2014/08/01 09:22:41 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/udev-9999.ebuild,v 1.316 2014/08/02 00:29:29 ssuominen Exp $
29
30 EAPI=5
31
32 @@ -160,12 +160,18 @@
33 ac_cv_search_cap_init=
34 --libdir=/usr/$(get_libdir)
35 --docdir=/usr/share/doc/${PF}
36 + $(multilib_native_use_enable static-libs static)
37 --disable-nls
38 + $(multilib_native_use_enable doc gtk-doc)
39 + $(multilib_native_use_enable introspection)
40 --disable-python-devel
41 --disable-dbus
42 + $(multilib_native_use_enable kmod)
43 --disable-seccomp
44 + $(multilib_native_use_enable selinux)
45 --disable-xz
46 --disable-pam
47 + $(multilib_native_use_enable acl)
48 --disable-gcrypt
49 --disable-audit
50 --disable-libcryptsetup
51 @@ -176,44 +182,20 @@
52 --disable-quotacheck
53 --disable-logind
54 --disable-polkit
55 - --disable-nls
56 --disable-myhostname
57 $(use_enable gudev)
58 + $(multilib_is_native_abi || echo "--disable-manpages")
59 --enable-split-usr
60 --with-html-dir=/usr/share/doc/${PF}/html
61 --without-python
62 --with-bashcompletiondir="$(get_bashcompdir)"
63 + $(use firmware-loader && echo "--with-firmware-path=/lib/firmware/updates:/lib/firmware")
64 --with-rootprefix=
65 + $(multilib_is_native_abi && echo "--with-rootlibdir=/$(get_libdir)")
66 )
67 +
68 # Use pregenerated copies when possible wrt #480924
69 - if ! [[ ${PV} = 9999* ]]; then
70 - econf_args+=(
71 - --disable-manpages
72 - )
73 - fi
74 - if multilib_is_native_abi; then
75 - econf_args+=(
76 - $(use_enable static-libs static)
77 - $(use_enable doc gtk-doc)
78 - $(use_enable introspection)
79 - $(use_enable acl)
80 - $(use_enable kmod)
81 - $(use_enable selinux)
82 - --with-rootlibdir=/$(get_libdir)
83 - )
84 - else
85 - econf_args+=(
86 - --disable-static
87 - --disable-gtk-doc
88 - --disable-introspection
89 - --disable-acl
90 - --disable-kmod
91 - --disable-selinux
92 - --disable-manpages
93 - --with-rootlibdir=/usr/$(get_libdir)
94 - )
95 - fi
96 - use firmware-loader && econf_args+=( --with-firmware-path="/lib/firmware/updates:/lib/firmware" )
97 + [[ ${PV} = 9999* ]] || econf_args+=( --disable-manpages )
98
99 ECONF_SOURCE=${S} econf "${econf_args[@]}"
100 }
101
102
103
104 1.1081 sys-fs/udev/ChangeLog
105
106 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev/ChangeLog?rev=1.1081&view=markup
107 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev/ChangeLog?rev=1.1081&content-type=text/plain
108 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev/ChangeLog?r1=1.1080&r2=1.1081
109
110 Index: ChangeLog
111 ===================================================================
112 RCS file: /var/cvsroot/gentoo-x86/sys-fs/udev/ChangeLog,v
113 retrieving revision 1.1080
114 retrieving revision 1.1081
115 diff -u -r1.1080 -r1.1081
116 --- ChangeLog 1 Aug 2014 15:36:32 -0000 1.1080
117 +++ ChangeLog 2 Aug 2014 00:29:29 -0000 1.1081
118 @@ -1,6 +1,10 @@
119 # ChangeLog for sys-fs/udev
120 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
121 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/ChangeLog,v 1.1080 2014/08/01 15:36:32 ssuominen Exp $
122 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/ChangeLog,v 1.1081 2014/08/02 00:29:29 ssuominen Exp $
123 +
124 + 02 Aug 2014; Samuli Suominen <ssuominen@g.o> udev-9999.ebuild:
125 + Migrate src_configure() over to multilib_native_use_enable() function from
126 + multilib-build.eclass
127
128 01 Aug 2014; Samuli Suominen <ssuominen@g.o> udev-215-r1.ebuild:
129 Include more straightforward patch for the last commit after all wrt