diff options
author | Paweł Hajdan <phajdan.jr@gentoo.org> | 2010-03-19 16:52:46 +0000 |
---|---|---|
committer | Paweł Hajdan <phajdan.jr@gentoo.org> | 2010-03-19 16:52:46 +0000 |
commit | 548433062da7be1ca8bca84dc40b346876c6e333 (patch) | |
tree | ae328edbecdf31696f6cb721f8d05a87f9eb666a /sys-auth | |
parent | Version bumped. (diff) | |
download | gentoo-2-548433062da7be1ca8bca84dc40b346876c6e333.tar.gz gentoo-2-548433062da7be1ca8bca84dc40b346876c6e333.tar.bz2 gentoo-2-548433062da7be1ca8bca84dc40b346876c6e333.zip |
Version bump.
(Portage version: 2.1.7.17/cvs/Linux i686)
Diffstat (limited to 'sys-auth')
-rw-r--r-- | sys-auth/tcb/ChangeLog | 7 | ||||
-rw-r--r-- | sys-auth/tcb/tcb-1.0.5.ebuild | 53 |
2 files changed, 59 insertions, 1 deletions
diff --git a/sys-auth/tcb/ChangeLog b/sys-auth/tcb/ChangeLog index 08bdcdd5bf5a..40845dbd7715 100644 --- a/sys-auth/tcb/ChangeLog +++ b/sys-auth/tcb/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-auth/tcb # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/tcb/ChangeLog,v 1.7 2010/02/12 10:00:24 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/tcb/ChangeLog,v 1.8 2010/03/19 16:52:46 phajdan.jr Exp $ + +*tcb-1.0.5 (19 Mar 2010) + + 19 Mar 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> +tcb-1.0.5.ebuild: + Version bump. *tcb-1.0.4 (12 Feb 2010) diff --git a/sys-auth/tcb/tcb-1.0.5.ebuild b/sys-auth/tcb/tcb-1.0.5.ebuild new file mode 100644 index 000000000000..61efb66be849 --- /dev/null +++ b/sys-auth/tcb/tcb-1.0.5.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-auth/tcb/tcb-1.0.5.ebuild,v 1.1 2010/03/19 16:52:46 phajdan.jr Exp $ + +EAPI="2" + +inherit eutils multilib + +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 ~x86" +IUSE="" + +DEPEND=">=sys-libs/pam-0.75" +RDEPEND="${DEPEND}" + +pkg_setup() { + for group in auth chkpwd shadow ; do + enewgroup ${group} + done + + mymakeopts=" + SLIBDIR=/$(get_libdir) + LIBDIR=/usr/$(get_libdir) + MANDIR=/usr/share/man + DESTDIR='${D}'" +} + +src_prepare() { + # We don't have Openwall glibc extensions. The patch makes it possible + # to run tcb with normal glibc. It has been reviewed by upstream, but + # is not going to be accepted. The plan is to add support for sha hashes + # to Openwall's crypto routines and use them when that's available. + epatch "${FILESDIR}"/${PN}-gentoo.patch +} + +src_compile() { + emake $mymakeopts || die "emake failed" +} + +src_install() { + emake $mymakeopts install || die "emake install failed" + 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" +} |