diff options
author | Scott W Taylor <swtaylor@gentoo.org> | 2004-11-16 23:05:18 +0000 |
---|---|---|
committer | Scott W Taylor <swtaylor@gentoo.org> | 2004-11-16 23:05:18 +0000 |
commit | c1042e7627cc7b1adb871349c79fb729dd3c0733 (patch) | |
tree | 787bf88ea6e7e0072a32a7240939294b0963cf36 /mail-mta | |
parent | Version bumped. Bug 66846. (Manifest recommit) (diff) | |
download | gentoo-2-c1042e7627cc7b1adb871349c79fb729dd3c0733.tar.gz gentoo-2-c1042e7627cc7b1adb871349c79fb729dd3c0733.tar.bz2 gentoo-2-c1042e7627cc7b1adb871349c79fb729dd3c0733.zip |
change docs
Diffstat (limited to 'mail-mta')
-rw-r--r-- | mail-mta/courier-authlib/ChangeLog | 6 | ||||
-rw-r--r-- | mail-mta/courier-authlib/courier-authlib-0.50.20041113.ebuild | 13 |
2 files changed, 14 insertions, 5 deletions
diff --git a/mail-mta/courier-authlib/ChangeLog b/mail-mta/courier-authlib/ChangeLog index ed8ee1daac29..9713be565656 100644 --- a/mail-mta/courier-authlib/ChangeLog +++ b/mail-mta/courier-authlib/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for mail-mta/courier-authlib # Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/courier-authlib/ChangeLog,v 1.1 2004/11/16 07:42:52 swtaylor Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-mta/courier-authlib/ChangeLog,v 1.2 2004/11/16 23:05:18 swtaylor Exp $ + + 16 Nov 2004; Scott W Taylor <swtaylor@gentoo.org> + courier-authlib-0.50.20041113.ebuild: + doc, html, and ldap changes *courier-authlib-0.50.20041113 (16 Nov 2004) diff --git a/mail-mta/courier-authlib/courier-authlib-0.50.20041113.ebuild b/mail-mta/courier-authlib/courier-authlib-0.50.20041113.ebuild index a6f8b2bd5b42..47c6563e67d4 100644 --- a/mail-mta/courier-authlib/courier-authlib-0.50.20041113.ebuild +++ b/mail-mta/courier-authlib/courier-authlib-0.50.20041113.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/courier-authlib/courier-authlib-0.50.20041113.ebuild,v 1.2 2004/11/16 07:44:58 swtaylor Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-mta/courier-authlib/courier-authlib-0.50.20041113.ebuild,v 1.3 2004/11/16 23:05:18 swtaylor Exp $ inherit eutils @@ -35,8 +35,8 @@ src_compile() { if [ -f /var/vpopmail/etc/lib_deps ]; then myconf="${myconf} --with-authvchkpw --without-authmysql --without-authpgsql" - use mysql && einfo "vpopmail found. authmysql will not be built." - use postgres && einfo "vpopmail found. authpgsql will not be built." + use mysql && ewarn "vpopmail found. authmysql will not be built." + use postgres && ewarn "vpopmail found. authpgsql will not be built." else myconf="${myconf} --without-authvchkpw `use_with mysql authmysql` `use_with postgres authpostgres`" fi @@ -67,6 +67,11 @@ src_install() { emake install DESTDIR="${D}" || die "install" emake install-migrate DESTDIR="${D}" || die "migrate" emake install-configure DESTDIR="${D}" || die "configure" - dodoc AUTHORS COPYING* ChangeLog* INSTALL* NEWS* README* + rm ${D}/etc/courier/authlib/*.bak + dodoc AUTHORS COPYING ChangeLog* INSTALL NEWS README + dohtml README.html README_authlib.html NEWS.html INSTALL.html README.authdebug.html + use ldap && dodoc authldap.schema + use mysql && ( dodoc README.authmysql.myownquery ; dohtml README.authmysql.html ) + use postgres && dohtml README.authpostgres.html } |