net-libs/geonames - 9999 (gentoo-lomiri)

Search

Install

Install this version:

emerge -a =net-libs/geonames-9999

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

autounmask =net-libs/geonames-9999

Or alternatively:

emerge --autounmask-write -a =net-libs/geonames-9999

Package Information

Description:
A library for parsing and querying a local copy of the geonames.org database.
Homepage:
https://gitlab.com/ubports/development/core/geonames
License:
GPL-3

Ebuild Details

Version EAPI Keywords Slot
9999 8 ~amd64 0
View Raw Ebuild
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit cmake

if [[ ${PV} == 9999 ]]; then
    KEYWORDS=""
    EGIT_REPO_URI="https://gitlab.com/ubports/development/core/${PN}.git"
    inherit git-r3
else
    KEYWORDS="~amd64"
    SRC_URI="https://gitlab.com/ubports/development/core/${PN}/-/archive/${PV}/${PN}-${PV}.tar.gz"
fi

DESCRIPTION="A library for parsing and querying a local copy of the geonames.org database."
HOMEPAGE="https://gitlab.com/ubports/development/core/${PN}"

LICENSE="GPL-3"
SLOT="0"

DEPEND="
    dev-libs/glib
"

RDEPEND="${DEPEND}"

BDEPEND="
    dev-build/cmake
    dev-build/cmake-extras
    dev-build/samurai
"

PATCHES=(
    "${FILESDIR}"/001-cmake_fix_quality.patch
)


src_configure() {
    local mycmakeargs=(
        -DWANT_TESTS="OFF"
        -DWANT_DEMO="OFF"
        -DWANT_DOC="OFF"
    )

    cmake_src_configure
}

Inherited Eclasses

Dependencies

DEPEND

    dev-libs/glib

RDEPEND

    dev-libs/glib

BDEPEND

    dev-build/cmake
    dev-build/cmake-extras
    dev-build/samurai