qnikst      14/11/04 15:19:16

  Modified:             ChangeLog
  Added:                tora-3.0.0_pre20140929.ebuild
  Log:
  dev-db/tora: snapshot version (bug #525238), thanks to Sergey S. Starikoff
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
76512BBA09DD3D53)

Revision  Changes    Path
1.109                dev-db/tora/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tora/ChangeLog?rev=1.109&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tora/ChangeLog?rev=1.109&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tora/ChangeLog?r1=1.108&r2=1.109

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-db/tora/ChangeLog,v
retrieving revision 1.108
retrieving revision 1.109
diff -u -r1.108 -r1.109
--- ChangeLog   3 Nov 2014 11:37:46 -0000       1.108
+++ ChangeLog   4 Nov 2014 15:19:16 -0000       1.109
@@ -1,6 +1,12 @@
 # ChangeLog for dev-db/tora
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/tora/ChangeLog,v 1.108 2014/11/03 
11:37:46 titanofold Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/tora/ChangeLog,v 1.109 2014/11/04 
15:19:16 qnikst Exp $
+
+*tora-3.0.0_pre20140929 (04 Nov 2014)
+
+  04 Nov 2014; Alexander Vershilov <[email protected]>
+  +tora-3.0.0_pre20140929.ebuild:
+  dev-db/tora: snapshot version (bug #525238), thanks to Sergey S. Starikoff
 
   03 Nov 2014; Aaron W. Swenson <[email protected]> tora-2.1.3-r3.ebuild,
   tora-9999.ebuild:



1.1                  dev-db/tora/tora-3.0.0_pre20140929.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tora/tora-3.0.0_pre20140929.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/tora/tora-3.0.0_pre20140929.ebuild?rev=1.1&content-type=text/plain

Index: tora-3.0.0_pre20140929.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/tora/tora-3.0.0_pre20140929.ebuild,v 
1.1 2014/11/04 15:19:16 qnikst Exp $

EAPI=5

inherit cmake-utils eutils

if [[ ${PV} == 9999 ]]; then
        ESVN_REPO_URI="https://tora.svn.sourceforge.net/svnroot/tora/trunk/tora";
        inherit subversion
        SRC_URI=""
else
        
SRC_URI="http://dev.gentoo.org/~pinkbyte/distfiles/snapshots/${P}.tar.xz";
fi

DESCRIPTION="TOra - Toolkit For Oracle"
HOMEPAGE="http://torasql.com/";
IUSE="debug mysql postgres"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"

RDEPEND="
        dev-libs/ferrisloki
        x11-libs/qscintilla
        dev-qt/qtgui:4
        dev-qt/qtsql:4[mysql?,postgres?]
        dev-qt/qtxmlpatterns:4
        =dev-db/oracle-instantclient-basic-11*
        postgres? ( dev-db/postgresql-base )
"

DEPEND="
        virtual/pkgconfig
        ${RDEPEND}
"

pkg_setup() {
        if [ -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 "You can download the Oracle software from"
                eerror "http://otn.oracle.com/software/content.html";
                die
        fi
}

src_prepare() {
        sed -i \
                -e "/COPYING/ d" \
                CMakeLists.txt || die "Removal of COPYING file failed"
}

src_configure() {
        local mycmakeargs=()
        mycmakeargs=(-DENABLE_ORACLE=ON)
        mycmakeargs+=(
                -DWANT_RPM=OFF
                -DWANT_BUNDLE=OFF
                -DWANT_BUNDLE_STANDALONE=OFF
                -DWANT_INTERNAL_QSCINTILLA=OFF
                -DWANT_INTERNAL_LOKI=OFF
                -DLOKI_LIBRARY="$(pkg-config --variable=libdir 
ferrisloki)/libferrisloki.so"
                -DLOKI_INCLUDE_DIR="$(pkg-config --variable=includedir 
ferrisloki)/FerrisLoki"
                $(cmake-utils_use_enable postgres PGSQL)
                $(cmake-utils_use_want debug)
                # path variables
                -DTORA_DOC_DIR=share/doc/${PF}
        )
        cmake-utils_src_configure
}

src_install() {
        cmake-utils_src_install
        #
        doicon src/icons/${PN}.xpm || die
        domenu src/${PN}.desktop || die
}




Reply via email to