summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAgostino Sarubbo <ago@gentoo.org>2012-05-10 15:54:02 +0000
committerAgostino Sarubbo <ago@gentoo.org>2012-05-10 15:54:02 +0000
commit241039f03bc1d67bc036ad5ed19c932aca95ced4 (patch)
tree3b3150dd3e6308179232e9f270f7bb251ed3d255 /dev-libs/libsqlora8
parentfix pkg_nofetch (diff)
downloadgentoo-2-241039f03bc1d67bc036ad5ed19c932aca95ced4.tar.gz
gentoo-2-241039f03bc1d67bc036ad5ed19c932aca95ced4.tar.bz2
gentoo-2-241039f03bc1d67bc036ad5ed19c932aca95ced4.zip
Remove old
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/libsqlora8')
-rw-r--r--dev-libs/libsqlora8/ChangeLog7
-rw-r--r--dev-libs/libsqlora8/libsqlora8-2.2.11.ebuild62
2 files changed, 5 insertions, 64 deletions
diff --git a/dev-libs/libsqlora8/ChangeLog b/dev-libs/libsqlora8/ChangeLog
index c93f31d6a62b..a82b96f33dc9 100644
--- a/dev-libs/libsqlora8/ChangeLog
+++ b/dev-libs/libsqlora8/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/libsqlora8
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsqlora8/ChangeLog,v 1.9 2011/05/11 23:27:04 xmw Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsqlora8/ChangeLog,v 1.10 2012/05/10 15:54:02 ago Exp $
+
+ 10 May 2012; Agostino Sarubbo <ago@gentoo.org> -libsqlora8-2.2.11.ebuild:
+ Remove old
*libsqlora8-2.3.3 (11 May 2011)
diff --git a/dev-libs/libsqlora8/libsqlora8-2.2.11.ebuild b/dev-libs/libsqlora8/libsqlora8-2.2.11.ebuild
deleted file mode 100644
index 19cda26df78a..000000000000
--- a/dev-libs/libsqlora8/libsqlora8-2.2.11.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsqlora8/libsqlora8-2.2.11.ebuild,v 1.5 2005/01/22 22:58:36 dragonheart Exp $
-
-IUSE="threads orathreads"
-
-DESCRIPTION="libsqlora8 is a simple C-library to access Oracle databases via the OCI interface"
-SRC_URI="http://www.poitschke.de/libsqlora8/${P}.tar.gz"
-HOMEPAGE="http://www.poitschke.de/libsqlora8/index_noframe.html"
-
-LICENSE="as-is"
-SLOT="0"
-KEYWORDS="~x86"
-
-DEPEND=""
-
-pkg_setup() {
- if use orathreads && use threads; then
- eerror
- eerror 'Enable the "threads" USE flag for POSIX threads,'
- eerror '*or* the "orathreads" USE flag for Oracle threads'
- eerror
- die 'Both "threads" and "orathreads" USE flags set, see above'
- fi
-
- # Make sure ORACLE_HOME is set
- if [ -z "${ORACLE_HOME}" ]; then
- eerror
- eerror 'libsqlora8 requires that the ORACLE_HOME environment variable be set.'
- eerror 'Try: "export ORACLE_HOME=/usr/local/oracle" if you do not know what to do.'
- eerror
- die 'ORACLE_HOME not set, see above'
- fi
-}
-
-src_compile() {
- local myconf;
-
- # Add $ORACLE_HOME/lib to LD_LIBRARY_PATH
- if [ -z "${LD_LIBRARY_PATH}" ]; then
- LD_LIBRARY_PATH=${ORACLE_HOME}/lib
- else
- LD_LIBRARY_PATH=${ORACLE_HOME}/lib:${LD_LIBRARY_PATH}
- fi
-
- export LD_LIBRARY_PATH
-
- use threads && myconf="--with-threads=posix"
- use orathreads && myconf="--with-threads=oracle"
-
- # Build
- econf ${myconf} || die "configure failed"
- emake
-}
-
-src_install () {
- einstall
- dodoc COPYING ChangeLog INSTALL NEWS NEWS-2.2
-
- # TODO
- # Copy contents of doc and examples directory to doc
-}