diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-01-15 21:40:35 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-01-20 00:51:32 +0100 |
commit | b6eb9f20fe1d680af613bf04bb7a5927d63f560a (patch) | |
tree | 0a8924fc7ef7ca20db9bd116063b1081701c728e /app-admin | |
parent | app-admin/qtpass: Prepare for dev-qt/qtgui[xcb -> X] (diff) | |
download | gentoo-b6eb9f20fe1d680af613bf04bb7a5927d63f560a.tar.gz gentoo-b6eb9f20fe1d680af613bf04bb7a5927d63f560a.tar.bz2 gentoo-b6eb9f20fe1d680af613bf04bb7a5927d63f560a.zip |
app-admin/qtpass: Drop 1.3.2 (r0)
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/qtpass/qtpass-1.3.2.ebuild | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/app-admin/qtpass/qtpass-1.3.2.ebuild b/app-admin/qtpass/qtpass-1.3.2.ebuild deleted file mode 100644 index 99fe7179cfbe..000000000000 --- a/app-admin/qtpass/qtpass-1.3.2.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit desktop qmake-utils virtualx - -DESCRIPTION="multi-platform GUI for pass, the standard unix password manager" -HOMEPAGE="https://qtpass.org/" -SRC_URI="https://github.com/IJHack/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~ppc64 ~x86" -IUSE="test" - -RDEPEND="app-admin/pass - dev-qt/qtcore:5 - dev-qt/qtgui:5[xcb] - dev-qt/qtnetwork:5 - dev-qt/qtwidgets:5 - net-misc/x11-ssh-askpass" -DEPEND="${RDEPEND} - dev-qt/qtsvg:5 - test? ( dev-qt/qttest:5 )" -BDEPEND="dev-qt/linguist-tools:5" - -RESTRICT="!test? ( test )" - -S="${WORKDIR}/QtPass-${PV}" - -DOCS=( {CHANGELOG,CONTRIBUTING,FAQ,README}.md ) - -src_prepare() { - default - - if ! use test ; then - sed -i '/SUBDIRS += src /s/tests //' \ - qtpass.pro || die "sed for qtpass.pro failed" - fi -} - -src_configure() { - eqmake5 PREFIX="${D}"/usr -} - -src_test() { - virtx default -} - -src_install() { - default - - insinto /usr/share/qtpass/translations - doins localization/*.qm - - doman qtpass.1 - domenu qtpass.desktop - newicon artwork/icon.png qtpass-icon.png - insinto /usr/share/appdata - doins qtpass.appdata.xml -} |