diff options
author | Eray Aslan <eras@gentoo.org> | 2011-05-28 10:59:44 +0000 |
---|---|---|
committer | Eray Aslan <eras@gentoo.org> | 2011-05-28 10:59:44 +0000 |
commit | 8c1db4e86d3f937e02da8c760cda4d5c908b5d72 (patch) | |
tree | 05b27a51d437fd0aa258a775ec6d0990d334941b /net-mail/bincimap | |
parent | Gold fix, #369001 (diff) | |
download | gentoo-2-8c1db4e86d3f937e02da8c760cda4d5c908b5d72.tar.gz gentoo-2-8c1db4e86d3f937e02da8c760cda4d5c908b5d72.tar.bz2 gentoo-2-8c1db4e86d3f937e02da8c760cda4d5c908b5d72.zip |
Remove old. Fix HOMEPAGE and remove dovecot blocker - bug #368987
(Portage version: 2.1.9.50/cvs/Linux x86_64)
Diffstat (limited to 'net-mail/bincimap')
-rw-r--r-- | net-mail/bincimap/ChangeLog | 6 | ||||
-rw-r--r-- | net-mail/bincimap/bincimap-1.2.12.ebuild | 96 | ||||
-rw-r--r-- | net-mail/bincimap/bincimap-1.2.13.ebuild | 5 |
3 files changed, 7 insertions, 100 deletions
diff --git a/net-mail/bincimap/ChangeLog b/net-mail/bincimap/ChangeLog index 072467c1a6a8..8b4ce1a26b06 100644 --- a/net-mail/bincimap/ChangeLog +++ b/net-mail/bincimap/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-mail/bincimap # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/bincimap/ChangeLog,v 1.53 2011/02/07 10:57:11 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/bincimap/ChangeLog,v 1.54 2011/05/28 10:59:43 eras Exp $ + + 28 May 2011; Eray Aslan <eras@gentoo.org> -bincimap-1.2.12.ebuild, + bincimap-1.2.13.ebuild: + Remove old. Fix HOMEPAGE and remove dovecot blocker - bug #368987 07 Feb 2011; Thilo Bangert <bangert@gentoo.org> bincimap-1.2.12.ebuild, bincimap-1.2.13.ebuild: diff --git a/net-mail/bincimap/bincimap-1.2.12.ebuild b/net-mail/bincimap/bincimap-1.2.12.ebuild deleted file mode 100644 index 7f653306bf6d..000000000000 --- a/net-mail/bincimap/bincimap-1.2.12.ebuild +++ /dev/null @@ -1,96 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/bincimap/bincimap-1.2.12.ebuild,v 1.12 2011/03/19 17:11:35 eras 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="amd64 ~hppa ~ppc x86" -IUSE="ssl" - -DEPEND="ssl? ( dev-libs/openssl )" - -RDEPEND="${DEPEND} - virtual/daemontools - sys-apps/ucspi-tcp - net-mail/checkpassword" - -# get rid of old style virtual - bug 350792 -# all blockers really needed? -RDEPEND="${RDEPEND} - !net-mail/dovecot - !mail-mta/courier - !net-mail/courier-imap - !net-mail/cyrus-imapd - !net-mail/uw-imap" - -S="${WORKDIR}/${P}final" - -src_unpack() { - unpack ${A} - cd "${S}" - - epatch "${FILESDIR}"/${P}-gentoo.diff -} - -src_compile() { - econf $(use_enable ssl) --sysconfdir=/etc/bincimap || die - emake localstatedir=/etc/bincimap || die -} - -src_install () { - 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 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() { - elog "To start bicimap at boot you have to enable the /etc/init.d/svscan rc file" - elog "and create the following link:" - elog "ln -s /etc/bincimap/service/bincimap /service/bincimap" - elog - - if use ssl; then - elog "If you want to use ssl connections, create the following link:" - elog "ln -s /etc/bincimap/service/bincimaps /service/bincimaps" - elog - elog "And this command will setup bincimap-ssl on your system." - elog "emerge --config =${CATEGORY}/${PF}" - elog - fi - - elog "NOTE: Default Maildir path is '~/.maildir'. If you want to modify it," - elog "edit /etc/bincimap/bincimap.conf" - elog -} - -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 -} diff --git a/net-mail/bincimap/bincimap-1.2.13.ebuild b/net-mail/bincimap/bincimap-1.2.13.ebuild index e33f4f324acf..616f5bf33cb6 100644 --- a/net-mail/bincimap/bincimap-1.2.13.ebuild +++ b/net-mail/bincimap/bincimap-1.2.13.ebuild @@ -1,12 +1,12 @@ # Copyright 1999-2011 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.12 2011/03/19 17:11:35 eras Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/bincimap/bincimap-1.2.13.ebuild,v 1.13 2011/05/28 10:59:43 eras 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/" +HOMEPAGE="http://freshmeat.net/projects/bincimap/" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ~hppa ~ppc x86" @@ -22,7 +22,6 @@ RDEPEND="${DEPEND} # get rid of old style virtual - bug 350792 # all blockers really needed? RDEPEND="${RDEPEND} - !net-mail/dovecot !mail-mta/courier !net-mail/courier-imap !net-mail/cyrus-imapd |