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-r8.ebuild ChangeLog
Date: Thu, 05 Jan 2012 18:48:06
Message-Id: 20120105184748.CAA782004B@flycatcher.gentoo.org
1 ulm 12/01/05 18:47:48
2
3 Modified: skey-1.1.5-r8.ebuild ChangeLog
4 Log:
5 New patchset with skeyinfo.c and skey.3 updated from newer NetBSD version.
6 Call gen_usr_ldscript only with USE=static-libs.
7
8 (Portage version: 2.1.10.44/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.2 sys-auth/skey/skey-1.1.5-r8.ebuild
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/skey/skey-1.1.5-r8.ebuild?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/skey/skey-1.1.5-r8.ebuild?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/skey/skey-1.1.5-r8.ebuild?r1=1.1&r2=1.2
16
17 Index: skey-1.1.5-r8.ebuild
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-auth/skey/skey-1.1.5-r8.ebuild,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- skey-1.1.5-r8.ebuild 4 Jan 2012 23:12:01 -0000 1.1
24 +++ skey-1.1.5-r8.ebuild 5 Jan 2012 18:47:48 -0000 1.2
25 @@ -1,6 +1,6 @@
26 # Copyright 1999-2012 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-r8.ebuild,v 1.1 2012/01/04 23:12:01 ulm Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/skey/skey-1.1.5-r8.ebuild,v 1.2 2012/01/05 18:47:48 ulm Exp $
30
31 EAPI=4
32
33 @@ -9,7 +9,7 @@
34 DESCRIPTION="Linux Port of OpenBSD Single-key Password System"
35 HOMEPAGE="http://www.openbsd.org/faq/faq8.html#SKey"
36 SRC_URI="mirror://gentoo/${P}.tar.bz2
37 - mirror://gentoo/skey-1.1.5-patches-1.tar.xz"
38 + mirror://gentoo/skey-1.1.5-patches-2.tar.xz"
39
40 LICENSE="BSD MIT RSA-MD4 RSA-MD5 BEER-WARE"
41 SLOT="0"
42 @@ -31,6 +31,10 @@
43 }
44
45 src_install() {
46 + into /
47 + dolib.so libskey.so{.${PV},.${PV%.*},.${PV%%.*},}
48 +
49 + into /usr
50 dobin skey skeyinit skeyinfo
51 newbin skeyaudit.sh skeyaudit
52 newsbin skeyprune.pl skeyprune
53 @@ -39,25 +43,24 @@
54 dosym skey /usr/bin/otp-md5
55 dosym skey /usr/bin/otp-sha1
56
57 - use static-libs && dolib.a libskey.a
58 + if use static-libs; then
59 + dolib.a libskey.a
60 + gen_usr_ldscript libskey.so
61 + fi
62
63 doman skey.1 skeyaudit.1 skeyinfo.1 skeyinit.1 skey.3 skeyprune.8
64
65 - into /
66 - dolib.so libskey.so.1.1.5 libskey.so.1.1 libskey.so.1 libskey.so
67 - gen_usr_ldscript libskey.so
68 -
69 insinto /usr/include
70 doins skey.h
71
72 keepdir /etc/skey
73
74 # only root needs to have access to these files.
75 - fperms g-rx,o-rx /etc/skey
76 + fperms go-rx /etc/skey
77
78 # skeyinit and skeyinfo must be suid root so users
79 # can generate their passwords.
80 - fperms u+s,og-r /usr/bin/skeyinit /usr/bin/skeyinfo
81 + fperms u+s,go-r /usr/bin/skeyinit /usr/bin/skeyinfo
82
83 dodoc README CHANGES
84 }
85
86
87
88 1.16 sys-auth/skey/ChangeLog
89
90 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/skey/ChangeLog?rev=1.16&view=markup
91 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/skey/ChangeLog?rev=1.16&content-type=text/plain
92 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-auth/skey/ChangeLog?r1=1.15&r2=1.16
93
94 Index: ChangeLog
95 ===================================================================
96 RCS file: /var/cvsroot/gentoo-x86/sys-auth/skey/ChangeLog,v
97 retrieving revision 1.15
98 retrieving revision 1.16
99 diff -u -r1.15 -r1.16
100 --- ChangeLog 4 Jan 2012 23:12:01 -0000 1.15
101 +++ ChangeLog 5 Jan 2012 18:47:48 -0000 1.16
102 @@ -1,6 +1,10 @@
103 # ChangeLog for sys-auth/skey
104 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
105 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/skey/ChangeLog,v 1.15 2012/01/04 23:12:01 ulm Exp $
106 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/skey/ChangeLog,v 1.16 2012/01/05 18:47:48 ulm Exp $
107 +
108 + 05 Jan 2012; Ulrich Mueller <ulm@g.o> skey-1.1.5-r8.ebuild:
109 + New patchset with skeyinfo.c and skey.3 updated from newer NetBSD version.
110 + Call gen_usr_ldscript only with USE=static-libs.
111
112 *skey-1.1.5-r8 (04 Jan 2012)