summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2010-04-19 10:58:08 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2010-04-19 10:58:08 +0000
commitc00f790a7daafa5f27174a3f48e5b4a8673d8a05 (patch)
tree66f41ece39772e2405de7ac263af533eb0ce04bc /net-mail
parentUpdate drop_sse2 patch, bug #315247 (diff)
downloadgentoo-2-c00f790a7daafa5f27174a3f48e5b4a8673d8a05.tar.gz
gentoo-2-c00f790a7daafa5f27174a3f48e5b4a8673d8a05.tar.bz2
gentoo-2-c00f790a7daafa5f27174a3f48e5b4a8673d8a05.zip
QA: fix some obvious mistakes, make sure to die if the newsbin fails (bug #298587); fix build with cyrus-imap-dev-2.3.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'net-mail')
-rw-r--r--net-mail/cyrus-imspd/ChangeLog9
-rw-r--r--net-mail/cyrus-imspd/cyrus-imspd-1.8-r1.ebuild20
2 files changed, 17 insertions, 12 deletions
diff --git a/net-mail/cyrus-imspd/ChangeLog b/net-mail/cyrus-imspd/ChangeLog
index 50d6a5c14138..bba843fb4287 100644
--- a/net-mail/cyrus-imspd/ChangeLog
+++ b/net-mail/cyrus-imspd/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-mail/cyrus-imspd
-# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/cyrus-imspd/ChangeLog,v 1.18 2007/12/26 21:54:03 phreak Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-mail/cyrus-imspd/ChangeLog,v 1.19 2010/04/19 10:58:08 flameeyes Exp $
+
+ 19 Apr 2010; Diego E. Pettenò <flameeyes@gentoo.org>
+ cyrus-imspd-1.8-r1.ebuild:
+ QA: fix some obvious mistakes, make sure to die if the newsbin fails (bug
+ #298587); fix build with cyrus-imap-dev-2.3.
26 Dec 2007; Christian Heim <phreak@gentoo.org>
-files/digest-cyrus-imspd-1.8:
diff --git a/net-mail/cyrus-imspd/cyrus-imspd-1.8-r1.ebuild b/net-mail/cyrus-imspd/cyrus-imspd-1.8-r1.ebuild
index 5c416454557e..8e36307cc41f 100644
--- a/net-mail/cyrus-imspd/cyrus-imspd-1.8-r1.ebuild
+++ b/net-mail/cyrus-imspd/cyrus-imspd-1.8-r1.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/cyrus-imspd/cyrus-imspd-1.8-r1.ebuild,v 1.1 2007/12/16 13:48:30 dertobi123 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/cyrus-imspd/cyrus-imspd-1.8-r1.ebuild,v 1.2 2010/04/19 10:58:08 flameeyes Exp $
inherit eutils ssl-cert
@@ -27,7 +27,7 @@ src_unpack() {
epatch "${FILESDIR}/${P}-gentoo.patch"
# Cyrus 2.2.x has an extra library.
- if [ "`best_version '=dev-libs/cyrus-imap-dev-2.2*'`" ] ; then
+ if has_version '>=dev-libs/cyrus-imap-dev-2.2'; then
sed -i -e "s:-lcyrus:-lcyrus -lcyrus_min:" \
"${S}/imsp/Makefile.in" \
"${S}/cmulocal/libcyrus.m4" || die "sed failed"
@@ -36,7 +36,7 @@ src_unpack() {
src_compile() {
econf \
- $(use_with ldap ldap ldap) \
+ $(use_with ldap) \
$(use_enable kerberos gssapi) \
--without-krb \
--with-auth=unix
@@ -49,23 +49,23 @@ src_compile() {
}
src_install() {
- newsbin imsp/cyrus-imspd imspd
+ newsbin imsp/cyrus-imspd imspd || die
- newinitd "${FILESDIR}/imspd.rc6" imspd
- newconfd "${FILESDIR}/imspd.conf" imspd
+ newinitd "${FILESDIR}/imspd.rc6" imspd || die
+ newconfd "${FILESDIR}/imspd.conf" imspd || die
keepdir /var/imsp{,/user}
if use ssl ; then
insinto /etc/stunnel
- newins "${FILESDIR}/stunnel.conf" imspd.conf
+ newins "${FILESDIR}/stunnel.conf" imspd.conf || die
fi
- dodoc README imsp/options.sample notes/*
+ dodoc README imsp/options.sample notes/* || die
}
pkg_postinst() {
if use ssl ; then
- dosed "s:#IMSPD_USE_SSL:IMSPD_USE_SSL:" "${ROOT:-/}"etc/conf.d/imsp
+ sed -i -e "s:#IMSPD_USE_SSL:IMSPD_USE_SSL:" "${ROOT:-/}"etc/conf.d/imsp
SSL_ORGANIZATION="${SSL_ORGANIZATION:-Cyrus IMSP Server}"
install_cert /etc/ssl/imspd/server
fi