diff options
author | Don Seiler <rizzo@gentoo.org> | 2004-03-22 21:24:54 +0000 |
---|---|---|
committer | Don Seiler <rizzo@gentoo.org> | 2004-03-22 21:24:54 +0000 |
commit | df788035170f6b670e0052609b70568c28c27475 (patch) | |
tree | 1755ca171e933f0672814c3d6d483bbe6d4d33b3 /dev-db | |
parent | Adding OracleTechNet license (diff) | |
download | gentoo-2-df788035170f6b670e0052609b70568c28c27475.tar.gz gentoo-2-df788035170f6b670e0052609b70568c28c27475.tar.bz2 gentoo-2-df788035170f6b670e0052609b70568c28c27475.zip |
Initial import, thanks to Jamis Buck for the good work. Bug #43813
Diffstat (limited to 'dev-db')
5 files changed, 69 insertions, 0 deletions
diff --git a/dev-db/oracle-instantclient-basic/ChangeLog b/dev-db/oracle-instantclient-basic/ChangeLog new file mode 100644 index 000000000000..f32b4e3aa9bd --- /dev/null +++ b/dev-db/oracle-instantclient-basic/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-db/oracle-instantclient-basic +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-basic/ChangeLog,v 1.1 2004/03/22 21:24:54 rizzo Exp $ + +*oracle-instantclient-basic-10.1.0.2 (22 Mar 2004) + + 22 Mar 2004; Don Seiler <rizzo@gentoo.org>; metadata.xml, + oracle-instantclient-basic-10.1.0.2.ebuild: + Initial import, thanks to Jamis Buck for the good work. Bug #43813 + diff --git a/dev-db/oracle-instantclient-basic/Manifest b/dev-db/oracle-instantclient-basic/Manifest new file mode 100644 index 000000000000..0ac94b386ea2 --- /dev/null +++ b/dev-db/oracle-instantclient-basic/Manifest @@ -0,0 +1,2 @@ +MD5 635cee1401aac008723e36573b5c1e90 oracle-instantclient-basic-10.1.0.2.ebuild 1056 +MD5 8531dff3174726242a9e9de77be6b595 files/digest-oracle-instantclient-basic-10.1.0.2 93 diff --git a/dev-db/oracle-instantclient-basic/files/digest-oracle-instantclient-basic-10.1.0.2 b/dev-db/oracle-instantclient-basic/files/digest-oracle-instantclient-basic-10.1.0.2 new file mode 100644 index 000000000000..8adb29fef0e2 --- /dev/null +++ b/dev-db/oracle-instantclient-basic/files/digest-oracle-instantclient-basic-10.1.0.2 @@ -0,0 +1 @@ +MD5 39fb478b851bd411acf3ff35daae20cf oracle-instantclient-basic-10.1.0.2-1.i386.rpm 40065717 diff --git a/dev-db/oracle-instantclient-basic/metadata.xml b/dev-db/oracle-instantclient-basic/metadata.xml new file mode 100644 index 000000000000..634b161a6d3e --- /dev/null +++ b/dev-db/oracle-instantclient-basic/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>no-herd</herd> +<maintainer> + <email>rizzo@gentoo.org</email> +<!-- <description>Description of the maintainership</description> --> +</maintainer> +<longdescription>Instant Client Package - Basic: All files required to run OCI, OCCI, and JDBC-OCI applications</longdescription> +</pkgmetadata> diff --git a/dev-db/oracle-instantclient-basic/oracle-instantclient-basic-10.1.0.2.ebuild b/dev-db/oracle-instantclient-basic/oracle-instantclient-basic-10.1.0.2.ebuild new file mode 100644 index 000000000000..65ffd89b6da9 --- /dev/null +++ b/dev-db/oracle-instantclient-basic/oracle-instantclient-basic-10.1.0.2.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-basic/oracle-instantclient-basic-10.1.0.2.ebuild,v 1.1 2004/03/22 21:24:54 rizzo Exp $ + +inherit eutils + +MY_P="${P}-1.i386" + +S=${WORKDIR} +DESCRIPTION="Oracle 10g client installation for Linux" +HOMEPAGE="http://otn.oracle.com/software/tech/oci/instantclient/htdocs/linuxsoft.html" +SRC_URI="${MY_P}.rpm" + +LICENSE="OTN" +SLOT="${KV}" +KEYWORDS="-* ~x86" +RESTRICT="fetch" + +DEPEND="app-arch/rpm2targz" + +pkg_nofetch() { + eerror "Please go to:" + eerror " ${HOMEPAGE}" + eerror "and download the Basic client package. Put it in:" + eerror " ${DISTDIR}" + eerror "after downloading it." +} + +src_unpack() { + rpm2targz ${DISTDIR}/${MY_P}.rpm + tar zxf ${WORKDIR}/${MY_P}.tar.gz +} + +src_install() { + mv ${S}/usr ${D} +} + +pkg_postinst() { + echo + einfo "The Basic client page for Oracle 10g has been installed." + einfo "You may also wish to install the oracle-instantclient-jdbc (for" + einfo "supplemental JDBC functionality with Oracle) and the" + einfo "oracle-instantclient-sqlplus (for running the SQL*Plus application)" + einfo "packages as well." + echo +} |