diff options
author | Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> | 2008-11-02 06:08:11 +0000 |
---|---|---|
committer | Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> | 2008-11-02 06:08:11 +0000 |
commit | 6e66df634b414bb04aff21c44ca7c5359330aa9e (patch) | |
tree | 8d46b008897fb93c8fc8f5fe0cd58836273f60d8 /mail-client | |
parent | Removing eradicator as a maintainer since he was retired. (diff) | |
download | gentoo-2-6e66df634b414bb04aff21c44ca7c5359330aa9e.tar.gz gentoo-2-6e66df634b414bb04aff21c44ca7c5359330aa9e.tar.bz2 gentoo-2-6e66df634b414bb04aff21c44ca7c5359330aa9e.zip |
Quoted a few vars.
(Portage version: 2.2_rc12/cvs/Linux 2.6.27-gentoo x86_64)
Diffstat (limited to 'mail-client')
-rw-r--r-- | mail-client/squirrelmail/ChangeLog | 7 | ||||
-rw-r--r-- | mail-client/squirrelmail/squirrelmail-1.4.10a-r2.ebuild | 20 | ||||
-rw-r--r-- | mail-client/squirrelmail/squirrelmail-1.4.13-r1.ebuild | 16 | ||||
-rw-r--r-- | mail-client/squirrelmail/squirrelmail-1.5.1-r7.ebuild | 34 |
4 files changed, 41 insertions, 36 deletions
diff --git a/mail-client/squirrelmail/ChangeLog b/mail-client/squirrelmail/ChangeLog index 3e189bcd608b..913e13e0af99 100644 --- a/mail-client/squirrelmail/ChangeLog +++ b/mail-client/squirrelmail/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for mail-client/squirrelmail # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/ChangeLog,v 1.124 2008/11/02 05:59:00 jmbsvicetto Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/ChangeLog,v 1.125 2008/11/02 06:08:11 jmbsvicetto Exp $ + + 02 Nov 2008; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> + squirrelmail-1.4.10a-r2.ebuild, squirrelmail-1.4.13-r1.ebuild, + squirrelmail-1.5.1-r7.ebuild: + Quoted some vars. 02 Nov 2008; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> metadata.xml: diff --git a/mail-client/squirrelmail/squirrelmail-1.4.10a-r2.ebuild b/mail-client/squirrelmail/squirrelmail-1.4.10a-r2.ebuild index a2f98d1b8108..22637284aa0d 100644 --- a/mail-client/squirrelmail/squirrelmail-1.4.10a-r2.ebuild +++ b/mail-client/squirrelmail/squirrelmail-1.4.10a-r2.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/mail-client/squirrelmail/squirrelmail-1.4.10a-r2.ebuild,v 1.8 2008/01/10 17:06:36 alonbl Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/squirrelmail-1.4.10a-r2.ebuild,v 1.9 2008/11/02 06:08:11 jmbsvicetto Exp $ IUSE="crypt ldap spell ssl filter mysql postgres nls" @@ -56,14 +56,14 @@ src_unpack() { unpack ${MY_P}.tar.bz2 unpack squirrelmail-decode-${DECODING_VER}.tar.bz2 - cd ${S} + cd "${S}" mv config/config_default.php config/config.php sed -i "s:'/var/local/squirrelmail/data/':SM_PATH . 'data/':" config/config.php # Now do the plugins - cd ${S}/plugins + cd "${S}"/plugins sed -i 's:/usr/games/fortune:/usr/bin/fortune:g' fortune/setup.php || die "Unable to fix fortunes plugin." @@ -82,7 +82,7 @@ src_unpack() { use ldap && unpack ldapuserdata-${LDAP_USERDATA_VER}.tar.gz && - epatch ${FILESDIR}/ldapuserdata-${LDAP_USERDATA_VER}-gentoo.patch && + epatch "${FILESDIR}/ldapuserdata-${LDAP_USERDATA_VER}-gentoo.patch" && mv ldapuserdata/config_sample.php ldapuserdata/config.php use ssl && @@ -92,11 +92,11 @@ src_unpack() { mv show_ssl_link/config.php.sample show_ssl_link/config.php use nls && - cd ${S} && + cd "${S}" && unpack all_locales-${LOCALES_VER}.tar.bz2 - cd ${S} - use crypt && epatch ${FILESDIR}/squirrelmail-gpg-2.1-CVE-2005-1924.patch + cd "${S}" + use crypt && epatch "${FILESDIR}"/squirrelmail-gpg-2.1-CVE-2005-1924.patch } src_compile() { @@ -176,9 +176,9 @@ src_install() { # Copy the app's main files einfo "Installing squirrelmail files." - cp -r . ${D}${MY_HTDOCSDIR} + cp -r . "${D}${MY_HTDOCSDIR}" - cp ${WORKDIR}/squirrelmail-decode-${DECODING_VER}/*/*.php ${D}${MY_HTDOCSDIR}/functions/decode + cp "${WORKDIR}/squirrelmail-decode-${DECODING_VER}/*/*.php" "${D}${MY_HTDOCSDIR}/functions/decode" # Identify the configuration files that this app uses local configs="config/config.php config/config_local.php plugins/retrieveuserdata/config.php" @@ -207,7 +207,7 @@ src_install() { done # add the post-installation instructions - webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt + webapp_postinst_txt en "${FILESDIR}/postinstall-en.txt" # all done # diff --git a/mail-client/squirrelmail/squirrelmail-1.4.13-r1.ebuild b/mail-client/squirrelmail/squirrelmail-1.4.13-r1.ebuild index 58f8b1a4ae32..2abc40ff589b 100644 --- a/mail-client/squirrelmail/squirrelmail-1.4.13-r1.ebuild +++ b/mail-client/squirrelmail/squirrelmail-1.4.13-r1.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/mail-client/squirrelmail/squirrelmail-1.4.13-r1.ebuild,v 1.1 2008/01/12 02:40:39 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/squirrelmail-1.4.13-r1.ebuild,v 1.2 2008/11/02 06:08:11 jmbsvicetto Exp $ IUSE="ldap spell ssl filter mysql postgres nls" @@ -53,14 +53,14 @@ src_unpack() { unpack ${MY_P}.tar.bz2 unpack squirrelmail-decode-${DECODING_VER}.tar.bz2 - cd ${S} + cd "${S}" mv config/config_default.php config/config.php sed -i "s:'/var/local/squirrelmail/data/':SM_PATH . 'data/':" config/config.php # Now do the plugins - cd ${S}/plugins + cd "${S}"/plugins sed -i 's:/usr/games/fortune:/usr/bin/fortune:g' fortune/setup.php || die "Unable to fix fortunes plugin." @@ -76,7 +76,7 @@ src_unpack() { use ldap && unpack ldapuserdata-${LDAP_USERDATA_VER}.tar.gz && - epatch ${FILESDIR}/ldapuserdata-${LDAP_USERDATA_VER}-gentoo.patch && + epatch "${FILESDIR}/ldapuserdata-${LDAP_USERDATA_VER}-gentoo.patch" && mv ldapuserdata/config_sample.php ldapuserdata/config.php use ssl && @@ -86,7 +86,7 @@ src_unpack() { mv show_ssl_link/config.php.sample show_ssl_link/config.php use nls && - cd ${S} && + cd "${S}" && unpack all_locales-${LOCALES_VER}.tar.bz2 } @@ -159,9 +159,9 @@ src_install() { # Copy the app's main files einfo "Installing squirrelmail files." - cp -r . ${D}${MY_HTDOCSDIR} + cp -r . "${D}${MY_HTDOCSDIR}" - cp ${WORKDIR}/squirrelmail-decode-${DECODING_VER}/*/*.php ${D}${MY_HTDOCSDIR}/functions/decode + cp "${WORKDIR}/squirrelmail-decode-${DECODING_VER}/*/*.php" "${D}${MY_HTDOCSDIR}/functions/decode" # Identify the configuration files that this app uses local configs="config/config.php config/config_local.php plugins/retrieveuserdata/config.php" @@ -189,7 +189,7 @@ src_install() { done # add the post-installation instructions - webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt + webapp_postinst_txt en "${FILESDIR}/postinstall-en.txt" # all done # diff --git a/mail-client/squirrelmail/squirrelmail-1.5.1-r7.ebuild b/mail-client/squirrelmail/squirrelmail-1.5.1-r7.ebuild index 4048bc394e85..b162e37723a2 100644 --- a/mail-client/squirrelmail/squirrelmail-1.5.1-r7.ebuild +++ b/mail-client/squirrelmail/squirrelmail-1.5.1-r7.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/mail-client/squirrelmail/squirrelmail-1.5.1-r7.ebuild,v 1.1 2008/01/12 02:40:39 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/squirrelmail/squirrelmail-1.5.1-r7.ebuild,v 1.2 2008/11/02 06:08:11 jmbsvicetto Exp $ IUSE="ldap spell ssl filter mysql postgres nls" @@ -53,21 +53,21 @@ src_unpack() { unpack ${MY_P}.tar.bz2 unpack squirrelmail-decode-${DECODING_VER}.tar.bz2 - cd ${S} - epatch ${FILESDIR}/squirrelmail-1.5.1-CVE-2006-4019.patch - epatch ${FILESDIR}/squirrelmail-1.5.1-CVE-2006-6142-draft_composesess.patch - epatch ${FILESDIR}/squirrelmail-1.5.1-CVE-2006-6142-mailto.patch - epatch ${FILESDIR}/squirrelmail-1.5.1-CVE-2006-6142-mime.patch - epatch ${FILESDIR}/squirrelmail-1.5.1-ie-mime.patch - epatch ${FILESDIR}/squirrelmail-1.5.1-CVE-2007-1262.patch - epatch ${FILESDIR}/squirrelmail-1.5.1-sqimap_get_message.patch + cd "${S}" + epatch "${FILESDIR}/squirrelmail-1.5.1-CVE-2006-4019.patch" + epatch "${FILESDIR}/squirrelmail-1.5.1-CVE-2006-6142-draft_composesess.patch" + epatch "${FILESDIR}/squirrelmail-1.5.1-CVE-2006-6142-mailto.patch" + epatch "${FILESDIR}/squirrelmail-1.5.1-CVE-2006-6142-mime.patch" + epatch "${FILESDIR}/squirrelmail-1.5.1-ie-mime.patch" + epatch "${FILESDIR}/squirrelmail-1.5.1-CVE-2007-1262.patch" + epatch "${FILESDIR}/squirrelmail-1.5.1-sqimap_get_message.patch" mv config/config_default.php config/config.php sed -i "s:'/var/local/squirrelmail/data':SM_PATH . 'data/':" config/config.php # Now do the plugins - cd ${S}/plugins + cd "${S}"/plugins mv fortune/config_default.php fortune/config.php sed -i 's:/usr/games/fortune:/usr/bin/fortune:g' fortune/config.php @@ -94,7 +94,7 @@ src_unpack() { use ldap && unpack ldapuserdata-${LDAP_USERDATA_VER}.tar.gz && - epatch ${FILESDIR}/ldapuserdata-${LDAP_USERDATA_VER}-gentoo.patch && + epatch "${FILESDIR}/ldapuserdata-${LDAP_USERDATA_VER}-gentoo.patch" && mv ldapuserdata/config_sample.php ldapuserdata/config.php use ssl && @@ -104,7 +104,7 @@ src_unpack() { mv show_ssl_link/config.php.sample show_ssl_link/config.php use nls && - cd ${S} && + cd "${S}" && unpack all_locales-${LOCALES_VER}.tar.bz2 } @@ -118,7 +118,7 @@ src_install() { # Copy the app's main files einfo "Installing squirrelmail files." - cp -r . ${D}${MY_HTDOCSDIR} + cp -r . "${D}${MY_HTDOCSDIR}" keepdir ${MY_HTDOCSDIR}/data @@ -129,18 +129,18 @@ src_install() { for doc in AUTHORS COPYING ChangeLog INSTALL README ReleaseNotes UPGRADE ; do dodoc ${doc} - rm -f ${D}${MY_HTDOCSDIR}/${doc} + rm -f "${D}${MY_HTDOCSDIR}/${doc}" done for doc in plugins/{README.plugins,*/{INSTALL,README,COPYRIGHTS,CHANGELOG,API,UPGRADE,TODO,README.txt,INSTALL.txt,user_example.txt}} ; do if [[ -f ${doc} ]] ; then docinto $(dirname ${doc}) dodoc ${doc} - rm -f ${D}${MY_HTDOCSDIR}/${doc} + rm -f "${D}${MY_HTDOCSDIR}/${doc}" fi done - cp ${WORKDIR}/squirrelmail-decode-${DECODING_VER}/*/*.php ${D}${MY_HTDOCSDIR}/functions/decode + cp "${WORKDIR}/squirrelmail-decode-${DECODING_VER}/*/*.php" "${D}${MY_HTDOCSDIR}/functions/decode" # Identify the configuration files that this app uses for file in config/config.php plugins/*/{config.php,sqspell_config.php,gpg_local_prefs.txt}; do @@ -165,7 +165,7 @@ src_install() { done # add the post-installation instructions - webapp_postinst_txt en ${FILESDIR}/postinstall-en.txt + webapp_postinst_txt en "${FILESDIR}/postinstall-en.txt" # all done # |