commit: 49a7b84f282e2a1b87495e4b33a8a380b9a3dc1e Author: tastytea <gentoo <AT> tastytea <DOT> de> AuthorDate: Tue Mar 12 08:53:06 2024 +0000 Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de> CommitDate: Tue Mar 12 08:53:06 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=49a7b84f
dev-cpp/qt-jdenticon: add slot 5 (qt5), fix dep in preparation for slot 6 (qt6) in the next version Signed-off-by: tastytea <gentoo <AT> tastytea.de> dev-cpp/qt-jdenticon/qt-jdenticon-0.3.0-r1.ebuild | 27 +++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/dev-cpp/qt-jdenticon/qt-jdenticon-0.3.0-r1.ebuild b/dev-cpp/qt-jdenticon/qt-jdenticon-0.3.0-r1.ebuild new file mode 100644 index 0000000000..fafae716b2 --- /dev/null +++ b/dev-cpp/qt-jdenticon/qt-jdenticon-0.3.0-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 2021-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit qmake-utils + +DESCRIPTION="Qt5 / C++14 Port of Jdenticon" +HOMEPAGE="https://github.com/Nheko-Reborn/qt-jdenticon" +SRC_URI="https://github.com/Nheko-Reborn/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="5" +KEYWORDS="~amd64" + +RDEPEND=" + dev-qt/qtgui:5 +" +DEPEND="${RDEPEND}" + +src_configure() { + eqmake5 +} + +src_install() { + emake INSTALL_ROOT="${D}" install +}
