diff options
author | Tim Harder <radhermit@gentoo.org> | 2012-09-18 04:23:44 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2012-09-18 04:23:44 +0000 |
commit | 57ffe26d6a79e56116ad01b5c155f97079b94502 (patch) | |
tree | 3f61a08f1d82f57ee613b723643974eb13750967 /www-apps/mypictures/mypictures-20040202.ebuild | |
parent | Remove redundant maintainer from metadata. (diff) | |
download | gentoo-2-57ffe26d6a79e56116ad01b5c155f97079b94502.tar.gz gentoo-2-57ffe26d6a79e56116ad01b5c155f97079b94502.tar.bz2 gentoo-2-57ffe26d6a79e56116ad01b5c155f97079b94502.zip |
Fix quoting.
(Portage version: 2.2.0_alpha128/cvs/Linux x86_64)
Diffstat (limited to 'www-apps/mypictures/mypictures-20040202.ebuild')
-rw-r--r-- | www-apps/mypictures/mypictures-20040202.ebuild | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/www-apps/mypictures/mypictures-20040202.ebuild b/www-apps/mypictures/mypictures-20040202.ebuild index 47c850704b32..f29e6da28ad6 100644 --- a/www-apps/mypictures/mypictures-20040202.ebuild +++ b/www-apps/mypictures/mypictures-20040202.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/mypictures/mypictures-20040202.ebuild,v 1.2 2004/09/03 17:17:20 pvdabeel Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apps/mypictures/mypictures-20040202.ebuild,v 1.3 2012/09/18 04:23:44 radhermit Exp $ inherit webapp eutils @@ -18,12 +18,12 @@ RDEPEND="media-gfx/imagemagick" S=${WORKDIR}/${PN} src_unpack () { - unpack "${A}" + unpack ${A} cd "${S}" # we have to patch the path to imagemagick's convert tool - epatch ${FILESDIR}/mypictures.diff + epatch "${FILESDIR}"/mypictures.diff sed -i "s|/usr/bin/X11/convert|/usr/bin/convert|g;" index.php } @@ -35,12 +35,12 @@ src_compile() { src_install() { webapp_src_preinst - cp index.php exifReader.inc exifWriter.inc ${D}${MY_HTDOCSDIR} - mkdir ${D}${MY_HTDOCSDIR}/.img - cp .img/* ${D}${MY_HTDOCSDIR}/.img + cp index.php exifReader.inc exifWriter.inc "${D}${MY_HTDOCSDIR}" + mkdir "${D}${MY_HTDOCSDIR}"/.img + cp .img/* "${D}${MY_HTDOCSDIR}"/.img dodoc CHANGES README - webapp_configfile ${MY_HTDOCSDIR} + webapp_configfile "${MY_HTDOCSDIR}" webapp_src_install } |