diff options
Diffstat (limited to 'dev-libs')
| -rw-r--r-- | dev-libs/soprano/Manifest | 2 | ||||
| -rw-r--r-- | dev-libs/soprano/soprano-2.4.3.ebuild | 103 |
2 files changed, 0 insertions, 105 deletions
diff --git a/dev-libs/soprano/Manifest b/dev-libs/soprano/Manifest index dde1740adb2..9e39df866a5 100644 --- a/dev-libs/soprano/Manifest +++ b/dev-libs/soprano/Manifest @@ -1,6 +1,4 @@ -DIST soprano-2.4.3.tar.bz2 1944785 RMD160 52eb443791cc093c5a069f5a244fe0f1d63147db SHA1 3c0e93d2b662d3407da33b8c066a03e662d187db SHA256 390c529bd1f46a00362ed9ab932933d24d264b4b8988048549558f5ad52caa08 DIST soprano-2.4.63.tar.bz2 1944827 RMD160 4ed28b9663e319cba31d77f7fb86fcd4ff3733f6 SHA1 67f458394b0f3c064c51455774e0c9a4aae9dba2 SHA256 6ee1021a5d0b53bcdbe16dd6f8b7dbf5dc8df4e62fde3dba70ef82567c031a47 -EBUILD soprano-2.4.3.ebuild 2921 RMD160 bf55e527bfb59926bfc21d46f17e2672d731fe77 SHA1 af5c1a13f8c1374f1c04c5f0b6fce80706015df6 SHA256 837c702bf49413f0876496a33f57ed5b4ce1ad076b5ce1664d2e80c08fe07801 EBUILD soprano-2.4.63.ebuild 3022 RMD160 b08696058e39b47391c6a2e4e3551b33f4ba2458 SHA1 51109632fe7e28fbcdb023fd297fba49cb8f3e83 SHA256 09c7cccc0b2de68befb2c7accc227133923611b580b8d00a314d29fb93f5553b EBUILD soprano-9999.ebuild 2864 RMD160 8e6f8f07cdb5d458ed05b2d09199418047d724e1 SHA1 21676c094562ff96dde72b1565d1c11e462c6ef4 SHA256 a300e7f9d9193d7feb0df207b82ecb89aec11488f673c828518476e6b6a96bc5 MISC metadata.xml 661 RMD160 4cc052a1f0507d9ea45b3dc36c0d1319cd5d6801 SHA1 ccb365c5b898290244b5ea3c66fa938fb327cce6 SHA256 e06e233e003c202ac8257cdc080eb6380dc6b78166554c54fe72cee5ba39619b diff --git a/dev-libs/soprano/soprano-2.4.3.ebuild b/dev-libs/soprano/soprano-2.4.3.ebuild deleted file mode 100644 index 6d63d9507e6..00000000000 --- a/dev-libs/soprano/soprano-2.4.3.ebuild +++ /dev/null @@ -1,103 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI="2" - -JAVA_PKG_OPT_USE="java" -inherit base cmake-utils flag-o-matic java-pkg-opt-2 - -DESCRIPTION="Library that provides a nice Qt interface to RDF storage solutions" -HOMEPAGE="http://sourceforge.net/projects/soprano" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" - -LICENSE="LGPL-2" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" -SLOT="0" -IUSE="clucene +dbus debug doc elibc_FreeBSD java +raptor +redland +virtuoso" - -COMMON_DEPEND=" - >=x11-libs/qt-core-4.5.0:4 - clucene? ( dev-cpp/clucene ) - dbus? ( >=x11-libs/qt-dbus-4.5.0:4 ) - raptor? ( >=media-libs/raptor-1.4.16 ) - redland? ( - >=dev-libs/rasqal-0.9.15 - >=dev-libs/redland-1.0.10 - ) - java? ( >=virtual/jdk-1.6.0 ) - virtuoso? ( dev-db/libiodbc:0 ) -" -DEPEND="${COMMON_DEPEND} - doc? ( app-doc/doxygen ) - test? ( >=x11-libs/qt-test-4.5.0:4 ) -" -RDEPEND="${COMMON_DEPEND} - virtuoso? ( >=dev-db/virtuoso-server-6.1.0 ) -" - -CMAKE_IN_SOURCE_BUILD="1" - -pkg_setup() { - java-pkg-opt-2_pkg_setup - - if [[ ${PV} = *9999* && -z $I_KNOW_WHAT_I_AM_DOING ]]; then - echo - ewarn "WARNING! This is an experimental ebuild of ${PN} SVN tree. Use at your own risk." - ewarn "Do _NOT_ file bugs at bugs.gentoo.org because of this ebuild!" - echo - fi - - if ! use java && ! use virtuoso; then - if ! use redland; then - echo - ewarn "You have explicitly disabled the default soprano backend and haven't chosen" - ewarn "a different one. Applications using soprano may need at least one backend" - ewarn "to be functional. If you experience any problems, enable any of those USE" - ewarn "flags:" - ewarn "java (deprecated), redland, virtuoso (recommended)" - echo - else - echo - ewarn "You selected redland as the only backend for soprano." - ewarn "Be advised that it's known to be broken (bug #275326)." - echo - fi - fi -} - -src_prepare() { - base_src_prepare -} - -src_configure() { - # Fix for missing pthread.h linking - # NOTE: temporarily fix until a better cmake files patch will be provided. - use elibc_FreeBSD && append-flags -pthread - - mycmakeargs=( - -DSOPRANO_BUILD_TESTS=OFF - -DCMAKE_SKIP_RPATH=OFF - $(cmake-utils_use !clucene SOPRANO_DISABLE_CLUCENE_INDEX) - $(cmake-utils_use !dbus SOPRANO_DISABLE_DBUS) - $(cmake-utils_use !raptor SOPRANO_DISABLE_RAPTOR_PARSER) - $(cmake-utils_use !redland SOPRANO_DISABLE_RAPTOR_SERIALIZER) - $(cmake-utils_use !redland SOPRANO_DISABLE_REDLAND_BACKEND) - $(cmake-utils_use !java SOPRANO_DISABLE_SESAME2_BACKEND) - $(cmake-utils_use !virtuoso SOPRANO_DISABLE_VIRTUOSO_BACKEND) - $(cmake-utils_use doc SOPRANO_BUILD_API_DOCS) - ) - - cmake-utils_src_configure -} - -src_compile() { - cmake-utils_src_compile -} - -src_test() { - mycmakeargs+=(-DSOPRANO_BUILD_TESTS=ON) - cmake-utils_src_configure - cmake-utils_src_compile - ctest --extra-verbose || die "Tests failed." -} |
