summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2019-05-04 11:49:06 +0200
committerPacho Ramos <pacho@gentoo.org>2019-05-04 11:49:06 +0200
commit9f4ddcee296ed707cefdac554a289df40e706928 (patch)
treed3f993aa344400849a91339dc9e5f115de9552d8 /net-libs
parentsys-power/upower: Drop old (diff)
downloadgentoo-9f4ddcee296ed707cefdac554a289df40e706928.tar.gz
gentoo-9f4ddcee296ed707cefdac554a289df40e706928.tar.bz2
gentoo-9f4ddcee296ed707cefdac554a289df40e706928.zip
net-libs/liboauth: Drop old
Package-Manager: Portage-2.3.64, Repoman-2.3.12 Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'net-libs')
-rw-r--r--net-libs/liboauth/liboauth-1.0.3.ebuild69
1 files changed, 0 insertions, 69 deletions
diff --git a/net-libs/liboauth/liboauth-1.0.3.ebuild b/net-libs/liboauth/liboauth-1.0.3.ebuild
deleted file mode 100644
index c854294a0240..000000000000
--- a/net-libs/liboauth/liboauth-1.0.3.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools-utils
-
-DESCRIPTION="C library implementing the OAuth secure authentication protocol"
-HOMEPAGE="http://liboauth.sourceforge.net/"
-SRC_URI="mirror://sourceforge/project/${PN}/${P}.tar.gz"
-
-LICENSE="|| ( GPL-2 MIT )"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~x64-macos"
-IUSE="curl doc bindist +nss"
-
-PATCHES=( "${FILESDIR}"/${PN}-1.0.1-doxygen-out-of-tree.patch )
-REQUIRED_USE="bindist? ( nss )"
-
-CDEPEND="
- nss? ( dev-libs/nss
- curl? ( || ( net-misc/curl[ssl,curl_ssl_nss] net-misc/curl[-ssl] ) )
- )
-
- !nss? ( dev-libs/openssl:0=
- curl? ( || ( net-misc/curl[ssl,curl_ssl_openssl] net-misc/curl[-ssl] ) )
- )
-
- net-misc/curl
-"
-
-RDEPEND="${CDEPEND}"
-
-DEPEND="${CDEPEND}
- doc? (
- app-doc/doxygen
- media-gfx/graphviz
- media-fonts/freefont
- )
- virtual/pkgconfig"
-
-src_configure() {
- local myeconfargs=(
- --disable-static
- $(use_enable !curl curl)
- $(use_enable curl libcurl)
- $(use_enable nss)
- )
-
- autotools-utils_src_configure
-}
-
-src_compile() {
- autotools-utils_src_compile
-
- if use doc ; then
- # make sure fonts are found
- export DOTFONTPATH="${EPREFIX}"/usr/share/fonts/freefont-ttf
- autotools-utils_src_compile dox
- fi
-}
-
-DOCS=( AUTHORS ChangeLog LICENSE.OpenSSL README )
-
-src_install() {
- use doc && HTML_DOCS=("${BUILD_DIR}"/doc/html/)
-
- autotools-utils_src_install
-}