Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-auth/skey: skey-1.1.5-r7.ebuild ChangeLog
Date: Sun, 30 Jan 2011 18:17:53
Message-Id: 20110130181744.87F9520057@flycatcher.gentoo.org
1 ulm 11/01/30 18:17:44
2
3 Modified: skey-1.1.5-r7.ebuild ChangeLog
4 Log:
5 Add die statements throughout.
6
7 (Portage version: 2.1.9.35/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.14 sys-auth/skey/skey-1.1.5-r7.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/skey/skey-1.1.5-r7.ebuild?rev=1.14&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/skey/skey-1.1.5-r7.ebuild?rev=1.14&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/skey/skey-1.1.5-r7.ebuild?r1=1.13&r2=1.14
15
16 Index: skey-1.1.5-r7.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-auth/skey/skey-1.1.5-r7.ebuild,v
19 retrieving revision 1.13
20 retrieving revision 1.14
21 diff -u -r1.13 -r1.14
22 --- skey-1.1.5-r7.ebuild 23 Feb 2010 01:01:42 -0000 1.13
23 +++ skey-1.1.5-r7.ebuild 30 Jan 2011 18:17:44 -0000 1.14
24 @@ -1,6 +1,6 @@
25 -# Copyright 1999-2010 Gentoo Foundation
26 +# Copyright 1999-2011 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/skey/skey-1.1.5-r7.ebuild,v 1.13 2010/02/23 01:01:42 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/skey/skey-1.1.5-r7.ebuild,v 1.14 2011/01/30 18:17:44 ulm Exp $
30
31 inherit flag-o-matic eutils toolchain-funcs
32
33 @@ -60,7 +60,7 @@
34 # is no longer the case. #64971
35 sed -i \
36 's#\(md4\) \((the default)\), \(md5\) or \(sha1.\)#\1, \3 \2 or \4#g' \
37 - skeyinit.1
38 + skeyinit.1 || die
39
40 # skey(3): shared library is in /lib; we don't install a profiling library
41 sed -i 's:/usr\(/lib/libskey.so\):\1:;/It.*libskey_p/{N;d;}' skey.3 || die
42 @@ -68,38 +68,38 @@
43
44 src_compile() {
45 tc-export CC
46 - econf --sysconfdir=/etc/skey || die
47 + econf --sysconfdir=/etc/skey
48 emake || die
49 }
50
51 src_install() {
52 - doman skey.1 skeyaudit.1 skeyinfo.1 skeyinit.1 skey.3 skeyprune.8
53 + doman skey.1 skeyaudit.1 skeyinfo.1 skeyinit.1 skey.3 skeyprune.8 || die
54 dobin skey skeyinit skeyinfo || die
55
56 - dosym skey /usr/bin/otp-md4
57 - dosym skey /usr/bin/otp-sha1
58 - dosym skey /usr/bin/otp-md5
59 + dosym skey /usr/bin/otp-md4 || die
60 + dosym skey /usr/bin/otp-sha1 || die
61 + dosym skey /usr/bin/otp-md5 || die
62
63 - newsbin skeyprune.pl skeyprune
64 - newbin skeyaudit.sh skeyaudit
65 + newsbin skeyprune.pl skeyprune || die
66 + newbin skeyaudit.sh skeyaudit || die
67
68 - dolib.a libskey.a
69 + dolib.a libskey.a || die
70
71 into /
72 dolib.so libskey.so.1.1.5 libskey.so.1.1 libskey.so.1 libskey.so || die
73 gen_usr_ldscript libskey.so
74
75 insinto /usr/include
76 - doins skey.h
77 + doins skey.h || die
78
79 - keepdir /etc/skey
80 + keepdir /etc/skey || die
81
82 # only root needs to have access to these files.
83 - fperms g-rx,o-rx /etc/skey
84 + fperms g-rx,o-rx /etc/skey || die
85
86 # skeyinit and skeyinfo must be suid root so users
87 # can generate their passwords.
88 - fperms u+s,og-r /usr/bin/skeyinit /usr/bin/skeyinfo
89 + fperms u+s,og-r /usr/bin/skeyinit /usr/bin/skeyinfo || die
90
91 dodoc README CHANGES
92 }
93
94
95
96 1.14 sys-auth/skey/ChangeLog
97
98 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/skey/ChangeLog?rev=1.14&view=markup
99 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/skey/ChangeLog?rev=1.14&content-type=text/plain
100 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/skey/ChangeLog?r1=1.13&r2=1.14
101
102 Index: ChangeLog
103 ===================================================================
104 RCS file: /var/cvsroot/gentoo-x86/sys-auth/skey/ChangeLog,v
105 retrieving revision 1.13
106 retrieving revision 1.14
107 diff -u -r1.13 -r1.14
108 --- ChangeLog 23 Feb 2010 01:01:42 -0000 1.13
109 +++ ChangeLog 30 Jan 2011 18:17:44 -0000 1.14
110 @@ -1,6 +1,9 @@
111 # ChangeLog for sys-auth/skey
112 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
113 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/skey/ChangeLog,v 1.13 2010/02/23 01:01:42 jer Exp $
114 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
115 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/skey/ChangeLog,v 1.14 2011/01/30 18:17:44 ulm Exp $
116 +
117 + 30 Jan 2011; Ulrich Mueller <ulm@g.o> skey-1.1.5-r7.ebuild:
118 + Add die statements throughout.
119
120 23 Feb 2010; Jeroen Roovers <jer@g.o> skey-1.1.5-r7.ebuild:
121 Respect CC (and actually use toolchain-funcs).