diff options
author | Sam James <sam@gentoo.org> | 2021-04-02 10:41:37 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-04-03 16:43:02 +0100 |
commit | 317325fa9568d164a6e273a9b891afeb2912c394 (patch) | |
tree | 53584b844c4b00c76c2b7f01142b8935b603f80b /app-mobilephone/gnokii | |
parent | app-emulation/xen: fix variable references (diff) | |
download | gentoo-317325fa9568d164a6e273a9b891afeb2912c394.tar.gz gentoo-317325fa9568d164a6e273a9b891afeb2912c394.tar.bz2 gentoo-317325fa9568d164a6e273a9b891afeb2912c394.zip |
app-mobilephone/gnokii: fix variable references
Package-Manager: Portage-3.0.14-prefix, Repoman-3.0.2
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-mobilephone/gnokii')
-rw-r--r-- | app-mobilephone/gnokii/gnokii-0.6.31-r3.ebuild | 6 | ||||
-rw-r--r-- | app-mobilephone/gnokii/gnokii-9999.ebuild | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/app-mobilephone/gnokii/gnokii-0.6.31-r3.ebuild b/app-mobilephone/gnokii/gnokii-0.6.31-r3.ebuild index 949ac0b84603..ea8a7db38ad6 100644 --- a/app-mobilephone/gnokii/gnokii-0.6.31-r3.ebuild +++ b/app-mobilephone/gnokii/gnokii-0.6.31-r3.ebuild @@ -5,7 +5,7 @@ EAPI=6 inherit autotools desktop eutils linux-info HOMEPAGE="https://www.gnokii.org/" -if [[ $PV == *9999 ]]; then +if [[ ${PV} == *9999 ]]; then EGIT_REPO_URI=" git://git.savannah.nongnu.org/${PN}.git http://git.savannah.gnu.org/r/${PN}.git" @@ -55,7 +55,7 @@ PATCHES=( ) src_prepare() { - [[ $PV == *9999 ]] && \ + [[ ${PV} == *9999 ]] && \ PATCHES=( "${FILESDIR}"/${P}-icon.patch "${FILESDIR}"/${P}-translations.patch @@ -133,7 +133,7 @@ pkg_postinst() { elog "Make sure the user that runs gnokii has read/write access to the device" elog "which your phone is connected to." elog "The simple way of doing that is to add your user to the uucp group." - if [[ $PV == *9999 ]]; then + if [[ ${PV} == *9999 ]]; then elog "This is the GIT version of ${PN}. It is experimental but may have important bug fixes." elog "You can keep track of the most recent commits at:" elog " http://git.savannah.gnu.org/cgit/gnokii.git/" diff --git a/app-mobilephone/gnokii/gnokii-9999.ebuild b/app-mobilephone/gnokii/gnokii-9999.ebuild index 48d40e6b607e..a0db30a29c88 100644 --- a/app-mobilephone/gnokii/gnokii-9999.ebuild +++ b/app-mobilephone/gnokii/gnokii-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -6,7 +6,7 @@ EAPI=6 inherit autotools desktop eutils linux-info HOMEPAGE="https://www.gnokii.org/" -if [[ $PV == *9999 ]]; then +if [[ ${PV} == *9999 ]]; then EGIT_REPO_URI=" git://git.savannah.nongnu.org/${PN}.git http://git.savannah.gnu.org/r/${PN}.git" @@ -52,7 +52,7 @@ PATCHES=( ) src_prepare() { - [[ $PV == *9999 ]] && \ + [[ ${PV} == *9999 ]] && \ PATCHES=( "${FILESDIR}"/${P}-icon.patch "${FILESDIR}"/${P}-translations.patch @@ -126,7 +126,7 @@ pkg_postinst() { elog "Make sure the user that runs gnokii has read/write access to the device" elog "which your phone is connected to." elog "The simple way of doing that is to add your user to the uucp group." - if [[ $PV == *9999 ]]; then + if [[ ${PV} == *9999 ]]; then elog "This is the GIT version of ${PN}. It is experimental but may have important bug fixes." elog "You can keep track of the most recent commits at:" elog " http://git.savannah.gnu.org/cgit/gnokii.git/" |