aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIonen Wolkens <ionen@gentoo.org>2024-05-04 13:15:47 -0400
committerIonen Wolkens <ionen@gentoo.org>2024-05-04 13:15:49 -0400
commitbf2e79547294657fbf8c702ab778e05e264f35f3 (patch)
treed1bde11f7a0365752b29c616148b91c325fd2034
parentmedia-gfx/phototonic: treeclean (diff)
downloadqt-bf2e79547294657fbf8c702ab778e05e264f35f3.tar.gz
qt-bf2e79547294657fbf8c702ab778e05e264f35f3.tar.bz2
qt-bf2e79547294657fbf8c702ab778e05e264f35f3.zip
app-emulation/q4wine: treeclean
Still in ::gentoo but no longer maintained by qt@g.o so cleaning from here. Will leave it up to future maintainers to import the live ebuild to ::gentoo or elsewhere if wanted. Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
-rw-r--r--app-emulation/q4wine/metadata.xml17
-rw-r--r--app-emulation/q4wine/q4wine-9999.ebuild56
2 files changed, 0 insertions, 73 deletions
diff --git a/app-emulation/q4wine/metadata.xml b/app-emulation/q4wine/metadata.xml
deleted file mode 100644
index d5f783f4..00000000
--- a/app-emulation/q4wine/metadata.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>qt@gentoo.org</email>
- <name>Gentoo Qt Project</name>
- </maintainer>
- <use>
- <flag name="ico">Enable ico support via <pkg>media-gfx/icoutils</pkg></flag>
- <flag name="iso">Support unprivileged mounting of ISO9660 images via <pkg>sys-fs/fuseiso</pkg></flag>
- <flag name="wineappdb">Enable Wine AppDB browser support</flag>
- </use>
- <upstream>
- <remote-id type="github">brezerk/q4wine</remote-id>
- <remote-id type="sourceforge">q4wine</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/app-emulation/q4wine/q4wine-9999.ebuild b/app-emulation/q4wine/q4wine-9999.ebuild
deleted file mode 100644
index 25b5a11f..00000000
--- a/app-emulation/q4wine/q4wine-9999.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-# Upstream names the package PV-rX. We change that to
-# PV_pX so we can use portage revisions.
-MY_P=${PN}-${PV/_p/-r}
-inherit cmake git-r3 xdg
-
-DESCRIPTION="Qt GUI configuration tool for Wine"
-HOMEPAGE="https://q4wine.brezblock.org.ua/"
-EGIT_REPO_URI="https://github.com/brezerk/q4wine.git"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS=""
-IUSE="+dbus debug +ico +iso +wineappdb"
-
-DEPEND="
- dev-qt/qtcore:5
- dev-qt/qtgui:5
- dev-qt/qtnetwork:5
- dev-qt/qtsingleapplication[qt5(+),X]
- dev-qt/qtsql:5[sqlite]
- dev-qt/qtsvg:5
- dev-qt/qtwidgets:5
- dev-qt/qtxml:5
- dbus? ( dev-qt/qtdbus:5 )
- ico? ( >=media-gfx/icoutils-0.26.0 )
-"
-RDEPEND="${DEPEND}
- app-admin/sudo
- >=sys-apps/which-2.19
- iso? ( sys-fs/fuseiso )
-"
-BDEPEND="
- dev-qt/linguist-tools:5
-"
-
-S="${WORKDIR}"/${MY_P}
-
-DOCS=( AUTHORS ChangeLog README )
-
-src_configure() {
- local mycmakeargs=(
- -DDEBUG=$(usex debug ON OFF)
- -DWITH_ICOUTILS=$(usex ico ON OFF)
- -DWITH_SYSTEM_SINGLEAPP=ON
- -DWITH_WINEAPPDB=$(usex wineappdb ON OFF)
- -DUSE_BZIP2=OFF
- -DUSE_GZIP=OFF
- -DWITH_DBUS=$(usex dbus ON OFF)
- )
- cmake_src_configure
-}