diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-11-02 21:38:29 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-11-02 21:38:29 +0000 |
commit | f0a8e58d384a3478d6a253c8366d6218b6053fe2 (patch) | |
tree | 4bc1a1ad6791dd63ff61a6bd927560067b0ee9bc /mail-mta/sendmail/sendmail-8.14.5.ebuild | |
parent | Bump to 0.12 from the gnome overlay, needed for empathy-3.2. Notable changes:... (diff) | |
download | gentoo-2-f0a8e58d384a3478d6a253c8366d6218b6053fe2.tar.gz gentoo-2-f0a8e58d384a3478d6a253c8366d6218b6053fe2.tar.bz2 gentoo-2-f0a8e58d384a3478d6a253c8366d6218b6053fe2.zip |
Drop "die" from enew{user,group} since these have always taken care of calling it when necessary.
(Portage version: 2.2.0_alpha71/cvs/Linux x86_64)
Diffstat (limited to 'mail-mta/sendmail/sendmail-8.14.5.ebuild')
-rw-r--r-- | mail-mta/sendmail/sendmail-8.14.5.ebuild | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/mail-mta/sendmail/sendmail-8.14.5.ebuild b/mail-mta/sendmail/sendmail-8.14.5.ebuild index d2be94d298aa..2957afb1fe76 100644 --- a/mail-mta/sendmail/sendmail-8.14.5.ebuild +++ b/mail-mta/sendmail/sendmail-8.14.5.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/sendmail/sendmail-8.14.5.ebuild,v 1.1 2011/05/17 17:59:20 eras Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-mta/sendmail/sendmail-8.14.5.ebuild,v 1.2 2011/11/02 21:38:29 vapier Exp $ EAPI="2" @@ -48,11 +48,8 @@ PDEPEND="!mbox? ( mail-filter/procmail )" LIBMILTER_VER=1.0.2 pkg_setup() { - einfo "checking for smmsp group... create if missing." - enewgroup smmsp 209 || die "problem adding group smmsp" - einfo "checking for smmsp user... create if missing." - enewuser smmsp 209 -1 /var/spool/mqueue smmsp \ - || die "problem adding user smmsp" + enewgroup smmsp 209 + enewuser smmsp 209 -1 /var/spool/mqueue smmsp } src_prepare() { |