diff options
author | 2007-09-12 21:22:54 +0000 | |
---|---|---|
committer | 2007-09-12 21:22:54 +0000 | |
commit | eeb1af3cb96fe925236d66b1a1b86f3d374a7cfb (patch) | |
tree | 9dc4181199475cd41b06564ae3e0b76b25eb3159 /sys-auth/pam_smb/pam_smb-2.0.0_rc6-r1.ebuild | |
parent | Check for boost threads, bug #192144 (diff) | |
download | gentoo-2-eeb1af3cb96fe925236d66b1a1b86f3d374a7cfb.tar.gz gentoo-2-eeb1af3cb96fe925236d66b1a1b86f3d374a7cfb.tar.bz2 gentoo-2-eeb1af3cb96fe925236d66b1a1b86f3d374a7cfb.zip |
Dropped old versions. Cleanup (bug #192031, thanks to Jakub Moc). Some more cleanup.
(Portage version: 2.1.3.8)
Diffstat (limited to 'sys-auth/pam_smb/pam_smb-2.0.0_rc6-r1.ebuild')
-rw-r--r-- | sys-auth/pam_smb/pam_smb-2.0.0_rc6-r1.ebuild | 41 |
1 files changed, 20 insertions, 21 deletions
diff --git a/sys-auth/pam_smb/pam_smb-2.0.0_rc6-r1.ebuild b/sys-auth/pam_smb/pam_smb-2.0.0_rc6-r1.ebuild index c4984a8fe9b2..ba63db472e31 100644 --- a/sys-auth/pam_smb/pam_smb-2.0.0_rc6-r1.ebuild +++ b/sys-auth/pam_smb/pam_smb-2.0.0_rc6-r1.ebuild @@ -1,52 +1,51 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_smb/pam_smb-2.0.0_rc6-r1.ebuild,v 1.3 2007/04/28 13:21:16 tove Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/pam_smb/pam_smb-2.0.0_rc6-r1.ebuild,v 1.4 2007/09/12 21:22:53 dev-zero Exp $ -inherit eutils - -DESCRIPTION="The PAM SMB module, which allows authentication against a SMB (such as the Win_x families) server." -HOMEPAGE="http://www.csn.ul.ie/~airlied/pam_smb/" +inherit eutils pam MY_P=${P/_rc/-rc} -S=${WORKDIR}/${MY_P} +DESCRIPTION="The PAM SMB module, allows authentication against a SMB (such as the Win_x families) server." +HOMEPAGE="http://www.csn.ul.ie/~airlied/pam_smb/" SRC_URI="mirror://samba/pam_smb/v2/${MY_P}.tar.gz http://www.csn.ul.ie/~airlied/pam_smb/v2/${MY_P}.tar.gz" - -DEPEND=">=sys-libs/pam-0.75" LICENSE="GPL-2" +SLOT="0" KEYWORDS="~ppc x86" IUSE="" -SLOT="0" + +DEPEND=">=sys-libs/pam-0.75" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/${MY_P} src_unpack() { unpack ${A} cd "${S}" - epatch "${FILESDIR}"/10-pam_smb-bash-3.1.patch + epatch "${FILESDIR}/10-pam_smb-bash-3.1.patch" } src_compile() { - econf --disable-root-only || die - emake || die + econf --disable-root-only || die "econf failed" + emake || die "emake failed" } src_install() { - exeinto /lib/security - doexe pamsmbm/pam_smb_auth.so + dopammod pamsmbm/pam_smb_auth.so exeinto /usr/sbin doexe pamsmbd/pamsmbd - dodoc BUGS CHANGES COPYING README TODO INSTALL \ - faq/{pam_smb_faq.sgml,additions.txt} + dodoc BUGS CHANGES README TODO faq/{pam_smb_faq.sgml,additions.txt} docinto pam.d dodoc pam_smb.conf* - newinitd "${FILESDIR}"/pamsmbd-init pamsmbd + newinitd "${FILESDIR}/pamsmbd-init pamsmbd" } pkg_postinst() { - einfo - einfo "You must create /etc/pam_smb.conf yourself, containing" - einfo "your domainname, PDC and BDC. See example files in docdir." - einfo + elog + elog "You must create /etc/pam_smb.conf yourself, containing" + elog "your domainname, PDC and BDC. See example files in docdir." + elog } |