diff options
author | Tobias Scherbaum <dertobi123@gentoo.org> | 2006-07-23 11:12:37 +0000 |
---|---|---|
committer | Tobias Scherbaum <dertobi123@gentoo.org> | 2006-07-23 11:12:37 +0000 |
commit | 2f9ea3f63e0b6dcc62f9866f825379d32e21a0ea (patch) | |
tree | 27ed45d4ca80e795daec092b8eac878e6dc9da39 /dev-db/oracle-instantclient-sqlplus | |
parent | ppc stable, bug #140369 (diff) | |
download | historical-2f9ea3f63e0b6dcc62f9866f825379d32e21a0ea.tar.gz historical-2f9ea3f63e0b6dcc62f9866f825379d32e21a0ea.tar.bz2 historical-2f9ea3f63e0b6dcc62f9866f825379d32e21a0ea.zip |
Version bump, bug #141269
Package-Manager: portage-2.1.1_pre3-r3
Diffstat (limited to 'dev-db/oracle-instantclient-sqlplus')
3 files changed, 68 insertions, 1 deletions
diff --git a/dev-db/oracle-instantclient-sqlplus/ChangeLog b/dev-db/oracle-instantclient-sqlplus/ChangeLog index cdbc051027de..77262f48f345 100644 --- a/dev-db/oracle-instantclient-sqlplus/ChangeLog +++ b/dev-db/oracle-instantclient-sqlplus/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-db/oracle-instantclient-sqlplus # Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-sqlplus/ChangeLog,v 1.13 2006/06/06 20:37:24 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-sqlplus/ChangeLog,v 1.14 2006/07/23 11:12:37 dertobi123 Exp $ + +*oracle-instantclient-sqlplus-10.1.0.5 (23 Jul 2006) + + 23 Jul 2006; Tobias Scherbaum <dertobi123@gentoo.org> + +oracle-instantclient-sqlplus-10.1.0.5.ebuild: + Version bump, bug #141269 06 Jun 2006; Markus Rothe <corsair@gentoo.org> oracle-instantclient-sqlplus-10.2.0.2.ebuild: diff --git a/dev-db/oracle-instantclient-sqlplus/files/digest-oracle-instantclient-sqlplus-10.1.0.5 b/dev-db/oracle-instantclient-sqlplus/files/digest-oracle-instantclient-sqlplus-10.1.0.5 new file mode 100644 index 000000000000..87c6ec9291b4 --- /dev/null +++ b/dev-db/oracle-instantclient-sqlplus/files/digest-oracle-instantclient-sqlplus-10.1.0.5 @@ -0,0 +1,3 @@ +MD5 1c32d89ed9f43bd430087914184745a7 instantclient-sqlplus-linux32-10.1.0.5-20060511.zip 331854 +RMD160 e7b50ed8ef66b62628b7cf61c9b3637fa61fc0db instantclient-sqlplus-linux32-10.1.0.5-20060511.zip 331854 +SHA256 ce45f0dad41128f6708531f8242223eb92e5d11105f64a1d1cb37b288e592c44 instantclient-sqlplus-linux32-10.1.0.5-20060511.zip 331854 diff --git a/dev-db/oracle-instantclient-sqlplus/oracle-instantclient-sqlplus-10.1.0.5.ebuild b/dev-db/oracle-instantclient-sqlplus/oracle-instantclient-sqlplus-10.1.0.5.ebuild new file mode 100644 index 000000000000..af217f74a7a5 --- /dev/null +++ b/dev-db/oracle-instantclient-sqlplus/oracle-instantclient-sqlplus-10.1.0.5.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-sqlplus/oracle-instantclient-sqlplus-10.1.0.5.ebuild,v 1.1 2006/07/23 11:12:37 dertobi123 Exp $ + +inherit eutils + +MY_P="${PN/oracle-/}-linux32-${PV}-20060511" + +S=${WORKDIR} +DESCRIPTION="Oracle 10g client installation for Linux: SQL*Plus" +HOMEPAGE="http://otn.oracle.com/software/tech/oci/instantclient/htdocs/linuxsoft.html" +SRC_URI="${MY_P}.zip" + +LICENSE="OTN" +SLOT="${PV}" +KEYWORDS="~x86" +RESTRICT="fetch" +IUSE="" + +RDEPEND=">=dev-db/oracle-instantclient-basic-${PV}" +DEPEND="${RDEPEND} + app-arch/unzip" + +pkg_nofetch() { + eerror "Please go to:" + eerror " ${HOMEPAGE}" + eerror "and download the SQL*Plus package. Put it in:" + eerror " ${DISTDIR}" + eerror "after downloading it." +} + +src_unpack() { + unzip ${DISTDIR}/${MY_P}.zip +} + +src_install() { + dodir /usr/lib/oracle/${PV}/client/lib + cd ${S}/instantclient10_1 + insinto /usr/lib/oracle/${PV}/client/lib + doins glogin.sql libsqlplus.so + + dodir /usr/lib/oracle/${PV}/client/bin + cd ${S}/instantclient10_1 + exeinto /usr/lib/oracle/${PV}/client/bin + doexe sqlplus + + dodir /usr/bin + dosym ${D}/usr/lib/oracle/${PV}/client/bin/sqlplus /usr/bin/sqlplus +} + +pkg_postinst() { + einfo "The SQL*Plus package for Oracle 10g has been installed." + einfo "You may wish to install the oracle-instantclient-jdbc (for" + einfo "the supplemental JDBC functionality) package as well." + einfo + einfo "If you have any questions, be sure to read the README:" + einfo "http://otn.oracle.com/docs/tech/sql_plus/10102/readme_ic.htm" +} |