mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Signed-off-by: Zoltan Puskas <zoltan@sinustrom.info> Part-of: https://github.com/gentoo/gentoo/pull/44887 Signed-off-by: Sam James <sam@gentoo.org>
23 lines
551 B
Bash
23 lines
551 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake
|
|
|
|
DESCRIPTION="Electronic Schematic and PCB design tools project templates"
|
|
HOMEPAGE="https://github.com/kicad/kicad-templates"
|
|
if [[ ${PV} == 9999 ]]; then
|
|
EGIT_REPO_URI="https://gitlab.com/kicad/libraries/${PN}.git"
|
|
inherit git-r3
|
|
else
|
|
SRC_URI="https://gitlab.com/kicad/libraries/${PN}/-/archive/${PV}/${P}.tar.bz2"
|
|
|
|
KEYWORDS="~amd64 ~riscv"
|
|
fi
|
|
|
|
LICENSE="CC-BY-SA-4.0"
|
|
SLOT="0"
|
|
|
|
RDEPEND=">=sci-electronics/kicad-8.0.0"
|