diff options
author | Mark Loeser <halcy0n@gentoo.org> | 2009-10-14 00:58:35 +0000 |
---|---|---|
committer | Mark Loeser <halcy0n@gentoo.org> | 2009-10-14 00:58:35 +0000 |
commit | d32e83d57ceea7d77aef0eb8d4fad5b664008bcc (patch) | |
tree | 62b2e06d756a4033edfd6fab04b7f7912b3ecb0e /app-crypt | |
parent | QA fixes; unquoted variables (diff) | |
download | gentoo-2-d32e83d57ceea7d77aef0eb8d4fad5b664008bcc.tar.gz gentoo-2-d32e83d57ceea7d77aef0eb8d4fad5b664008bcc.tar.bz2 gentoo-2-d32e83d57ceea7d77aef0eb8d4fad5b664008bcc.zip |
QA fixes; unquoted variables
(Portage version: 2.2_rc45/cvs/Linux x86_64)
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/rotix/ChangeLog | 7 | ||||
-rw-r--r-- | app-crypt/rotix/rotix-0.83.ebuild | 10 |
2 files changed, 10 insertions, 7 deletions
diff --git a/app-crypt/rotix/ChangeLog b/app-crypt/rotix/ChangeLog index 0e134fe69a8d..dab11853d242 100644 --- a/app-crypt/rotix/ChangeLog +++ b/app-crypt/rotix/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-crypt/rotix -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/rotix/ChangeLog,v 1.10 2008/04/21 16:34:24 phreak Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/rotix/ChangeLog,v 1.11 2009/10/14 00:58:35 halcy0n Exp $ + + 14 Oct 2009; Mark Loeser <halcy0n@gentoo.org> rotix-0.83.ebuild: + QA fixes; unquoted variables 21 Apr 2008; Christian Heim <phreak@gentoo.org> metadata.xml: Fix up metadata.xml. If there's no maintainer for the package, the metadata diff --git a/app-crypt/rotix/rotix-0.83.ebuild b/app-crypt/rotix/rotix-0.83.ebuild index 788117dadda3..8004b9ca75d0 100644 --- a/app-crypt/rotix/rotix-0.83.ebuild +++ b/app-crypt/rotix/rotix-0.83.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/rotix/rotix-0.83.ebuild,v 1.12 2007/03/21 21:51:45 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/rotix/rotix-0.83.ebuild,v 1.13 2009/10/14 00:58:35 halcy0n Exp $ inherit eutils @@ -17,8 +17,8 @@ RDEPEND="nls? ( sys-devel/gettext )" src_unpack() { unpack ${A} - cd ${S} - epatch ${FILESDIR}/${PV}-respect-CFLAGS-and-dont-strip.patch + cd "${S}" + epatch "${FILESDIR}"/${PV}-respect-CFLAGS-and-dont-strip.patch } src_compile() { @@ -29,5 +29,5 @@ src_compile() { } src_install() { - emake DESTDIR=${D} install || die + emake DESTDIR="${D}" install || die } |