summaryrefslogtreecommitdiff
path: root/dev-db/soci
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-11-03 16:06:58 +0000
committerV3n3RiX <venerix@redcorelinux.org>2019-11-03 16:06:58 +0000
commitbd4aeefe33e63f613512604e47bfca7b2187697d (patch)
treeadb35b5a9a00ee7ea591ab0c987f70167c23b597 /dev-db/soci
parent48ece6662cbd443015f5a57ae6d8cbdbd69ef37c (diff)
gentoo resync : 03.11.2019
Diffstat (limited to 'dev-db/soci')
-rw-r--r--dev-db/soci/Manifest3
-rw-r--r--dev-db/soci/metadata.xml12
-rw-r--r--dev-db/soci/soci-3.2.3-r1.ebuild50
3 files changed, 0 insertions, 65 deletions
diff --git a/dev-db/soci/Manifest b/dev-db/soci/Manifest
deleted file mode 100644
index 5d2d5a804852..000000000000
--- a/dev-db/soci/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST soci-3.2.3.zip 508929 BLAKE2B e1a83172391508506744b18ac0b18d69bec34bfbd31d9156b2cb786cdb7cdd8a99ace21d1286a2c4432ba18e18dedc4f390075a25a30fa2e45f36d802661ddb2 SHA512 dd9b7eaf535502e3230eada4d4d019963d2c9cf59b69fff5d466b4fc00976fa08f7b0199a0e4564a0395d0d30095b97aa1d613dfbaa329feb077ece3b0efacdf
-EBUILD soci-3.2.3-r1.ebuild 1245 BLAKE2B 2582143b8657e4def6021b4372afca615d373347b38488e37856c698a42a1e334b0a660ca476d5cb3c21d3086c086e33a7ceb7a786a558a58d665f8b952409c0 SHA512 751da2107285e8b6aca6ffa2fb72f84e08402dc5a9cd681110bdd0144f7aa1cc078ebd21524011a1b3442633412ae8afcf2b926a91ee2fe97d79ae934df97741
-MISC metadata.xml 369 BLAKE2B 88ab173c19557879aa32b659f77ae01752fbcf63cc1f813801d23cfd6661fd2f4a367fcfdd3427d7c9d39a7347c293cbea3bf93c2ec058717c6851cfa0ba681d SHA512 d0c09ce11467f4c694fc91d3e2999ef14f0c3f9ebff056468be2d570f006ec0e7cd31d1f5bf74da23ffbc6c010216a99c9e00803aa1d072608d2237823dd85f9
diff --git a/dev-db/soci/metadata.xml b/dev-db/soci/metadata.xml
deleted file mode 100644
index ad9d64cb1e23..000000000000
--- a/dev-db/soci/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!--maintainer-needed-->
- <use>
- <flag name="boost">Enable boost support</flag>
- <flag name="empty">Build the sample backend called Empty</flag>
- </use>
- <upstream>
- <remote-id type="sourceforge">soci</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-db/soci/soci-3.2.3-r1.ebuild b/dev-db/soci/soci-3.2.3-r1.ebuild
deleted file mode 100644
index 9051f4411cb7..000000000000
--- a/dev-db/soci/soci-3.2.3-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils
-
-DESCRIPTION="Makes the illusion of embedding SQL queries in the regular C++ code"
-HOMEPAGE="http://soci.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.zip"
-
-LICENSE="Boost-1.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="boost doc +empty firebird mysql odbc oracle postgres sqlite static-libs test"
-
-RDEPEND="
- firebird? ( dev-db/firebird )
- mysql? ( dev-db/mysql-connector-c:= )
- odbc? ( dev-db/unixODBC )
- oracle? ( dev-db/oracle-instantclient-basic )
- postgres? ( dev-db/postgresql:= )
- sqlite? ( dev-db/sqlite:3 )
-"
-DEPEND="${RDEPEND}
- boost? ( dev-libs/boost )
-"
-
-src_configure() {
- local mycmakeargs=(
- -DWITH_BOOST=$(usex boost)
- -DSOCI_EMPTY=$(usex empty)
- -DWITH_FIREBIRD=$(usex firebird)
- -DWITH_MYSQL=$(usex mysql)
- -DWITH_ODBC=$(usex odbc)
- -DWITH_ORACLE=$(usex oracle)
- -DWITH_POSTGRESQL=$(usex postgres)
- -DWITH_SQLITE3=$(usex sqlite)
- -DSOCI_STATIC=$(usex static-libs)
- -DSOCI_TESTS=$(usex test)
- -DWITH_DB2=OFF
- )
- #use MYCMAKEARGS if you want enable IBM DB2 support
- cmake-utils_src_configure
-}
-
-src_install() {
- use doc && local HTML_DOCS=( doc/. )
- cmake-utils_src_install
-}