diff options
Diffstat (limited to 'sys-auth/tcb/tcb-1.0.3-r2.ebuild')
-rw-r--r-- | sys-auth/tcb/tcb-1.0.3-r2.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/sys-auth/tcb/tcb-1.0.3-r2.ebuild b/sys-auth/tcb/tcb-1.0.3-r2.ebuild new file mode 100644 index 000000000000..fab566c5e830 --- /dev/null +++ b/sys-auth/tcb/tcb-1.0.3-r2.ebuild @@ -0,0 +1,52 @@ +# 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.3-r2.ebuild,v 1.1 2010/01/17 14:55:16 phajdan.jr Exp $ + +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="pam" + +DEPEND="pam? ( >=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_unpack() { + unpack ${A} + cd "${S}" + + epatch "${FILESDIR}"/${PN}-1.0.2-build.patch + epatch "${FILESDIR}"/${PN}-gentoo.patch + use pam || sed -i '/pam/d' Makefile +} + +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" +} |