summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2020-06-07 22:59:01 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2020-06-07 22:59:51 +0200
commite871d174115afe2780182705be708540b4066944 (patch)
treea1ebbf753bb0d790c061d41d83f002296a8cb457 /dev-libs/kqoauth
parentdev-libs/kqoauth: Improve sed (diff)
downloadgentoo-e871d174115afe2780182705be708540b4066944.tar.gz
gentoo-e871d174115afe2780182705be708540b4066944.tar.bz2
gentoo-e871d174115afe2780182705be708540b4066944.zip
dev-libs/kqoauth: Drop 0.98-r2
Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-libs/kqoauth')
-rw-r--r--dev-libs/kqoauth/kqoauth-0.98-r2.ebuild46
1 files changed, 0 insertions, 46 deletions
diff --git a/dev-libs/kqoauth/kqoauth-0.98-r2.ebuild b/dev-libs/kqoauth/kqoauth-0.98-r2.ebuild
deleted file mode 100644
index af40313065f8..000000000000
--- a/dev-libs/kqoauth/kqoauth-0.98-r2.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit qmake-utils
-
-DESCRIPTION="Library for Qt that implements the OAuth 1.0 authentication specification"
-HOMEPAGE="https://github.com/kypeli/kQOAuth"
-SRC_URI="https://github.com/kypeli/kQOAuth/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
- dev-qt/qtcore:5
- dev-qt/qtgui:5
- dev-qt/qtnetwork:5
- dev-qt/qtxml:5
-"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/kQOAuth-${PV}"
-
-src_prepare() {
- default
-
- # prevent tests from beeing built at src_compile
- sed -i -e '/SUBDIRS/s/ tests//' ${PN}.pro || die "sed on ${PN}.pro failed"
- # respect libdir
- sed -e 's:{INSTALL_PREFIX}/lib:[QT_INSTALL_LIBS]:g'\
- -i src/src.pro || die "sed on src.pro failed"
-
- sed -e "s/TARGET = kqoauth/TARGET = kqoauth-qt5/g" \
- -i src/src.pro || die
-}
-
-src_configure() {
- eqmake5
-}
-
-src_install() {
- emake INSTALL_ROOT="${D}" install
-}