mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-23 18:38:08 -07:00
This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
73 lines
1.5 KiB
Bash
73 lines
1.5 KiB
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI="4"
|
|
|
|
inherit eutils multilib pax-utils
|
|
|
|
MY_PLAT_x86="Linux x86"
|
|
MY_A_x86="${PN#oracle-}-linux-${PV}.0.zip"
|
|
|
|
MY_PLAT_amd64="Linux x86-64"
|
|
MY_A_amd64="${PN#oracle-}-linux.x64-${PV}.0.zip"
|
|
|
|
DESCRIPTION="Oracle 11g Instant Client: SQL*Plus"
|
|
HOMEPAGE="http://www.oracle.com/technetwork/database/features/instant-client/index.html"
|
|
SRC_URI="
|
|
x86? ( ${MY_A_x86} )
|
|
amd64? ( ${MY_A_amd64} )
|
|
"
|
|
|
|
LICENSE="OTN"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
RESTRICT="fetch"
|
|
IUSE=""
|
|
|
|
DEPEND="app-arch/unzip"
|
|
RDEPEND="~dev-db/oracle-instantclient-basic-${PV}"
|
|
|
|
S="${WORKDIR}"/instantclient_11_2
|
|
|
|
QA_PREBUILT="
|
|
usr/lib*/oracle/${PV}/client/lib*/lib*
|
|
usr/lib*/oracle/${PV}/client/bin/sqlplus
|
|
"
|
|
|
|
my_arch() {
|
|
# platform name
|
|
MY_PLAT=MY_PLAT_${ARCH}
|
|
export MY_PLAT=${!MY_PLAT}
|
|
# distfile
|
|
MY_A=MY_A_${ARCH}
|
|
export MY_A=${!MY_A}
|
|
}
|
|
|
|
pkg_nofetch() {
|
|
my_arch
|
|
eerror "Please go to"
|
|
eerror " ${HOMEPAGE%/*}/index-097480.html"
|
|
eerror " and download"
|
|
eerror "Instant Client for ${MY_PLAT}"
|
|
eerror " SQL*Plus: ${MY_A}"
|
|
eerror "After downloading, put it in:"
|
|
eerror " ${DISTDIR}/"
|
|
}
|
|
|
|
src_install() {
|
|
# all binaries go here
|
|
local oracle_home=usr/$(get_libdir)/oracle/${PV}/client
|
|
into /"${oracle_home}"
|
|
|
|
dolib.so libsqlplus$(get_libname) libsqlplusic$(get_libname)
|
|
dobin sqlplus
|
|
|
|
insinto /"${oracle_home}"/sqlplus/admin
|
|
doins glogin.sql
|
|
|
|
pax-mark -c "${ED}${oracle_home}"/bin/sqlplus || die
|
|
|
|
dosym /"${oracle_home}"/bin/sqlplus /usr/bin/sqlplus
|
|
}
|