Gentoo Archives: gentoo-commits

From: "Tobias Scherbaum (dertobi123)" <dertobi123@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/oracle-instantclient-jdbc: ChangeLog oracle-instantclient-jdbc-11.1.0.7.0.ebuild
Date: Sat, 27 Dec 2008 12:34:33
Message-Id: E1LGYND-00051I-0G@stork.gentoo.org
1 dertobi123 08/12/27 12:34:31
2
3 Modified: ChangeLog
4 Added: oracle-instantclient-jdbc-11.1.0.7.0.ebuild
5 Log:
6 Version bump, #228803
7 (Portage version: 2.2_rc19/cvs/Linux 2.6.28-gentoo i686)
8
9 Revision Changes Path
10 1.24 dev-db/oracle-instantclient-jdbc/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog?rev=1.24&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog?rev=1.24&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog?r1=1.23&r2=1.24
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog,v
19 retrieving revision 1.23
20 retrieving revision 1.24
21 diff -u -r1.23 -r1.24
22 --- ChangeLog 18 Jun 2008 22:35:16 -0000 1.23
23 +++ ChangeLog 27 Dec 2008 12:34:30 -0000 1.24
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-db/oracle-instantclient-jdbc
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog,v 1.23 2008/06/18 22:35:16 wolf31o2 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/ChangeLog,v 1.24 2008/12/27 12:34:30 dertobi123 Exp $
29 +
30 +*oracle-instantclient-jdbc-11.1.0.7.0 (27 Dec 2008)
31 +
32 + 27 Dec 2008; Tobias Scherbaum <dertobi123@g.o>
33 + +oracle-instantclient-jdbc-11.1.0.7.0.ebuild:
34 + Version bump, #228803
35
36 18 Jun 2008; Chris Gianelloni <wolf31o2@g.o>
37 oracle-instantclient-jdbc-10.2.0.3.ebuild:
38
39
40
41 1.1 dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.1.0.7.0.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.1.0.7.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.1.0.7.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: oracle-instantclient-jdbc-11.1.0.7.0.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-db/oracle-instantclient-jdbc/oracle-instantclient-jdbc-11.1.0.7.0.ebuild,v 1.1 2008/12/27 12:34:30 dertobi123 Exp $
51
52 inherit eutils
53
54 MY_P_x86="${PN/oracle-/}-linux32-${PV/7.0/7}"
55 MY_P_amd64="${PN/oracle-instantclient-/}-${PV}-linux-x86_64"
56
57 S="${WORKDIR}"
58 DESCRIPTION="Oracle 10g client installation for Linux: JDBC supplement"
59 HOMEPAGE="http://www.oracle.com/technology/tech/oci/instantclient/index.html"
60 SRC_URI="amd64? ( ${MY_P_amd64}.zip )
61 x86? ( ${MY_P_x86}.zip )"
62
63 LICENSE="OTN"
64 SLOT="0"
65 KEYWORDS="-* ~amd64 ~x86"
66 RESTRICT="fetch"
67 IUSE=""
68
69 RDEPEND=">=dev-db/oracle-instantclient-basic-${PV}"
70 DEPEND="${RDEPEND}
71 app-arch/unzip"
72
73 pkg_setup() {
74 MY_P=MY_P_${ARCH}
75 export MY_P=${!MY_P}
76 }
77
78 pkg_nofetch() {
79 eerror "Please go to:"
80 eerror " ${HOMEPAGE}"
81 eerror "and download the JDBC supplemental package. Put it in:"
82 eerror " ${DISTDIR}"
83 eerror "after downloading it."
84 }
85
86 src_unpack() {
87 unzip "${DISTDIR}"/${MY_P}.zip
88 }
89
90 src_install() {
91 dodir /usr/$(get_libdir)/oracle/${PV}/client/lib
92 cd "${S}"/instantclient_11_1
93 insinto /usr/$(get_libdir)/oracle/${PV}/client/lib
94 doins libheteroxa11.so orai18n.jar
95 }
96
97 pkg_postinst() {
98 elog "The JDBC supplement package for Oracle 10g has been installed."
99 elog "You may wish to install the oracle-instantclient-sqlplus (for "
100 elog "running the SQL*Plus application) package as well."
101 }