summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hanselmann <hansmi@gentoo.org>2006-08-10 18:30:10 +0000
committerMichael Hanselmann <hansmi@gentoo.org>2006-08-10 18:30:10 +0000
commit6dda375e797b44e8855c89d859793753308cdf9c (patch)
tree9dcb28bbeaf77feeef25456f12b3802b1b0b28da /mail-mta/netqmail
parentBackport fix for use with parted-1.7 from current CVS. Bug #134039 (diff)
downloadgentoo-2-6dda375e797b44e8855c89d859793753308cdf9c.tar.gz
gentoo-2-6dda375e797b44e8855c89d859793753308cdf9c.tar.bz2
gentoo-2-6dda375e797b44e8855c89d859793753308cdf9c.zip
Fixed QMAIL_PATCH_DIR implementation, reported by Pedro Venda.
(Portage version: 2.1-r1)
Diffstat (limited to 'mail-mta/netqmail')
-rw-r--r--mail-mta/netqmail/ChangeLog6
-rw-r--r--mail-mta/netqmail/netqmail-1.05-r4.ebuild6
2 files changed, 8 insertions, 4 deletions
diff --git a/mail-mta/netqmail/ChangeLog b/mail-mta/netqmail/ChangeLog
index 700f41aeef8b..bbf0ba9da22e 100644
--- a/mail-mta/netqmail/ChangeLog
+++ b/mail-mta/netqmail/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for mail-mta/netqmail
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/netqmail/ChangeLog,v 1.14 2006/07/01 19:38:14 hansmi Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/netqmail/ChangeLog,v 1.15 2006/08/10 18:30:10 hansmi Exp $
+
+ 10 Aug 2006; Michael Hanselmann <hansmi@gentoo.org>
+ netqmail-1.05-r4.ebuild:
+ Fixed QMAIL_PATCH_DIR implementation, reported by Pedro Venda.
01 Jul 2006; Michael Hanselmann <hansmi@gentoo.org>
+files/tcprules.d-Makefile.qmail, netqmail-1.05-r4.ebuild:
diff --git a/mail-mta/netqmail/netqmail-1.05-r4.ebuild b/mail-mta/netqmail/netqmail-1.05-r4.ebuild
index 6c2f7994c559..ac881c2d1701 100644
--- a/mail-mta/netqmail/netqmail-1.05-r4.ebuild
+++ b/mail-mta/netqmail/netqmail-1.05-r4.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/mail-mta/netqmail/netqmail-1.05-r4.ebuild,v 1.5 2006/07/01 19:38:14 hansmi Exp $
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/netqmail/netqmail-1.05-r4.ebuild,v 1.6 2006/08/10 18:30:10 hansmi Exp $
inherit eutils toolchain-funcs fixheadtails flag-o-matic
@@ -92,14 +92,14 @@ src_unpack() {
fi
fi
- if [[ -n "${QMAIL_PATCH_DIR}" ]]
+ if [[ -n "${QMAIL_PATCH_DIR}" && -d "${QMAIL_PATCH_DIR}" ]]
then
echo
ewarn "You enabled custom patches from ${QMAIL_PATCH_DIR}."
ewarn "Be warned that you won't get any support when using "
ewarn "this feature. You're on your own from now!"
ebeep
- EPATCH_SOURCE="${QMAIL_PATCH_DIR}" epatch
+ epatch "${QMAIL_PATCH_DIR}/"*
echo
fi