summaryrefslogtreecommitdiff
path: root/dev-libs/qoauth
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2017-01-07 17:55:58 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2017-01-07 18:22:17 +0100
commite22c5ac4d1cf61e929dc8707bb37ad2e4e7fc459 (patch)
treeae20b9aebdd69f09f31c5e4bd4d9e1f4fe84aaf5 /dev-libs/qoauth
parent5daee0b96948535deae6b5d1a651065403d5a1fe (diff)
downloadgentoo-e22c5ac4d1cf61e929dc8707bb37ad2e4e7fc459.tar.gz
gentoo-e22c5ac4d1cf61e929dc8707bb37ad2e4e7fc459.tar.xz
dev-libs/qoauth: Drop old
Package-Manager: portage-2.3.0
Diffstat (limited to 'dev-libs/qoauth')
-rw-r--r--dev-libs/qoauth/qoauth-2.0.1_pre20160315.ebuild71
1 files changed, 0 insertions, 71 deletions
diff --git a/dev-libs/qoauth/qoauth-2.0.1_pre20160315.ebuild b/dev-libs/qoauth/qoauth-2.0.1_pre20160315.ebuild
deleted file mode 100644
index 9ffd03826a1..00000000000
--- a/dev-libs/qoauth/qoauth-2.0.1_pre20160315.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit qmake-utils
-
-DESCRIPTION="Qt-based library for OAuth support"
-HOMEPAGE="https://wiki.github.com/ayoy/qoauth"
-SRC_URI="https://dev.gentoo.org/~johu/distfiles/${P}.tar.xz"
-
-LICENSE="LGPL-2.1"
-SLOT="5"
-KEYWORDS="~amd64 ~ppc64 ~x86"
-IUSE="debug doc static-libs test"
-
-COMMON_DEPEND="app-crypt/qca:2[debug?,qt5]"
-DEPEND="${COMMON_DEPEND}
- doc? ( app-doc/doxygen )
- test? ( dev-qt/qttest:5 )
-"
-RDEPEND="${COMMON_DEPEND}
- app-crypt/qca:2[ssl]
- !dev-libs/qoauth:0
-"
-
-DOCS=( README CHANGELOG )
-
-src_prepare() {
- default
-
- # disable functional tests that require network connection
- # and rely on 3rd party external server (bug #341267)
- epatch "${FILESDIR}/${PN}-1.0.1-disable-ft.patch"
-
- if ! use test; then
- sed -i -e '/SUBDIRS/s/tests//' ${PN}.pro || die "sed failed"
- fi
-
- sed -i -e '/^ *docs \\$/d' \
- -e '/^ *build_all \\$/d' \
- -e 's/^\#\(!macx\)/\1/' \
- src/src.pro || die "sed failed"
-
- sed -i -e "s/\(.*\)lib$/\1$(get_libdir)/" src/pcfile.sh || die "sed failed"
-}
-
-src_configure() {
- eqmake5 qoauth.pro
-}
-
-src_compile() {
- default
- if use static-libs; then
- emake -C src static
- fi
-}
-
-src_install() {
- INSTALL_ROOT="${D}" default
-
- if use static-libs; then
- dolib.a "${S}"/lib/lib${PN}.a
- fi
-
- if use doc; then
- doxygen "${S}"/Doxyfile || die "failed to generate documentation"
- dohtml "${S}"/doc/html/*
- fi
-}