net-libs/liboauth: remove 1.0.1
authorMichael Palimaka <kensington@gentoo.org>
Sat, 18 Mar 2017 07:44:47 +0000 (18:44 +1100)
committerMichael Palimaka <kensington@gentoo.org>
Sat, 18 Mar 2017 07:45:13 +0000 (18:45 +1100)
Package-Manager: Portage-2.3.5, Repoman-2.3.2

net-libs/liboauth/Manifest
net-libs/liboauth/liboauth-1.0.1.ebuild [deleted file]

index d83b9c65936e196bd2f74e620582c880e61f5060..1b201f02537f1c15aac470dd3620671939841749 100644 (file)
@@ -1,2 +1 @@
-DIST liboauth-1.0.1.tar.gz 501706 SHA256 5087d32fe1db7b588246a7de64fc0c2464c95efdebb2c7fe6f482d9b00e68d8b SHA512 5d84699ece179a3b17eae8b7113eeadd7bd24df953f7070a6a0e303923b1661d82174894bf64ef6abc6dc344042013256fb2b1ab4fae12ab2778fa15446aa06c WHIRLPOOL 41b83bfc578b74c65018df7a73ba58695352a6e9e53a8a69434dc033c8bea1664417b2e3691dd2f1dd99ce2d55d48bde0fb4d29727294f59b5436720294236ed
 DIST liboauth-1.0.3.tar.gz 504950 SHA256 0df60157b052f0e774ade8a8bac59d6e8d4b464058cc55f9208d72e41156811f SHA512 5a13818dbb3e0df76f7a3fde451eff4f90c9bebfe2076a294921af0c07c2b0789f717f0f862ac6961562d4227e016dc198ddd7efb9c7ac599c3bfbcdb2ac33fa WHIRLPOOL 98d9771a5e8a42ed7781a9f8fbcbdf4dd8e04077028855c07f8722de230be829d66a142e56ff85f88e0db20791b92ece18169b5a49deb1c28f3350ef90a9219c
diff --git a/net-libs/liboauth/liboauth-1.0.1.ebuild b/net-libs/liboauth/liboauth-1.0.1.ebuild
deleted file mode 100644 (file)
index 1fdefda..0000000
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2014 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 hppa ia64 ppc ppc64 sparc x86 ~x64-macos"
-IUSE="curl doc bindist +nss"
-
-PATCHES=( "${FILESDIR}"/${P}-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
-               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
-}