diff options
author | Roy Marples <uberlord@gentoo.org> | 2006-06-14 22:22:05 +0000 |
---|---|---|
committer | Roy Marples <uberlord@gentoo.org> | 2006-06-14 22:22:05 +0000 |
commit | 9995b0226559fe92b4ca639a8a63da5b584656ea (patch) | |
tree | a7d5d906b51be9527c624bc26e9edaa3438b3503 /net-mail/dovecot | |
parent | Fixing bug #136815 by adding back specific version of cmake. (diff) | |
download | gentoo-2-9995b0226559fe92b4ca639a8a63da5b584656ea.tar.gz gentoo-2-9995b0226559fe92b4ca639a8a63da5b584656ea.tar.bz2 gentoo-2-9995b0226559fe92b4ca639a8a63da5b584656ea.zip |
Documentation now installed via the doc USE flag.
Example configs for ldap and sql are now copied instead of moved, #136812.
(Portage version: 2.1)
Diffstat (limited to 'net-mail/dovecot')
-rw-r--r-- | net-mail/dovecot/ChangeLog | 4 | ||||
-rw-r--r-- | net-mail/dovecot/dovecot-1.0_beta9.ebuild | 14 |
2 files changed, 11 insertions, 7 deletions
diff --git a/net-mail/dovecot/ChangeLog b/net-mail/dovecot/ChangeLog index e26adae0adb0..a40c973e85b6 100644 --- a/net-mail/dovecot/ChangeLog +++ b/net-mail/dovecot/ChangeLog @@ -1,8 +1,10 @@ # ChangeLog for net-mail/dovecot # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.51 2006/06/14 15:36:06 uberlord Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/ChangeLog,v 1.52 2006/06/14 22:22:05 uberlord Exp $ 14 Jun 2006; Roy Marples <uberlord@gentoo.org> dovecot-1.0_beta9.ebuild: + Documentation now installed via the doc USE flag. + Example configs for ldap and sql are now copied instead of moved, #136812. Set ssl_listen = * when emerged without ipv6, #136781 *dovecot-1.0_beta9 (13 Jun 2006) diff --git a/net-mail/dovecot/dovecot-1.0_beta9.ebuild b/net-mail/dovecot/dovecot-1.0_beta9.ebuild index 88e2aed0f068..28b33c0ce808 100644 --- a/net-mail/dovecot/dovecot-1.0_beta9.ebuild +++ b/net-mail/dovecot/dovecot-1.0_beta9.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/dovecot-1.0_beta9.ebuild,v 1.2 2006/06/14 15:36:06 uberlord Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/dovecot/dovecot-1.0_beta9.ebuild,v 1.3 2006/06/14 22:22:05 uberlord Exp $ inherit eutils @@ -14,7 +14,7 @@ SLOT="0" LICENSE="LGPL-2.1" KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" -IUSE="debug ipv6 kerberos ldap mbox mysql pop3d pam postgres ssl vpopmail" +IUSE="debug doc ipv6 kerberos ldap mbox mysql pop3d pam postgres ssl vpopmail" DEPEND=">=sys-apps/sed-4 kerberos? ( virtual/krb5 ) @@ -106,7 +106,7 @@ src_install () { # Install SQL configuration if use mysql || use postgres ; then - mv doc/dovecot-sql.conf "${D}"/etc + cp doc/dovecot-sql.conf "${D}"/etc fperms 600 /etc/dovecot-sql.conf sed -i -e '/db sql/,/args/ s|=|= /etc/dovecot-sql.conf|' \ "${D}"/etc/dovecot.conf @@ -114,7 +114,7 @@ src_install () { # Install LDAP configuration if use ldap ; then - mv doc/dovecot-ldap.conf "${D}"/etc + cp doc/dovecot-ldap.conf "${D}"/etc fperms 600 /etc/dovecot-ldap.conf sed -i -e '/db ldap/,/args/ s|=|= /etc/dovecot-ldap.conf|' \ "${D}"/etc/dovecot.conf @@ -122,8 +122,10 @@ src_install () { # Documentation rm -rf "${D}"/usr/share/doc/dovecot - dodoc AUTHORS NEWS README TODO dovecot-example.conf - dodoc doc/*.txt doc/*.conf doc/*.cnf doc/mkcert.sh + if use doc ; then + dodoc AUTHORS NEWS README TODO dovecot-example.conf + dodoc doc/*.txt doc/*.conf doc/*.cnf doc/mkcert.sh + fi # Create SSL certificates if use ssl ; then |