Files
guru/sci-electronics/kactus2/kactus2-9999.ebuild
Arthur Zamarin e441a1a695 sci-electronics/kactus2: unkeyword s390
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
2022-05-02 20:32:54 +03:00

44 lines
865 B
Bash

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
inherit xdg
DESCRIPTION="A open source IP-XACT-based tool"
HOMEPAGE="
http://www.tkt.cs.tut.fi/research/funbase/Kactus2.htm
https://github.com/kactus2/kactus2dev
"
if [[ "${PV}" == "9999" ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/${PN}/${PN}dev.git"
else
SRC_URI="https://github.com/${PN}/${PN}dev/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~sparc ~x86"
S="${WORKDIR}/${PN}dev-${PV}"
fi
LICENSE="GPL-2"
SLOT="0"
RDEPEND="
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qthelp:5
dev-qt/qtprintsupport:5
dev-qt/qtsvg:5
dev-qt/qtwidgets:5
dev-qt/qtxml:5
"
DEPEND="
${RDEPEND}
"
src_install() {
# Can't use default, set INSTALL_ROOT
emake INSTALL_ROOT="${D}" install
}