diff options
Diffstat (limited to 'net-mail/bincimap/bincimap-1.2.13.ebuild')
-rw-r--r-- | net-mail/bincimap/bincimap-1.2.13.ebuild | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/net-mail/bincimap/bincimap-1.2.13.ebuild b/net-mail/bincimap/bincimap-1.2.13.ebuild new file mode 100644 index 000000000000..53b5d00cd675 --- /dev/null +++ b/net-mail/bincimap/bincimap-1.2.13.ebuild @@ -0,0 +1,86 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/bincimap/bincimap-1.2.13.ebuild,v 1.1 2005/07/22 23:26:19 nakano Exp $ + +inherit eutils + +DESCRIPTION="IMAP server for Maildir" +SRC_URI="http://www.bincimap.org/dl/tarballs/1.2/${P}final.tar.bz2" +HOMEPAGE="http://www.bincimap.org/" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64 ~ppc ~hppa" +IUSE="ssl" + +DEPEND="virtual/libc + ssl? ( dev-libs/openssl )" + +RDEPEND="${DEPEND} + sys-process/daemontools + sys-apps/ucspi-tcp + net-mail/checkpassword" + +PROVIDE="virtual/imapd" + +S="${WORKDIR}/${P}final" + +src_compile() { + cd ${S} + epatch ${FILESDIR}/${P}-gentoo.diff + econf `use_enable ssl ssl` --sysconfdir=/etc/bincimap || die + emake localstatedir=/etc/bincimap || die +} + +src_install () { + cd ${S} + make DESTDIR=${D} localstatedir=/etc/bincimap prefix=/usr install || die + keepdir /var/log/bincimap || die + if use ssl; then + keepdir /var/log/bincimap-ssl || die + fi + + dodoc AUTHORS COPYING COPYING.OpenSSL ChangeLog INSTALL \ + NEWS README README.SSL TODO + + # backward compatibility + dosym /etc/bincimap/service/bincimap /etc/bincimap/service/imap + dosym /etc/bincimap/service/bincimaps /etc/bincimap/service/imaps +} + +pkg_postinst() { + einfo "To start bicimap at boot you have to enable the /etc/init.d/svscan rc file" + einfo "and create the following link:" + einfo "ln -s /etc/bincimap/service/bincimap /service/bincimap" + einfo "" + + if use ssl; then + einfo "If you want to use ssl connections, create the following link: " + einfo "ln -s /etc/bincimap/service/bincimaps /service/bincimaps" + einfo "" + einfo "And this command will setup bincimap-ssl on your system." + einfo "ebuild /var/db/pkg/${CATEGORY}/${PF}/${PF}.ebuild config" + einfo "" + fi + + einfo "NOTE: Default Maildir path is '~/.maildir'. If you want to modify it, " + einfo "edit /etc/bincimap/bincimap.conf" + einfo "" +} + +pkg_config() { + if use ssl; then + local pemfile=/etc/bincimap/bincimap.pem + if [ ! -f $pemfile ]; then + echo "Creating a self-signed ssl-cert:" + /usr/bin/openssl req -new -x509 -nodes -out $pemfile -days 366 -keyout $pemfile + chmod 640 $pemfile + + einfo "If You want to have a signed cert, do the following:" + einfo "openssl req -new -nodes -out req.pem \\" + einfo "-keyout $pemfile" + einfo "chmod 640 $pemfile" + einfo "Send req.pem to your CA to obtain signed_req.pem, and do:" + einfo "cat signed_req.pem >> $pemfile" + fi + fi +} |