diff options
author | Fernando J. Pereda <ferdy@gentoo.org> | 2005-02-14 20:18:10 +0000 |
---|---|---|
committer | Fernando J. Pereda <ferdy@gentoo.org> | 2005-02-14 20:18:10 +0000 |
commit | 8b497c59291a3f699588ddef9e923bb0ac39b995 (patch) | |
tree | 0db1fad23bef2512e65046aab6a4201a470b2306 /net-mail | |
parent | remove 2 packages I masked that aren't in the tree any more. (diff) | |
download | historical-8b497c59291a3f699588ddef9e923bb0ac39b995.tar.gz historical-8b497c59291a3f699588ddef9e923bb0ac39b995.tar.bz2 historical-8b497c59291a3f699588ddef9e923bb0ac39b995.zip |
Use symlinks instead of regular files in pam.d stuff
Package-Manager: portage-2.0.51-r15
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/mailbase/ChangeLog | 6 | ||||
-rw-r--r-- | net-mail/mailbase/Manifest | 10 | ||||
-rw-r--r-- | net-mail/mailbase/mailbase-0.00-r8.ebuild | 18 |
3 files changed, 23 insertions, 11 deletions
diff --git a/net-mail/mailbase/ChangeLog b/net-mail/mailbase/ChangeLog index a625aa530f75..47234d698025 100644 --- a/net-mail/mailbase/ChangeLog +++ b/net-mail/mailbase/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-mail/mailbase # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/mailbase/ChangeLog,v 1.35 2005/02/11 13:47:29 ferdy Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/mailbase/ChangeLog,v 1.36 2005/02/14 20:18:10 ferdy Exp $ + + 14 Feb 2005; Fernando J. Pereda <ferdy@gentoo.org> + mailbase-0.00-r8.ebuild: + Use symlinks instead of regular files 11 Feb 2005; Fernando J. Pereda <ferdy@gentoo.org> mailbase-0.00-r8.ebuild: diff --git a/net-mail/mailbase/Manifest b/net-mail/mailbase/Manifest index 4574748e7c14..e2615e981a3e 100644 --- a/net-mail/mailbase/Manifest +++ b/net-mail/mailbase/Manifest @@ -3,10 +3,10 @@ Hash: SHA1 MD5 78fc96c16b9dc1d4902c62927e664ce9 mailbase-0.00-r4.ebuild 773 MD5 d70889cf9ee474b30325789a31c253a9 mailbase-0.00-r6.ebuild 902 -MD5 d8a302d1b73f3733bd87a9d45c5662a6 mailbase-0.00-r8.ebuild 1996 +MD5 77aea21e883eb88df7e28f60dce77910 mailbase-0.00-r8.ebuild 2269 MD5 f224d58950c57b4f07888966ad00cd9a mailbase-0.00-r5.ebuild 877 MD5 a5d2b893cb09235e3c253d9d0c50f3fa mailbase-0.00-r7.ebuild 1922 -MD5 cc4ff2d486b1e32eb0d296ec486105f8 ChangeLog 4599 +MD5 652961b7d87eb50df9e4afd68f2667d7 ChangeLog 4720 MD5 5721b86fd871bdfab77231abc6e02f68 metadata.xml 161 MD5 e75c39fbdac8eec750d84a7183ac6721 files/common-pamd 417 MD5 d41d8cd98f00b204e9800998ecf8427e files/digest-mailbase-0.00-r4 0 @@ -19,7 +19,7 @@ MD5 a5623a262865054bd43c914e740a2e52 files/aliases 809 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) -iD8DBQFCDLd9ViELBEf1JB0RApM4AJ9FmkEgEB+Vk6DmN1o5yX15/nufJACePqqs -jtqyZKGCDZQjv/NYr80zeLU= -=fX7B +iD8DBQFCEQeNViELBEf1JB0RAuiYAJ9jxa6VZaED6Sxw9RV/lzBF9R9tHACeIwV1 +V7C1dZVbJkz7wXgXjvI+b6I= +=1pdU -----END PGP SIGNATURE----- diff --git a/net-mail/mailbase/mailbase-0.00-r8.ebuild b/net-mail/mailbase/mailbase-0.00-r8.ebuild index 7f8532d4c191..60bed671c154 100644 --- a/net-mail/mailbase/mailbase-0.00-r8.ebuild +++ b/net-mail/mailbase/mailbase-0.00-r8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/mailbase/mailbase-0.00-r8.ebuild,v 1.2 2005/02/11 13:47:29 ferdy Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/mailbase/mailbase-0.00-r8.ebuild,v 1.3 2005/02/14 20:18:10 ferdy Exp $ DESCRIPTION="MTA layout package" SRC_URI="" @@ -69,10 +69,18 @@ src_install() { if use pam; then insinto /etc/pam.d/ - for i in pop pop3 pop3d pops imap imap4 imap4s imaps; - do - newins ${FILESDIR}/common-pamd ${i} - done + + # pop file and its symlinks + newins ${FILESDIR}/common-pamd pop + dosym /etc/pam.d/pop /etc/pam.d/pop3 + dosym /etc/pam.d/pop /etc/pam.d/pop3s + dosym /etc/pam.d/pop /etc/pam.d/pops + + # imap file and its symlinks + newins ${FILESDIR}/common-pamd imap + dosym /etc/pam.d/imap /etc/pam.d/imap4 + dosym /etc/pam.d/imap /etc/pam.d/imap4s + dosym /etc/pam.d/imap /etc/pam.d/imaps fi } |