summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2021-08-26 19:56:13 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2021-10-17 02:40:31 +0200
commit0d7d27c3c9303f3794dd78532da28d59f8e93962 (patch)
tree10cfdb697aab77fc16698fb88327aaaabf7817a3 /dev-qt/qtchooser
parentdev-qt/qtgui: Drop vulnerable 5.15.2-r2 (diff)
downloadgentoo-0d7d27c3c9303f3794dd78532da28d59f8e93962.tar.gz
gentoo-0d7d27c3c9303f3794dd78532da28d59f8e93962.tar.bz2
gentoo-0d7d27c3c9303f3794dd78532da28d59f8e93962.zip
dev-qt: Drop old
Package-Manager: Portage-3.0.22, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-qt/qtchooser')
-rw-r--r--dev-qt/qtchooser/qtchooser-66.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/dev-qt/qtchooser/qtchooser-66.ebuild b/dev-qt/qtchooser/qtchooser-66.ebuild
deleted file mode 100644
index 50298a23a94b..000000000000
--- a/dev-qt/qtchooser/qtchooser-66.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit qmake-utils toolchain-funcs
-
-DESCRIPTION="Tool to quickly switch between multiple Qt installations"
-HOMEPAGE="https://code.qt.io/cgit/qtsdk/qtchooser.git/"
-SRC_URI="http://download.qt.io/official_releases/${PN}/${P}.tar.xz"
-
-LICENSE="|| ( LGPL-2.1 GPL-3 )"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-DEPEND="test? (
- dev-qt/qtcore:5
- dev-qt/qttest:5
- )"
-RDEPEND=""
-
-qtchooser_make() {
- emake \
- CXX="$(tc-getCXX)" \
- LFLAGS="${LDFLAGS}" \
- prefix="${EPREFIX}/usr" \
- "$@"
-}
-
-src_compile() {
- qtchooser_make
-}
-
-src_test() {
- pushd tests/auto >/dev/null || die
- eqmake5
- popd >/dev/null || die
-
- qtchooser_make check
-}
-
-src_install() {
- qtchooser_make INSTALL_ROOT="${D}" install
-
- keepdir /etc/xdg/qtchooser
-
- # TODO: bash and zsh completion
- # newbashcomp scripts/${PN}.bash ${PN}
-}