diff options
author | Michael Haubenwallner <haubi@gentoo.org> | 2012-09-24 18:49:44 +0000 |
---|---|---|
committer | Michael Haubenwallner <haubi@gentoo.org> | 2012-09-24 18:49:44 +0000 |
commit | 16b719feb8e4c08aa0cd663997beac08c2897417 (patch) | |
tree | 977139a2c12b8b68bf1b4d0425cf7c8660019985 /dev-db | |
parent | alpha/ia64/s390/sh/sparc stable wrt #434210 (diff) | |
download | gentoo-2-16b719feb8e4c08aa0cd663997beac08c2897417.tar.gz gentoo-2-16b719feb8e4c08aa0cd663997beac08c2897417.tar.bz2 gentoo-2-16b719feb8e4c08aa0cd663997beac08c2897417.zip |
Add instructions to download all shown files, inspired by Richard Grenville in bug#408591.
(Portage version: 2.1.10.65/cvs/Linux x86_64)
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/oracle-instantclient-basic/ChangeLog | 7 | ||||
-rw-r--r-- | dev-db/oracle-instantclient-basic/oracle-instantclient-basic-11.2.0.3.ebuild | 16 |
2 files changed, 18 insertions, 5 deletions
diff --git a/dev-db/oracle-instantclient-basic/ChangeLog b/dev-db/oracle-instantclient-basic/ChangeLog index ef3a3defad92..471c8bbd1024 100644 --- a/dev-db/oracle-instantclient-basic/ChangeLog +++ b/dev-db/oracle-instantclient-basic/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-db/oracle-instantclient-basic # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-basic/ChangeLog,v 1.49 2012/06/04 06:37:16 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-basic/ChangeLog,v 1.50 2012/09/24 18:49:44 haubi Exp $ + + 24 Sep 2012; Michael Haubenwallner <haubi@gentoo.org> + oracle-instantclient-basic-11.2.0.3.ebuild: + Add instructions to download all shown files, inspired by Richard Grenville + in bug#408591. 04 Jun 2012; Zac Medico <zmedico@gentoo.org> oracle-instantclient-basic-10.2.0.3-r1.ebuild, diff --git a/dev-db/oracle-instantclient-basic/oracle-instantclient-basic-11.2.0.3.ebuild b/dev-db/oracle-instantclient-basic/oracle-instantclient-basic-11.2.0.3.ebuild index 1ea6d2efd03d..7daa563bc27c 100644 --- a/dev-db/oracle-instantclient-basic/oracle-instantclient-basic-11.2.0.3.ebuild +++ b/dev-db/oracle-instantclient-basic/oracle-instantclient-basic-11.2.0.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-basic/oracle-instantclient-basic-11.2.0.3.ebuild,v 1.5 2012/03/09 17:04:41 haubi Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-basic/oracle-instantclient-basic-11.2.0.3.ebuild,v 1.6 2012/09/24 18:49:44 haubi Exp $ EAPI="4" @@ -52,6 +52,14 @@ set_my_abivars() { [[ -n ${MY_PLAT} ]] } +oic_distfile_status() { + if [[ -r ${DISTDIR}/${1} ]]; then + echo "already here" + else + echo "still absent" + fi +} + pkg_nofetch() { eerror "Please go to" eerror " ${HOMEPAGE%/*}/index-097480.html" @@ -60,12 +68,12 @@ pkg_nofetch() { do set_my_abivars || continue eerror "Instant Client for ${MY_PLAT}" - eerror " Basic: ${MY_A}" + eerror " Basic: ($(oic_distfile_status ${MY_A})) ${MY_A}" if is_final_abi; then - eerror " SDK: ${MY_ASDK}" + eerror " SDK: ($(oic_distfile_status ${MY_ASDK})) ${MY_ASDK}" fi done - eerror "After downloading, put them in:" + eerror "After downloading these files (for *all* shown architectures), put them in:" eerror " ${DISTDIR}/" } |