diff options
author | Tobias Scherbaum <dertobi123@gentoo.org> | 2009-12-31 10:45:09 +0000 |
---|---|---|
committer | Tobias Scherbaum <dertobi123@gentoo.org> | 2009-12-31 10:45:09 +0000 |
commit | a0264095d89e9af7f9f719f4c7d6f3e8777463fa (patch) | |
tree | b82111184b3a62013090670fcc07734a55b9bd95 /dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.1.ebuild | |
parent | Version bump (#293590) (diff) | |
download | gentoo-2-a0264095d89e9af7f9f719f4c7d6f3e8777463fa.tar.gz gentoo-2-a0264095d89e9af7f9f719f4c7d6f3e8777463fa.tar.bz2 gentoo-2-a0264095d89e9af7f9f719f4c7d6f3e8777463fa.zip |
Version bump (#293590)
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.1.ebuild')
-rw-r--r-- | dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.1.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.1.ebuild b/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.1.ebuild new file mode 100644 index 000000000000..8d3217a53d20 --- /dev/null +++ b/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.2.0.1.ebuild,v 1.1 2009/12/31 10:45:09 dertobi123 Exp $ + +inherit eutils + +MY_P_x86="${PN/oracle-/}-linux32-${PV}" + +S="${WORKDIR}" +DESCRIPTION="Oracle 11g client installation for Linux: JDBC supplement" +HOMEPAGE="http://www.oracle.com/technology/tech/oci/instantclient/index.html" +SRC_URI="x86? ( ${MY_P_x86}.zip )" + +LICENSE="OTN" +SLOT="0" +KEYWORDS="-* ~x86" +RESTRICT="fetch" +IUSE="" + +RDEPEND=">=dev-db/oracle-instantclient-basic-${PV}" +DEPEND="${RDEPEND} + app-arch/unzip" + +pkg_setup() { + MY_P=MY_P_${ARCH} + export MY_P=${!MY_P} +} + +pkg_nofetch() { + eerror "Please go to:" + eerror " ${HOMEPAGE}" + eerror "and download the JDBC supplemental package. Put it in:" + eerror " ${DISTDIR}" + eerror "after downloading it." +} + +src_unpack() { + unzip "${DISTDIR}"/${MY_P}.zip +} + +src_install() { + dodir /usr/$(get_libdir)/oracle/${PV}/client/lib + cd "${S}"/instantclient_11_2 + insinto /usr/$(get_libdir)/oracle/${PV}/client/lib + doins libheteroxa11.so orai18n.jar +} + +pkg_postinst() { + elog "The JDBC supplement package for Oracle 11g has been installed." + elog "You may wish to install the oracle-instantclient-sqlplus (for " + elog "running the SQL*Plus application) package as well." +} |