diff options
author | Mark Loeser <halcy0n@gentoo.org> | 2009-10-12 16:22:03 +0000 |
---|---|---|
committer | Mark Loeser <halcy0n@gentoo.org> | 2009-10-12 16:22:03 +0000 |
commit | 015b51736af9be074a7efa75faae498b6c4b4c17 (patch) | |
tree | fa662e2a9507093f74d9056b77753c2112d9e99b /app-antivirus | |
parent | old (diff) | |
download | gentoo-2-015b51736af9be074a7efa75faae498b6c4b4c17.tar.gz gentoo-2-015b51736af9be074a7efa75faae498b6c4b4c17.tar.bz2 gentoo-2-015b51736af9be074a7efa75faae498b6c4b4c17.zip |
QA fixes; unquoted variables
(Portage version: 2.2_rc45/cvs/Linux x86_64)
Diffstat (limited to 'app-antivirus')
3 files changed, 14 insertions, 10 deletions
diff --git a/app-antivirus/bitdefender-console/ChangeLog b/app-antivirus/bitdefender-console/ChangeLog index d777e1abf380..73c9a4d751fb 100644 --- a/app-antivirus/bitdefender-console/ChangeLog +++ b/app-antivirus/bitdefender-console/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-antivirus/bitdefender-console # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-antivirus/bitdefender-console/ChangeLog,v 1.23 2009/09/23 15:06:09 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-antivirus/bitdefender-console/ChangeLog,v 1.24 2009/10/12 16:22:03 halcy0n Exp $ + + 12 Oct 2009; Mark Loeser <halcy0n@gentoo.org> + bitdefender-console-7.0.1-r1.ebuild, bitdefender-console-7.1.ebuild: + QA fixes; unquoted variables 23 Sep 2009; Patrick Lauer <patrick@gentoo.org> bitdefender-console-7.0.1-r1.ebuild, bitdefender-console-7.1.ebuild: diff --git a/app-antivirus/bitdefender-console/bitdefender-console-7.0.1-r1.ebuild b/app-antivirus/bitdefender-console/bitdefender-console-7.0.1-r1.ebuild index f943a895b29d..301331703664 100644 --- a/app-antivirus/bitdefender-console/bitdefender-console-7.0.1-r1.ebuild +++ b/app-antivirus/bitdefender-console/bitdefender-console-7.0.1-r1.ebuild @@ -1,11 +1,11 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-antivirus/bitdefender-console/bitdefender-console-7.0.1-r1.ebuild,v 1.12 2009/09/23 15:06:09 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-antivirus/bitdefender-console/bitdefender-console-7.0.1-r1.ebuild,v 1.13 2009/10/12 16:22:03 halcy0n Exp $ inherit pax-utils MY_P=BitDefender-Console-Antivirus-${PV}-3.linux-gcc3x.i586.run -S=${WORKDIR}/i386 +S="${WORKDIR}"/i386 DESCRIPTION="BitDefender console antivirus" HOMEPAGE="http://www.bitdefender.com/" @@ -26,13 +26,13 @@ IUSE="" src_unpack () { #Extract the tgz achive contained in MY_P - SKIP=`sed -n '/^\x1F/q;p' < ${DISTDIR}/${MY_P} | wc -c` - dd if=${DISTDIR}/${MY_P} ibs=1 skip=$SKIP 2> /dev/null | tar -xz || die "Failed to extract from archive" + SKIP=`sed -n '/^\x1F/q;p' < "${DISTDIR}"/${MY_P} | wc -c` + dd if="${DISTDIR}"/${MY_P} ibs=1 skip=$SKIP 2> /dev/null | tar -xz || die "Failed to extract from archive" } src_install () { - cd ${S} + cd "${S}" INSTALLDIR=/opt QUARDIR=/var/bdc diff --git a/app-antivirus/bitdefender-console/bitdefender-console-7.1.ebuild b/app-antivirus/bitdefender-console/bitdefender-console-7.1.ebuild index 7711bdb450e9..4c62c1ee8c12 100644 --- a/app-antivirus/bitdefender-console/bitdefender-console-7.1.ebuild +++ b/app-antivirus/bitdefender-console/bitdefender-console-7.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-antivirus/bitdefender-console/bitdefender-console-7.1.ebuild,v 1.7 2009/09/23 15:06:09 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-antivirus/bitdefender-console/bitdefender-console-7.1.ebuild,v 1.8 2009/10/12 16:22:03 halcy0n Exp $ inherit pax-utils @@ -26,8 +26,8 @@ IUSE="" src_unpack () { #Extract the tgz achive contained in MY_P - SKIP=`sed -n '/^\x1F/q;p' < ${DISTDIR}/${MY_P} | wc -c` - dd if=${DISTDIR}/${MY_P} ibs=1 skip=$SKIP 2> /dev/null | tar -xz || die "Failed to extract from archive" + SKIP=`sed -n '/^\x1F/q;p' < "${DISTDIR}"/${MY_P} | wc -c` + dd if="${DISTDIR}"/${MY_P} ibs=1 skip=$SKIP 2> /dev/null | tar -xz || die "Failed to extract from archive" } src_install() { @@ -35,7 +35,7 @@ src_install() { local newn local is_newer=0 - cd ${S} + cd "${S}" INSTALLDIR=/opt QUARDIR=/var/bdc |