diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-07-08 10:03:11 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-07-08 10:03:11 +0000 |
commit | f069512e95df1577b3b55155b0660dc5a79d4cde (patch) | |
tree | ed49058e9af65f5473b0992722b41521ff1c01a1 /mail-mta | |
parent | Remove old. (diff) | |
download | gentoo-2-f069512e95df1577b3b55155b0660dc5a79d4cde.tar.gz gentoo-2-f069512e95df1577b3b55155b0660dc5a79d4cde.tar.bz2 gentoo-2-f069512e95df1577b3b55155b0660dc5a79d4cde.zip |
Convert from "hasq" to "has".
(Portage version: 2.2.0_alpha43/cvs/Linux x86_64)
Diffstat (limited to 'mail-mta')
-rw-r--r-- | mail-mta/courier/ChangeLog | 5 | ||||
-rw-r--r-- | mail-mta/courier/courier-0.59.0.ebuild | 10 |
2 files changed, 9 insertions, 6 deletions
diff --git a/mail-mta/courier/ChangeLog b/mail-mta/courier/ChangeLog index 272cb2a24cef..5874c0a1d4c3 100644 --- a/mail-mta/courier/ChangeLog +++ b/mail-mta/courier/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for mail-mta/courier # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/courier/ChangeLog,v 1.148 2011/05/02 15:52:49 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-mta/courier/ChangeLog,v 1.149 2011/07/08 10:03:11 ssuominen Exp $ + + 08 Jul 2011; Samuli Suominen <ssuominen@gentoo.org> courier-0.59.0.ebuild: + Convert from "hasq" to "has". 02 May 2011; Jeroen Roovers <jer@gentoo.org> courier-0.65.2-r1.ebuild: Stable for HPPA (bug #359303). diff --git a/mail-mta/courier/courier-0.59.0.ebuild b/mail-mta/courier/courier-0.59.0.ebuild index 8f96bf03a1c7..2a20915757ea 100644 --- a/mail-mta/courier/courier-0.59.0.ebuild +++ b/mail-mta/courier/courier-0.59.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/courier/courier-0.59.0.ebuild,v 1.21 2011/04/16 11:14:40 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-mta/courier/courier-0.59.0.ebuild,v 1.22 2011/07/08 10:03:11 ssuominen Exp $ WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" @@ -244,13 +244,13 @@ src_install() { src_test() { addpredict / echo ">>> Test phase [check]: ${CATEGORY}/${PF}" - if hasq userpriv "${FEATURES}" ; then + if has userpriv "${FEATURES}" ; then if ! emake -j1 check; then - hasq test "${FEATURES}" && die "Make check failed. See above for details." - hasq test "${FEATURES}" || eerror "Make check failed. See above for details." + has test "${FEATURES}" && die "Make check failed. See above for details." + has test "${FEATURES}" || eerror "Make check failed. See above for details." fi else - hasq test "${FEATURES}" && eerror "Make check needs FEATURES="userpriv" to work." + has test "${FEATURES}" && eerror "Make check needs FEATURES="userpriv" to work." fi SANDBOX_PREDICT="${SANDBOX_PREDICT%:/}" } |