# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header$ DESCRIPTION="console based password management application" HOMEPAGE="http://cpbotha.net/pam_pwdfile" SRC_URI="http://cpbotha.net/files/mirror/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" DEPEND="virtual/libc" src_compile() { emake || die "emake failed" } src_install() { dobin chpwdfile doman chpwdfile.1 for i in pw{add,mod,del}; do dosym chpwdfile /usr/bin/${i} echo '.so chpwdfile.1' > ${i}.1 doman ${i}.1 done dodoc README }