dev-libs/gpds - 1.10.0 (guru)

Search

Install

Install this version:

emerge -a =dev-libs/gpds-1.10.0

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

autounmask =dev-libs/gpds-1.10.0

Or alternatively:

emerge --autounmask-write -a =dev-libs/gpds-1.10.0

Package Information

Description:
A general purpose data serializer
Homepage:
https://github.com/simulton/gpds
License:
MIT

Ebuild Details

Version EAPI Keywords Slot
1.10.0 8 ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 0
View Raw Ebuild
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit cmake

DESCRIPTION="A general purpose data serializer"
HOMEPAGE="https://github.com/simulton/gpds"

if [[ "${PV}" == "9999" ]] ; then
	inherit git-r3
	EGIT_REPO_URI="https://github.com/simulton/${PN}.git"
else
	SRC_URI="https://github.com/simulton/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
	KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
	S="${WORKDIR}/${PN}-${PV}"
fi

LICENSE="MIT"
SLOT="0"
IUSE="examples static-libs test"
RESTRICT="!test? ( test )"
DEPEND="${RDEPEND}"

DOCS=( license.txt readme.md )

src_configure() {
	local mycmakeargs=(
		-DGPDS_BUILD_STATIC=$(usex static-libs)
		-DGPDS_BUILD_SHARED=ON
		-DGPDS_BUILD_TESTS=$(usex test)
		-DGPDS_BUILD_EXAMPLES=$(usex examples)
	)

	cmake_src_configure
}

src_install() {
	cmake_src_install
}

USE Flags

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

Global/Standard Flags

Inherited Eclasses

Manifest for 1.10.0

Type File Size Source URLs
DIST gpds-1.10.0.tar.gz 899241 bytes https://github.com/simulton/gpds/archive/1.10.0.tar.gz