diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-04-25 05:47:44 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-04-25 05:47:44 +0000 |
commit | db549878ac99abdd11787032520e7d6cec0cf287 (patch) | |
tree | 55dbacf0d44ca8545f878f8245fb644d025773d7 /sys-apps/tcb | |
parent | better HOMEPAGE (diff) | |
download | gentoo-2-db549878ac99abdd11787032520e7d6cec0cf287.tar.gz gentoo-2-db549878ac99abdd11787032520e7d6cec0cf287.tar.bz2 gentoo-2-db549878ac99abdd11787032520e7d6cec0cf287.zip |
Version bump #131021 by Magnus Granberg.
(Portage version: 2.1_pre9-r4)
Diffstat (limited to 'sys-apps/tcb')
-rw-r--r-- | sys-apps/tcb/ChangeLog | 9 | ||||
-rw-r--r-- | sys-apps/tcb/files/digest-tcb-1.0 | 3 | ||||
-rw-r--r-- | sys-apps/tcb/tcb-1.0.ebuild | 38 |
3 files changed, 48 insertions, 2 deletions
diff --git a/sys-apps/tcb/ChangeLog b/sys-apps/tcb/ChangeLog index 52c3e6af9adf..289165738a2f 100644 --- a/sys-apps/tcb/ChangeLog +++ b/sys-apps/tcb/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/tcb -# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/tcb/ChangeLog,v 1.8 2005/07/18 11:52:57 dholm Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/tcb/ChangeLog,v 1.9 2006/04/25 05:47:44 vapier Exp $ + +*tcb-1.0 (25 Apr 2006) + + 25 Apr 2006; Mike Frysinger <vapier@gentoo.org> +tcb-1.0.ebuild: + Version bump #131021 by Magnus Granberg. 18 Jul 2005; David Holm <dholm@gentoo.org> tcb-0.9.8.8.ebuild: Added to ~ppc. diff --git a/sys-apps/tcb/files/digest-tcb-1.0 b/sys-apps/tcb/files/digest-tcb-1.0 new file mode 100644 index 000000000000..a7f35493a23c --- /dev/null +++ b/sys-apps/tcb/files/digest-tcb-1.0 @@ -0,0 +1,3 @@ +MD5 9cf36b80cafdae41e644000a6e3b88fc tcb-1.0.tar.gz 40355 +RMD160 1dbe92cbc583f66b687526ced87c6ab03d8dadbf tcb-1.0.tar.gz 40355 +SHA256 6565f076f72bc709b5eece037e9c45f0a0f60530e9213dda3ddbb14416bdfbaa tcb-1.0.tar.gz 40355 diff --git a/sys-apps/tcb/tcb-1.0.ebuild b/sys-apps/tcb/tcb-1.0.ebuild new file mode 100644 index 000000000000..411e6abdf68b --- /dev/null +++ b/sys-apps/tcb/tcb-1.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/tcb/tcb-1.0.ebuild,v 1.1 2006/04/25 05:47:44 vapier Exp $ + +inherit eutils + +DESCRIPTION="Libraries and tools implementing the tcb password shadowing scheme" +HOMEPAGE="http://www.openwall.com/tcb/" +SRC_URI="ftp://ftp.openwall.com/pub/projects/tcb/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ppc x86" +IUSE="pam" + +DEPEND="pam? ( >=sys-libs/pam-0.75 )" + +pkg_setup() { + for group in auth chkpwd shadow ; do + enewgroup ${group} + done +} + +src_unpack() { + unpack ${A} + cd "${S}" + use pam || sed -i '/pam/d' Makefile +} + +src_install() { + make DESTDIR="${D}" install || die + dodoc ChangeLog +} + +pkg_postinst() { + einfo "You must now run /sbin/tcb_convert to convert your shadow to tcb" + einfo "To remove this you must first run /sbin/tcp_unconvert and then unmerge" +} |