Gentoo Archives: gentoo-commits

From: "PaweA Hajdan (phajdan.jr)" <phajdan.jr@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-auth/tcb: tcb-1.0.3.ebuild ChangeLog
Date: Tue, 29 Dec 2009 11:03:47
Message-Id: E1NPZrX-0003mt-Md@stork.gentoo.org
1 phajdan.jr 09/12/29 11:03:39
2
3 Modified: ChangeLog
4 Added: tcb-1.0.3.ebuild
5 Log:
6 Version bump, bug #298509. Also fixes repoman warning about implicit RDEPEND.
7 (Portage version: 2.1.6.13/cvs/Linux i686)
8
9 Revision Changes Path
10 1.3 sys-auth/tcb/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/tcb/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/tcb/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/tcb/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-auth/tcb/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 30 Mar 2008 20:13:52 -0000 1.2
23 +++ ChangeLog 29 Dec 2009 11:03:39 -0000 1.3
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-auth/tcb
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/tcb/ChangeLog,v 1.2 2008/03/30 20:13:52 swegener Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/tcb/ChangeLog,v 1.3 2009/12/29 11:03:39 phajdan.jr Exp $
30 +
31 +*tcb-1.0.3 (29 Dec 2009)
32 +
33 + 29 Dec 2009; Pawel Hajdan jr <phajdan.jr@g.o> +tcb-1.0.3.ebuild:
34 + Version bump, bug #298509.
35
36 27 Mar 2008; Diego Pettenò <flameeyes@g.o>
37 +files/tcb-1.0.2-build.patch, +files/tcb-1.0-build.patch, +metadata.xml,
38
39
40
41 1.1 sys-auth/tcb/tcb-1.0.3.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/tcb/tcb-1.0.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-auth/tcb/tcb-1.0.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: tcb-1.0.3.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-auth/tcb/tcb-1.0.3.ebuild,v 1.1 2009/12/29 11:03:39 phajdan.jr Exp $
51
52 inherit eutils multilib
53
54 DESCRIPTION="Libraries and tools implementing the tcb password shadowing scheme"
55 HOMEPAGE="http://www.openwall.com/tcb/"
56 SRC_URI="ftp://ftp.openwall.com/pub/projects/tcb/${P}.tar.gz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~ppc ~x86"
61 IUSE="pam"
62
63 DEPEND="pam? ( >=sys-libs/pam-0.75 )"
64 RDEPEND="${DEPEND}"
65
66 pkg_setup() {
67 for group in auth chkpwd shadow ; do
68 enewgroup ${group}
69 done
70
71 mymakeopts="
72 SLIBDIR=/$(get_libdir)
73 LIBDIR=/usr/$(get_libdir)
74 MANDIR=/usr/share/man
75 DESTDIR='${D}'"
76 }
77
78 src_unpack() {
79 unpack ${A}
80 cd "${S}"
81
82 epatch "${FILESDIR}"/${PN}-1.0.2-build.patch
83 use pam || sed -i '/pam/d' Makefile
84 }
85
86 src_compile() {
87 emake $mymakeopts || die "emake failed"
88 }
89
90 src_install() {
91 emake $mymakeopts install || die "emake install failed"
92 dodoc ChangeLog
93 }
94
95 pkg_postinst() {
96 einfo "You must now run /sbin/tcb_convert to convert your shadow to tcb"
97 einfo "To remove this you must first run /sbin/tcp_unconvert and then unmerge"
98 }