Install this version:
emerge -a =media-gfx/circle-flags-2.7.0-r1
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =media-gfx/circle-flags-2.7.0-r1
Or alternatively:
emerge --autounmask-write -a =media-gfx/circle-flags-2.7.0-r1
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 2.7.0-r1 | 8 | ~amd64 | 0 |
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="A collection of circular flags in SVG format"
HOMEPAGE="https://github.com/linuxmint/circle-flags"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/linuxmint/circle-flags.git"
else
GIT_COMMIT="52b264ab2bda4651f0ed4667184e9a173b8dbe85"
SRC_URI="https://github.com/linuxmint/circle-flags/archive/${GIT_COMMIT}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${GIT_COMMIT}"
KEYWORDS="~amd64"
fi
# NOTE: README says "source code are licensed under the GNU GPLv3", but debian/copyright says "License: GPL-2.0+".
# Let's just use both, I guess. No harm.
LICENSE="MIT GPL-2+ GPL-3"
SLOT="0"
IUSE=""
src_install() {
insinto /usr/share
doins -r usr/share/*
}