diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-07-17 13:35:14 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-07-17 13:35:14 +0000 |
commit | a1ab4fd3b1101e2ae8f20b921b9ac68cf3a4503b (patch) | |
tree | 4a3f3cbb8640b59ad4c5bc3cef35403771468264 /sys-apps/tcb | |
parent | stabilize (diff) | |
download | gentoo-2-a1ab4fd3b1101e2ae8f20b921b9ac68cf3a4503b.tar.gz gentoo-2-a1ab4fd3b1101e2ae8f20b921b9ac68cf3a4503b.tar.bz2 gentoo-2-a1ab4fd3b1101e2ae8f20b921b9ac68cf3a4503b.zip |
cleanup
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'sys-apps/tcb')
-rw-r--r-- | sys-apps/tcb/tcb-0.9.8.7.ebuild | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/sys-apps/tcb/tcb-0.9.8.7.ebuild b/sys-apps/tcb/tcb-0.9.8.7.ebuild index 7a0328139597..994ebce97f95 100644 --- a/sys-apps/tcb/tcb-0.9.8.7.ebuild +++ b/sys-apps/tcb/tcb-0.9.8.7.ebuild @@ -1,34 +1,33 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/tcb/tcb-0.9.8.7.ebuild,v 1.3 2004/07/15 02:38:42 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/tcb/tcb-0.9.8.7.ebuild,v 1.4 2005/07/17 13:35:14 vapier Exp $ inherit eutils -DESCRIPTION="Libraries and tools implementing the tcb password shadowing scheme." +DESCRIPTION="Libraries and tools implementing the tcb password shadowing scheme" +HOMEPAGE="http://www.openwall.com/" SRC_URI="ftp://ftp.openwall.com/pub/projects/tcb/${P}.tar.gz" -HOMEPAGE="http://www.openwall.com" -LICENSE="GPL-2" -DEPEND=">=sys-libs/pam-0.75" +LICENSE="GPL-2" SLOT="0" -KEYWORDS="x86 amd64" +KEYWORDS="amd64 x86" IUSE="" +DEPEND=">=sys-libs/pam-0.75" + pkg_setup() { # might want to add these into baselayout eventually... - for group in auth chkpwd shadow; do - enewgroup ${group} || die "error adding group ${group}" + for group in auth chkpwd shadow ; do + enewgroup ${group} done } -src_compile () { - emake || die +src_install() { + make DESTDIR="${D}" install || die + dodoc ChangeLog } -src_install () { - make DESTDIR=${D} install || die - dodoc ChangeLog LICENSE - +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" } |