gentoo-ebuilds/x11-misc/qarma/qarma-1.0.0-r1.ebuild
Nicolas PARLANT bb0d2a8ac5
x11-misc/qarma: add 1.0.0, and port to qt6
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>
2025-01-17 20:04:56 +01:00

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
}