diff options
author | Don Seiler <rizzo@gentoo.org> | 2004-07-03 18:55:58 +0000 |
---|---|---|
committer | Don Seiler <rizzo@gentoo.org> | 2004-07-03 18:55:58 +0000 |
commit | e4a040bf46f46441349436a1f29714891f27bf26 (patch) | |
tree | 87f6ba451dd8d0cfb3a4c846612389b99baa4604 /dev-db/tora | |
parent | small QA stuff (diff) | |
download | historical-e4a040bf46f46441349436a1f29714891f27bf26.tar.gz historical-e4a040bf46f46441349436a1f29714891f27bf26.tar.bz2 historical-e4a040bf46f46441349436a1f29714891f27bf26.zip |
Version bump
Diffstat (limited to 'dev-db/tora')
-rw-r--r-- | dev-db/tora/ChangeLog | 7 | ||||
-rw-r--r-- | dev-db/tora/Manifest | 4 | ||||
-rw-r--r-- | dev-db/tora/files/digest-tora-1.3.14.1 | 1 | ||||
-rw-r--r-- | dev-db/tora/tora-1.3.14.1.ebuild | 60 |
4 files changed, 70 insertions, 2 deletions
diff --git a/dev-db/tora/ChangeLog b/dev-db/tora/ChangeLog index d69c20feeab7..262df689da9a 100644 --- a/dev-db/tora/ChangeLog +++ b/dev-db/tora/ChangeLog @@ -1,7 +1,12 @@ # ChangeLog for dev-db/tora # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/tora/ChangeLog,v 1.27 2004/06/29 21:09:54 rizzo Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/tora/ChangeLog,v 1.28 2004/07/03 18:55:58 rizzo Exp $ + +*tora-1.3.14.1 (03 Jul 2004) + + 03 Jul 2004; Don Seiler <rizzo@gentoo.org> +tora-1.3.14.1.ebuild: + Version bump *tora-1.3.14 (29 Jun 2004) diff --git a/dev-db/tora/Manifest b/dev-db/tora/Manifest index 1f326d723801..8a3008607b91 100644 --- a/dev-db/tora/Manifest +++ b/dev-db/tora/Manifest @@ -1,8 +1,10 @@ -MD5 277405a331cd1976fa24c41fef36179b ChangeLog 4128 +MD5 ed7e321389d5fad07497fc49e7cb55cc ChangeLog 4242 MD5 bda8803c4adc9cf0b308b71157891f05 metadata.xml 536 MD5 120f2bfae4a6aa1215f00581c8a08499 tora-1.3.13-r1.ebuild 1564 MD5 dcbe2ce19d45d6a341d2475987cc592b tora-1.3.14.ebuild 1560 MD5 53af6a388da203d28bdb6f2b86a1ee6b tora-1.3.13.ebuild 1553 +MD5 6423ac3984c00f7a1f1fbc04f5eae3a7 tora-1.3.14.1.ebuild 1563 MD5 6e56617a37ef8382d8eda0609b63ea02 files/digest-tora-1.3.13 70 MD5 6e56617a37ef8382d8eda0609b63ea02 files/digest-tora-1.3.13-r1 70 MD5 a0757e21f748384c6435574c42408606 files/digest-tora-1.3.14 70 +MD5 e937ff9aa1c78b74db75186de6f51759 files/digest-tora-1.3.14.1 72 diff --git a/dev-db/tora/files/digest-tora-1.3.14.1 b/dev-db/tora/files/digest-tora-1.3.14.1 new file mode 100644 index 000000000000..096b8ef34c0b --- /dev/null +++ b/dev-db/tora/files/digest-tora-1.3.14.1 @@ -0,0 +1 @@ +MD5 5560b5104438e1b71bd89386d0fcdc00 tora-alpha-1.3.14.1.tar.gz 2632386 diff --git a/dev-db/tora/tora-1.3.14.1.ebuild b/dev-db/tora/tora-1.3.14.1.ebuild new file mode 100644 index 000000000000..bcdbf557d713 --- /dev/null +++ b/dev-db/tora/tora-1.3.14.1.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/tora/tora-1.3.14.1.ebuild,v 1.1 2004/07/03 18:55:58 rizzo Exp $ + +use debug && inherit debug + +IUSE="kde oracle debug" +DESCRIPTION="TOra - Toolkit For Oracle" +HOMEPAGE="http://www.globecom.se/tora/" +SRC_URI="mirror://sourceforge/${PN}/${PN}-alpha-${PV}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64" + +DEPEND=">=x11-libs/qt-3.0.0 + dev-lang/perl + kde? ( >=kde-base/kdelibs-3.1 )" + +pkg_setup() { + if use oracle && [ -z "$ORACLE_HOME" ] ; then + eerror "ORACLE_HOME variable is not set." + eerror + eerror "You must install Oracle >= 8i client for Linux in" + eerror "order to compile TOra with Oracle support." + eerror + eerror "Otherwise specify -oracle in your USE variable." + eerror + eerror "You can download the Oracle software from" + eerror "http://otn.oracle.com/software/content.html" + die + fi +} + +src_compile() { + + # Need to fake out Qt or we'll get sandbox problems + REALHOME="$HOME" + mkdir -p $T/fakehome/.kde + mkdir -p $T/fakehome/.qt + export HOME="$T/fakehome" + addwrite "${QTDIR}/etc/settings" + + local myconf + myconf="--prefix=/usr" + #myconf="$myconf --with-mono" + + use kde \ + && myconf="$myconf --with-kde" \ + || myconf="$myconf --without-kde" + use oracle || myconf="$myconf --without-oracle" + + ./configure $myconf || die "configure failed" + emake || die "emake failed" +} + +src_install() { + make install ROOT=${D} + dodoc LICENSE.txt BUGS INSTALL NEWS README TODO +} |