From 6bc2e4d7c5906e46a8f275a876ead6ec41aca5bb Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sun, 10 Feb 2019 15:40:27 +0000 Subject: gentoo resync : 10.02.2019 --- dev-db/soci/Manifest | 2 +- dev-db/soci/soci-3.2.3-r1.ebuild | 50 ++++++++++++++++++++++++++++++++++++++++ dev-db/soci/soci-3.2.3.ebuild | 50 ---------------------------------------- 3 files changed, 51 insertions(+), 51 deletions(-) create mode 100644 dev-db/soci/soci-3.2.3-r1.ebuild delete mode 100644 dev-db/soci/soci-3.2.3.ebuild (limited to 'dev-db/soci') diff --git a/dev-db/soci/Manifest b/dev-db/soci/Manifest index d6300739bed3..ab84a424b66c 100644 --- a/dev-db/soci/Manifest +++ b/dev-db/soci/Manifest @@ -1,3 +1,3 @@ DIST soci-3.2.3.zip 508929 BLAKE2B e1a83172391508506744b18ac0b18d69bec34bfbd31d9156b2cb786cdb7cdd8a99ace21d1286a2c4432ba18e18dedc4f390075a25a30fa2e45f36d802661ddb2 SHA512 dd9b7eaf535502e3230eada4d4d019963d2c9cf59b69fff5d466b4fc00976fa08f7b0199a0e4564a0395d0d30095b97aa1d613dfbaa329feb077ece3b0efacdf -EBUILD soci-3.2.3.ebuild 1235 BLAKE2B ce606fe16c860275ac1eb0d9e165c3bd6cf57ada31fc1698b30854ff9f3dfc6ffbbf4ec523466c4d6f06dd79bbaa800aef49885679bdd55dd6b89121f4868d32 SHA512 331534dc170ae1cf0d986069bca6dea98b4e97868c155972ae2ba28f15499bcf26af9abf15549a5b39102f592cc535be969f24699f1f3cb6f39c4b465211b1cb +EBUILD soci-3.2.3-r1.ebuild 1245 BLAKE2B 2582143b8657e4def6021b4372afca615d373347b38488e37856c698a42a1e334b0a660ca476d5cb3c21d3086c086e33a7ceb7a786a558a58d665f8b952409c0 SHA512 751da2107285e8b6aca6ffa2fb72f84e08402dc5a9cd681110bdd0144f7aa1cc078ebd21524011a1b3442633412ae8afcf2b926a91ee2fe97d79ae934df97741 MISC metadata.xml 343 BLAKE2B 7257e5f29bfd60e7231870e28d745ea123af37110ddf907c7a4dedb4e984a330e62f02f61b59075ee7eb30a77f89e5b3edc72070a18158fa5cbf6e5bb3596908 SHA512 a3441b5c5f7127af874a08bc9e05dd95f1594167906383c44fcfb9620e52fdabdd90b23c2cbc6f082699150b1593b4600f7a9eae54c799f501b95ca9022d83c7 diff --git a/dev-db/soci/soci-3.2.3-r1.ebuild b/dev-db/soci/soci-3.2.3-r1.ebuild new file mode 100644 index 000000000000..9051f4411cb7 --- /dev/null +++ b/dev-db/soci/soci-3.2.3-r1.ebuild @@ -0,0 +1,50 @@ +# 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 +} diff --git a/dev-db/soci/soci-3.2.3.ebuild b/dev-db/soci/soci-3.2.3.ebuild deleted file mode 100644 index f31882f3e189..000000000000 --- a/dev-db/soci/soci-3.2.3.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# 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? ( virtual/mysql ) - 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 -} -- cgit v1.2.3