diff options
author | Thilo Bangert <bangert@gentoo.org> | 2008-06-26 10:37:33 +0000 |
---|---|---|
committer | Thilo Bangert <bangert@gentoo.org> | 2008-06-26 10:37:33 +0000 |
commit | 024932d20f0bf209a0f1b18fe4840598f20a5465 (patch) | |
tree | 3caa02604fc9f209426fe824f3325ab9ed87ac0c /sys-process/at | |
parent | amd64 stable wrt bug #229485 (diff) | |
download | gentoo-2-024932d20f0bf209a0f1b18fe4840598f20a5465.tar.gz gentoo-2-024932d20f0bf209a0f1b18fe4840598f20a5465.tar.bz2 gentoo-2-024932d20f0bf209a0f1b18fe4840598f20a5465.zip |
add virtual/mta to DEPEND (bug #170542) - fix quoting
(Portage version: 2.1.4.4)
Diffstat (limited to 'sys-process/at')
-rw-r--r-- | sys-process/at/ChangeLog | 6 | ||||
-rw-r--r-- | sys-process/at/at-3.1.10.1.ebuild | 5 | ||||
-rw-r--r-- | sys-process/at/at-3.1.8-r11.ebuild | 17 | ||||
-rw-r--r-- | sys-process/at/at-3.1.8-r12.ebuild | 7 |
4 files changed, 21 insertions, 14 deletions
diff --git a/sys-process/at/ChangeLog b/sys-process/at/ChangeLog index cd21adbb2794..096cc2fc4c6e 100644 --- a/sys-process/at/ChangeLog +++ b/sys-process/at/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-process/at # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/at/ChangeLog,v 1.11 2008/06/18 03:15:00 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/at/ChangeLog,v 1.12 2008/06/26 10:37:33 bangert Exp $ + + 26 Jun 2008; Thilo Bangert <bangert@gentoo.org> at-3.1.8-r11.ebuild, + at-3.1.8-r12.ebuild, at-3.1.10.1.ebuild: + add virtual/mta to DEPEND (bug #170542) - fix quoting *at-3.1.10.1 (18 Jun 2008) diff --git a/sys-process/at/at-3.1.10.1.ebuild b/sys-process/at/at-3.1.10.1.ebuild index ab6fc9bf50e1..49d7daaffe69 100644 --- a/sys-process/at/at-3.1.10.1.ebuild +++ b/sys-process/at/at-3.1.10.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/at/at-3.1.10.1.ebuild,v 1.1 2008/06/18 03:15:00 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/at/at-3.1.10.1.ebuild,v 1.2 2008/06/26 10:37:33 bangert Exp $ inherit eutils flag-o-matic @@ -13,7 +13,8 @@ SLOT="0" KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="" -DEPEND=">=sys-devel/flex-2.5.4a" +DEPEND="virtual/mta + >=sys-devel/flex-2.5.4a" RDEPEND="virtual/mta virtual/logger" diff --git a/sys-process/at/at-3.1.8-r11.ebuild b/sys-process/at/at-3.1.8-r11.ebuild index 1d22a59e5782..6b015c87b63c 100644 --- a/sys-process/at/at-3.1.8-r11.ebuild +++ b/sys-process/at/at-3.1.8-r11.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/at/at-3.1.8-r11.ebuild,v 1.7 2007/10/28 14:01:47 phreak Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/at/at-3.1.8-r11.ebuild,v 1.8 2008/06/26 10:37:33 bangert Exp $ inherit eutils flag-o-matic @@ -13,7 +13,8 @@ SLOT="0" KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86" IUSE="" -DEPEND="virtual/libc +DEPEND="virtual/mta + virtual/libc >=sys-devel/flex-2.5.4a" RDEPEND="virtual/libc virtual/mta @@ -26,7 +27,7 @@ pkg_setup() { src_unpack() { unpack ${A} - cd ${S} + cd "${S}" # respect LDFLAGS sed -i \ @@ -35,7 +36,7 @@ src_unpack() { # Fix bug 33696 by allowing usernames longer than 8 chars, # thanks to Yuval Kogman for the patch - epatch ${FILESDIR}/at-3.1.8-longuser.patch + epatch "${FILESDIR}"/at-3.1.8-longuser.patch } src_compile() { @@ -68,13 +69,13 @@ src_install() { dodir /var/spool/at/${i} fowners at:at /var/spool/at/${i} fperms 700 /var/spool/at/${i} - touch ${D}/var/spool/at/${i}/.SEQ + touch "${D}"/var/spool/at/${i}/.SEQ done - newinitd ${FILESDIR}/atd.rc6 atd + newinitd "${FILESDIR}"/atd.rc6 atd insinto /etc/at insopts -m 0644 - doins ${FILESDIR}/at.deny + doins "${FILESDIR}"/at.deny doman at.1 at_allow.5 atd.8 atrun.8 dodoc ChangeLog Problems README timespec } diff --git a/sys-process/at/at-3.1.8-r12.ebuild b/sys-process/at/at-3.1.8-r12.ebuild index 5c3057498ece..0b1416b92ca3 100644 --- a/sys-process/at/at-3.1.8-r12.ebuild +++ b/sys-process/at/at-3.1.8-r12.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/at/at-3.1.8-r12.ebuild,v 1.6 2007/10/28 14:01:47 phreak Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/at/at-3.1.8-r12.ebuild,v 1.7 2008/06/26 10:37:33 bangert Exp $ inherit eutils flag-o-matic @@ -13,7 +13,8 @@ SLOT="0" KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="" -DEPEND=">=sys-devel/flex-2.5.4a" +DEPEND="virtual/mta + >=sys-devel/flex-2.5.4a" RDEPEND="virtual/mta virtual/logger" |