dev-db/tdscpp - 20250301 (guru)

Search

Install

Install this version:

emerge -a =dev-db/tdscpp-20250301

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =dev-db/tdscpp-20250301

Or alternatively:

emerge --autounmask-write -a =dev-db/tdscpp-20250301

Package Information

Description:
C++ library to communicate with Microsoft SQL server
Homepage:
https://github.com/maharmstone/tdscpp
License:
LGPL-3

Ebuild Details

Version EAPI Keywords Slot
20250301 8 ~amd64 ~arm ~arm64 ~riscv ~x86 0
View Raw Ebuild
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit cmake

DESCRIPTION="C++ library to communicate with Microsoft SQL server"
HOMEPAGE="https://github.com/maharmstone/tdscpp"
SRC_URI="https://codeload.github.com/maharmstone/tdscpp/tar.gz/refs/tags/${PV} -> ${P}.tar.gz"

LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
IUSE="kerberos +ssl"

DEPEND="dev-cpp/nlohmann_json
	dev-libs/icu
	kerberos? ( virtual/krb5 )
	ssl? ( dev-libs/openssl )"
RDEPEND="${DEPEND}"

src_prepare() {
	cmake_src_prepare
}

src_configure() {
	local mycmakeargs=(
		-DENABLE_KRB5="$(usex kerberos)"
		-DWITH_OPENSSL="$(usex ssl)"
		-DBUILD_SAMPLE=OFF
	)

	cmake_src_configure
}

USE Flags

Manage flags for this package: euse -i <flag> -p dev-db/tdscpp | euse -E <flag> -p dev-db/tdscpp | euse -D <flag> -p dev-db/tdscpp

Global/Standard Flags

ssl
Default: Enabled (+)

Inherited Eclasses

Dependencies

DEPEND

dev-cpp/nlohmann_json
	dev-libs/icu
	kerberos? ( virtual/krb5 )
	ssl? ( dev-libs/openssl )

RDEPEND

dev-cpp/nlohmann_json
	dev-libs/icu
	kerberos? ( virtual/krb5 )
	ssl? ( dev-libs/openssl )

Manifest for 20250301

Type File Size Source URLs
DIST tdscpp-20250301.tar.gz 728739 bytes https://codeload.github.com/maharmstone/tdscpp/tar.gz/refs/tags/20250301