diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-07-14 15:09:22 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-07-14 15:13:27 +0200 |
commit | 1cf3eb3b8bc99495361fcfe4f74007ee297093e6 (patch) | |
tree | 3eb56c618db580f64095e5273e149e947fc4f86c /dev-util | |
parent | dev-util/qdevicemonitor: fix Qt 5.11 specific issue and crash (diff) | |
download | gentoo-1cf3eb3b8bc99495361fcfe4f74007ee297093e6.tar.gz gentoo-1cf3eb3b8bc99495361fcfe4f74007ee297093e6.tar.bz2 gentoo-1cf3eb3b8bc99495361fcfe4f74007ee297093e6.zip |
dev-util/qdevicemonitor: Drop old
Package-Manager: Portage-2.3.41, Repoman-2.3.9
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/qdevicemonitor/qdevicemonitor-1.0.1.ebuild | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/dev-util/qdevicemonitor/qdevicemonitor-1.0.1.ebuild b/dev-util/qdevicemonitor/qdevicemonitor-1.0.1.ebuild deleted file mode 100644 index c055bb2fca97..000000000000 --- a/dev-util/qdevicemonitor/qdevicemonitor-1.0.1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -inherit eutils 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}" - -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" -} |