mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-11 07:44:12 +02:00
Also add missing dev-qt/qtdbus dep and update EAPI 7 -> 8. Because the old version was version "1" from tag "t1", and the new one is "1.0.0" from tag "v1.0.0", make the ebuild a r1 so it actually gets bumped. Closes: https://bugs.gentoo.org/650732 Closes: https://bugs.gentoo.org/919342 Signed-off-by: Nicolas PARLANT <nicolas.parlant@parhuet.fr> Signed-off-by: Jason A. Donenfeld <zx2c4@gentoo.org>
25 lines
471 B
Bash
25 lines
471 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit qmake-utils
|
|
|
|
DESCRIPTION="Zenity Clone for Qt"
|
|
HOMEPAGE="https://github.com/luebking/qarma"
|
|
SRC_URI="https://github.com/luebking/qarma/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
DEPEND="dev-qt/qtbase:6[X,dbus,gui,widgets]"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_configure() {
|
|
eqmake6
|
|
}
|
|
|
|
src_install() {
|
|
dobin qarma
|
|
}
|