blob: 9b332cea06f292660168cf7128cc9511e533c4b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Electronic Schematic and PCB design tools (meta package)"
HOMEPAGE="http://www.kicad.org"
SRC_URI=""
LICENSE="metapackage"
SLOT="0"
if [[ ${PV} != *_rc* ]] ; then
KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
fi
IUSE="doc minimal"
RDEPEND="
>=sci-electronics/kicad-${PV}
>=sci-electronics/kicad-symbols-${PV}
>=sci-electronics/kicad-footprints-${PV}
doc? (
>=app-doc/kicad-doc-${PV}
)
!minimal? (
>=sci-electronics/kicad-packages3d-${PV}
>=sci-electronics/kicad-templates-${PV}
)
"
|