Gentoo Archives: gentoo-commits

From: Chris Reffett <geekboy72@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde:master commit in: dev-db/virtuoso-odbc/
Date: Mon, 09 Jul 2012 23:16:19
Message-Id: 1341875423.75c0abf8a5e764f568c47da7ab74a92b91b24c41.creffett@gentoo
1 commit: 75c0abf8a5e764f568c47da7ab74a92b91b24c41
2 Author: Chris Reffett <geekboy72 <AT> gmail <DOT> com>
3 AuthorDate: Mon Jul 9 23:10:23 2012 +0000
4 Commit: Chris Reffett <geekboy72 <AT> gmail <DOT> com>
5 CommitDate: Mon Jul 9 23:10:23 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=75c0abf8
7
8 [dev-db/virtuoso-odbc] Add to overlay for testing, version bump to 6.1.5
9
10 (Portage version: 2.2.0_alpha116/git/Linux x86_64, unsigned Manifest commit)
11
12 ---
13 dev-db/virtuoso-odbc/metadata.xml | 13 +++++++
14 dev-db/virtuoso-odbc/virtuoso-odbc-6.1.5.ebuild | 41 +++++++++++++++++++++++
15 2 files changed, 54 insertions(+), 0 deletions(-)
16
17 diff --git a/dev-db/virtuoso-odbc/metadata.xml b/dev-db/virtuoso-odbc/metadata.xml
18 new file mode 100644
19 index 0000000..fbcadb2
20 --- /dev/null
21 +++ b/dev-db/virtuoso-odbc/metadata.xml
22 @@ -0,0 +1,13 @@
23 +<?xml version="1.0" encoding="UTF-8"?>
24 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
25 +<pkgmetadata>
26 + <herd>kde</herd>
27 + <maintainer>
28 + <email>reavertm@g.o</email>
29 + <name>Maciej Mrozowski</name>
30 + </maintainer>
31 + <maintainer>
32 + <email>creffett@g.o</email>
33 + <name>Chris Reffett</name>
34 + </maintainer>
35 +</pkgmetadata>
36
37 diff --git a/dev-db/virtuoso-odbc/virtuoso-odbc-6.1.5.ebuild b/dev-db/virtuoso-odbc/virtuoso-odbc-6.1.5.ebuild
38 new file mode 100644
39 index 0000000..bfbf074
40 --- /dev/null
41 +++ b/dev-db/virtuoso-odbc/virtuoso-odbc-6.1.5.ebuild
42 @@ -0,0 +1,41 @@
43 +# Copyright 1999-2012 Gentoo Foundation
44 +# Distributed under the terms of the GNU General Public License v2
45 +# $Header: $
46 +
47 +EAPI=4
48 +
49 +inherit virtuoso
50 +
51 +DESCRIPTION="ODBC driver for OpenLink Virtuoso Open-Source Edition"
52 +
53 +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
54 +IUSE=""
55 +
56 +RDEPEND="
57 + >=dev-libs/openssl-0.9.7i:0
58 +"
59 +DEPEND="${RDEPEND}"
60 +
61 +VOS_EXTRACT="
62 + libsrc/Dk
63 + libsrc/Thread
64 + libsrc/odbcsdk
65 + libsrc/util
66 + binsrc/driver
67 +"
68 +
69 +src_configure() {
70 + myconf+="
71 + --disable-static
72 + --without-iodbc
73 + "
74 +
75 + virtuoso_src_configure
76 +}
77 +
78 +src_install() {
79 + virtuoso_src_install
80 +
81 + # Remove libtool files
82 + find "${ED}" -name '*.la' -delete
83 +}