summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Lopatin <alopatindev@gmail.com>2020-01-17 23:14:01 +0300
committerAndreas Sturmlechner <asturm@gentoo.org>2020-01-18 18:16:00 +0100
commit280ead87c83c77f17a842244b4b9001c7fa27d95 (patch)
treec20d8632b283f9b9d19b70717330d9d3f55b193b /dev-util
parentdev-util/qdevicemonitor: fix build with Qt 5.14 (diff)
downloadgentoo-280ead87c83c77f17a842244b4b9001c7fa27d95.tar.gz
gentoo-280ead87c83c77f17a842244b4b9001c7fa27d95.tar.bz2
gentoo-280ead87c83c77f17a842244b4b9001c7fa27d95.zip
dev-util/qdevicemonitor: remove version 1.0.1-r1
Package-Manager: Portage-2.3.79, Repoman-2.3.16 Signed-off-by: Alexander Lopatin <alopatindev@gmail.com> Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/qdevicemonitor/qdevicemonitor-1.0.1-r1.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/dev-util/qdevicemonitor/qdevicemonitor-1.0.1-r1.ebuild b/dev-util/qdevicemonitor/qdevicemonitor-1.0.1-r1.ebuild
deleted file mode 100644
index 1b9b31c6c9dd..000000000000
--- a/dev-util/qdevicemonitor/qdevicemonitor-1.0.1-r1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit desktop qmake-utils
-
-DESCRIPTION="Crossplatform log viewer for Android, iOS and text files"
-HOMEPAGE="https://github.com/alopatindev/qdevicemonitor"
-
-if [[ ${PV} == "9999" ]] ; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/alopatindev/${PN}"
-else
- SRC_URI="https://github.com/alopatindev/qdevicemonitor/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE=""
-
-RDEPEND="
- dev-qt/qtcore:5
- dev-qt/qtgui:5
- dev-util/android-tools
- app-pda/usbmuxd"
-DEPEND="${RDEPEND}"
-
-PATCHES=(
- "${FILESDIR}"/${P}-qt-5.11.patch
- "${FILESDIR}"/${P}-crash-after-fresh-install.patch
-)
-
-src_configure() {
- cd "${PN}" || die
- export VERSION_WITH_BUILD_NUMBER="${PV}"
- eqmake5
-}
-
-src_compile() {
- cd "${PN}" || die
- emake
-}
-
-src_install() {
- dobin "${PN}/${PN}"
- dodoc README.md
- newicon -s scalable "icons/app_icon.svg" "${PN}.svg"
- domenu "icons/${PN}.desktop"
-}