blob: 468d03a3f3893ea256976f14d28f0c9f072bf7ec (
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
31
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cargo git-r3
CARGO_FETCH_CRATES=yes
EGIT_REPO_URI="https://github.com/rust-qt/cpp_to_rust.git"
DESCRIPTION="Generator of Rust-Qt crates."
HOMEPAGE="https://github.com/rust-qt/cpp_to_rust"
SRC_URI=""
LICENSE="MIT"
SLOT="0"
KEYWORDS=""
IUSE=""
CDEPEND="dev-db/sqlite"
DEPEND="${CDEPEND}
virtual/rust
|| ( virtual/cargo dev-util/cargo-bin )
"
RDEPEND="${CDEPEND}
dev-qt/qtchooser
dev-qt/qtcore
"
S="${WORKDIR}/${P}/qt_generator/qt_generator"
|