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 | e65061f315e59ffd811e6f277f676b39e7035e50 (patch) | |
tree | ad319f290c345dc9c6b9c97a70b117f779556d7b /mail-mta | |
parent | Version bumped. Bug 66846. (diff) | |
download | historical-e65061f315e59ffd811e6f277f676b39e7035e50.tar.gz historical-e65061f315e59ffd811e6f277f676b39e7035e50.tar.bz2 historical-e65061f315e59ffd811e6f277f676b39e7035e50.zip |
change docs
Diffstat (limited to 'mail-mta')
-rw-r--r-- | mail-mta/courier-authlib/ChangeLog | 6 | ||||
-rw-r--r-- | mail-mta/courier-authlib/Manifest | 4 | ||||
-rw-r--r-- | mail-mta/courier-authlib/courier-authlib-0.50.20041113.ebuild | 13 |
3 files changed, 16 insertions, 7 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/Manifest b/mail-mta/courier-authlib/Manifest index 117b71246318..f6a0f1904df4 100644 --- a/mail-mta/courier-authlib/Manifest +++ b/mail-mta/courier-authlib/Manifest @@ -1,4 +1,4 @@ -MD5 e2452923d85cca76ced12c8418d6c2ca courier-authlib-0.50.20041113.ebuild 2315 -MD5 9fa24972f5351b6676048fdfc15c3280 ChangeLog 404 +MD5 44ec2110954f4b5ffd12e672af4e3679 courier-authlib-0.50.20041113.ebuild 2598 +MD5 5a034035f62731aa87ba062cf4e0d832 ChangeLog 527 MD5 1639b87658242c2406f7f7f8deda7388 metadata.xml 334 MD5 c52c07c376700ecd34570d344874c984 files/digest-courier-authlib-0.50.20041113 83 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 } |