Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/smartmontools: smartmontools-6.2.ebuild ChangeLog
Date: Sat, 30 Nov 2013 01:15:27
Message-Id: 20131130011513.F19B92004B@flycatcher.gentoo.org
1 hwoarang 13/11/30 01:15:13
2
3 Modified: smartmontools-6.2.ebuild ChangeLog
4 Log:
5 Depend on libcap-ng[static-libs] if USE=static is used. Bug #481692 by Peter Gantner
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key C2BA7F3C!)
8
9 Revision Changes Path
10 1.3 sys-apps/smartmontools/smartmontools-6.2.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/smartmontools/smartmontools-6.2.ebuild?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/smartmontools/smartmontools-6.2.ebuild?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/smartmontools/smartmontools-6.2.ebuild?r1=1.2&r2=1.3
15
16 Index: smartmontools-6.2.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/smartmontools-6.2.ebuild,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- smartmontools-6.2.ebuild 11 Aug 2013 16:37:40 -0000 1.2
23 +++ smartmontools-6.2.ebuild 30 Nov 2013 01:15:13 -0000 1.3
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/smartmontools-6.2.ebuild,v 1.2 2013/08/11 16:37:40 swift Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/smartmontools-6.2.ebuild,v 1.3 2013/11/30 01:15:13 hwoarang Exp $
29
30 EAPI="4"
31
32 @@ -21,7 +21,11 @@
33 SLOT="0"
34 IUSE="caps minimal selinux static"
35
36 -DEPEND="caps? ( sys-libs/libcap-ng )
37 +DEPEND="
38 + caps? (
39 + static? ( sys-libs/libcap-ng[static-libs] )
40 + !static? ( sys-libs/libcap-ng )
41 + )
42 selinux? (
43 sys-libs/libselinux
44 sec-policy/selinux-smartmon
45
46
47
48 1.134 sys-apps/smartmontools/ChangeLog
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/smartmontools/ChangeLog?rev=1.134&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/smartmontools/ChangeLog?rev=1.134&content-type=text/plain
52 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/smartmontools/ChangeLog?r1=1.133&r2=1.134
53
54 Index: ChangeLog
55 ===================================================================
56 RCS file: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/ChangeLog,v
57 retrieving revision 1.133
58 retrieving revision 1.134
59 diff -u -r1.133 -r1.134
60 --- ChangeLog 14 Sep 2013 10:32:46 -0000 1.133
61 +++ ChangeLog 30 Nov 2013 01:15:13 -0000 1.134
62 @@ -1,6 +1,10 @@
63 # ChangeLog for sys-apps/smartmontools
64 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
65 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/ChangeLog,v 1.133 2013/09/14 10:32:46 hwoarang Exp $
66 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/smartmontools/ChangeLog,v 1.134 2013/11/30 01:15:13 hwoarang Exp $
67 +
68 + 30 Nov 2013; Markos Chandras <hwoarang@g.o> smartmontools-6.2.ebuild:
69 + Depend on libcap-ng[static-libs] if USE=static is used. Bug #481692 by Peter
70 + Gantner
71
72 14 Sep 2013; Markos Chandras <hwoarang@g.o> files/smartd.rc:
73 Use /run instead of /var/run. Bug #476242