Gentoo Archives: gentoo-commits

From: Johannes Huber <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde:master commit in: dev-libs/soprano/
Date: Mon, 02 Jul 2012 15:41:01
Message-Id: 1341243550.382b250cb8f0c1ba4684c201cdc2608fb9d8680c.johu@gentoo
1 commit: 382b250cb8f0c1ba4684c201cdc2608fb9d8680c
2 Author: Johannes Huber <johu <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 2 15:39:10 2012 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 2 15:39:10 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=382b250c
7
8 [dev-libs/soprano] Remove old.
9
10 (Portage version: 2.2.0_alpha114/git/Linux x86_64, unsigned Manifest commit)
11
12 ---
13 dev-libs/soprano/soprano-2.7.57.ebuild | 102 --------------------------------
14 1 files changed, 0 insertions(+), 102 deletions(-)
15
16 diff --git a/dev-libs/soprano/soprano-2.7.57.ebuild b/dev-libs/soprano/soprano-2.7.57.ebuild
17 deleted file mode 100644
18 index 5a5dfed..0000000
19 --- a/dev-libs/soprano/soprano-2.7.57.ebuild
20 +++ /dev/null
21 @@ -1,102 +0,0 @@
22 -# Copyright 1999-2012 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -# $Header: $
25 -
26 -EAPI=4
27 -
28 -if [[ ${PV} == *9999* ]]; then
29 - git_eclass="git-2"
30 - EGIT_REPO_URI="git://anongit.kde.org/soprano"
31 - KEYWORDS=""
32 -else
33 - SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
34 - KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
35 -fi
36 -
37 -inherit base cmake-utils flag-o-matic ${git_eclass}
38 -
39 -DESCRIPTION="Library that provides a nice Qt interface to RDF storage solutions"
40 -HOMEPAGE="http://sourceforge.net/projects/soprano"
41 -
42 -LICENSE="LGPL-2"
43 -SLOT="0"
44 -IUSE="clucene +dbus debug doc elibc_FreeBSD +raptor +redland test +virtuoso"
45 -
46 -RESTRICT=test
47 -# bug 281712
48 -
49 -COMMON_DEPEND="
50 - >=x11-libs/qt-core-4.5.0:4
51 - clucene? ( dev-cpp/clucene )
52 - dbus? ( >=x11-libs/qt-dbus-4.5.0:4 )
53 - raptor? ( >=media-libs/raptor-2.0.4:2 )
54 - redland? (
55 - >=dev-libs/rasqal-0.9.26
56 - >=dev-libs/redland-1.0.14
57 - )
58 - virtuoso? ( dev-db/libiodbc:0 )
59 -"
60 -DEPEND="${COMMON_DEPEND}
61 - doc? ( app-doc/doxygen )
62 - test? ( >=x11-libs/qt-test-4.5.0:4 )
63 -"
64 -RDEPEND="${COMMON_DEPEND}
65 - virtuoso? ( >=dev-db/virtuoso-server-6.1.0 )
66 -"
67 -
68 -CMAKE_IN_SOURCE_BUILD="1"
69 -
70 -PATCHES=(
71 - "${FILESDIR}/${PN}-2.4.4-make-broken-redland-fatal.cmake"
72 -)
73 -
74 -pkg_setup() {
75 - if [[ ${PV} = *9999* && -z $I_KNOW_WHAT_I_AM_DOING ]]; then
76 - echo
77 - ewarn "WARNING! This is an experimental ebuild of ${PN} Git tree. Use at your own risk."
78 - ewarn "Do _NOT_ file bugs at bugs.gentoo.org because of this ebuild!"
79 - echo
80 - fi
81 -
82 - if ! use virtuoso; then
83 - echo
84 - ewarn "You have explicitly disabled the default soprano backend."
85 - ewarn "Applications using soprano may need at least one backend"
86 - ewarn "to be functional. If you experience any problems, enable"
87 - ewarn "the virtuoso USE flag."
88 - echo
89 - fi
90 -}
91 -
92 -src_configure() {
93 - # Fix for missing pthread.h linking
94 - # NOTE: temporarily fix until a better cmake files patch will be provided.
95 - use elibc_FreeBSD && append-flags -pthread
96 -
97 - local mycmakeargs=(
98 - -DSOPRANO_BUILD_TESTS=OFF
99 - -DCMAKE_SKIP_RPATH=OFF
100 - -DSOPRANO_DISABLE_SESAME2_BACKEND=ON
101 - $(cmake-utils_use !clucene SOPRANO_DISABLE_CLUCENE_INDEX)
102 - $(cmake-utils_use !dbus SOPRANO_DISABLE_DBUS)
103 - $(cmake-utils_use !raptor SOPRANO_DISABLE_RAPTOR_PARSER)
104 - $(cmake-utils_use !redland SOPRANO_DISABLE_RAPTOR_SERIALIZER)
105 - $(cmake-utils_use !redland SOPRANO_DISABLE_REDLAND_BACKEND)
106 - $(cmake-utils_use !virtuoso SOPRANO_DISABLE_VIRTUOSO_BACKEND)
107 - $(cmake-utils_use doc SOPRANO_BUILD_API_DOCS)
108 - $(cmake-utils_use test SOPRANO_BUILD_TESTS)
109 - )
110 -
111 - cmake-utils_src_configure
112 -}
113 -
114 -src_install() {
115 - cmake-utils_src_install
116 -
117 - dodoc AUTHORS ChangeLog README TODO
118 - newdoc backends/virtuoso/README README.virtuoso
119 - newdoc backends/sesame2/README README.sesame2
120 - if use doc ; then
121 - dohtml -r docs/html/
122 - fi
123 -}