diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2024-10-04 20:42:09 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2024-10-04 23:03:15 +0200 |
commit | 549f7778c65881e32c0b497002fd23e7d469aafe (patch) | |
tree | 36da2f8e6569c56a188c4e12ccafa07ddcf722b3 /net-libs/signon-ui | |
parent | kde-apps/akonadi: Prepare for IUSE qt6 USEdep droppage (diff) | |
download | gentoo-549f7778c65881e32c0b497002fd23e7d469aafe.tar.gz gentoo-549f7778c65881e32c0b497002fd23e7d469aafe.tar.bz2 gentoo-549f7778c65881e32c0b497002fd23e7d469aafe.zip |
net-libs/signon-ui: Drop IUSE qt6 and broken/obsolete patch
Thanks-to: Flavio Cappelli
Closes: https://bugs.gentoo.org/939365
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'net-libs/signon-ui')
-rw-r--r-- | net-libs/signon-ui/signon-ui-0.15_p20231016-r2.ebuild | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/net-libs/signon-ui/signon-ui-0.15_p20231016-r2.ebuild b/net-libs/signon-ui/signon-ui-0.15_p20231016-r2.ebuild new file mode 100644 index 000000000000..07986111cd8a --- /dev/null +++ b/net-libs/signon-ui/signon-ui-0.15_p20231016-r2.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit qmake-utils + +if [[ ${PV} = *9999* ]] ; then + EGIT_REPO_URI="https://gitlab.com/accounts-sso/signon-ui.git/" + inherit git-r3 +else + COMMIT=eef943f0edf3beee8ecb85d4a9dae3656002fc24 + SRC_URI="https://gitlab.com/accounts-sso/${PN}/-/archive/${COMMIT}/${PN}-${COMMIT}.tar.bz2 -> ${P}.tar.bz2" + S="${WORKDIR}/${PN}-${COMMIT}" + KEYWORDS="~amd64 ~arm64" +fi + +DESCRIPTION="Online accounts signon UI" +HOMEPAGE="https://gitlab.com/accounts-sso/signon-ui" + +LICENSE="GPL-2 GPL-3" +SLOT="0" +IUSE="test" + +RESTRICT="test" + +DEPEND=" + dev-libs/glib:2 + dev-qt/qtbase:6[dbus,gui,network,ssl,widgets] + dev-qt/qtdeclarative:6 + dev-qt/qtwebengine:6[qml] + >=net-libs/accounts-qt-1.17[qt6(+)] + net-libs/libproxy + >=net-libs/signond-8.61-r100[qt6(+)] + x11-libs/libnotify +" +RDEPEND="${DEPEND} + dev-qt/qtwebchannel:6 +" + +PATCHES=( + # thanks to openSUSE + "${FILESDIR}/${PN}-0.15_p20171022-webengine-cachedir-path.patch" + # downstream + "${FILESDIR}/${PN}-0.15_p20171022-drop-fno-rtti.patch" + "${FILESDIR}/${PN}-0.15_p20171022-disable-tests.patch" +) + +src_configure() { + eqmake6 PREFIX="${EPREFIX}"/usr +} + +src_compile() { + emake -j1 +} + +src_install() { + emake INSTALL_ROOT="${D}" -j1 install +} |