summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2013-09-08 13:21:07 +0000
committerMichael Palimaka <kensington@gentoo.org>2013-09-08 13:21:07 +0000
commit90a29cb8a9afa7fd871268effe9854757a763c8a (patch)
treeeaf77fc892a39b337551cd4935ff8e0257ded978 /net-libs
parentAdd unit file (#482444 by Andrius Štikonas) (diff)
downloadgentoo-2-90a29cb8a9afa7fd871268effe9854757a763c8a.tar.gz
gentoo-2-90a29cb8a9afa7fd871268effe9854757a763c8a.tar.bz2
gentoo-2-90a29cb8a9afa7fd871268effe9854757a763c8a.zip
Remove old.
(Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 675D0D2C)
Diffstat (limited to 'net-libs')
-rw-r--r--net-libs/liboauth/ChangeLog5
-rw-r--r--net-libs/liboauth/liboauth-0.9.7.ebuild82
2 files changed, 4 insertions, 83 deletions
diff --git a/net-libs/liboauth/ChangeLog b/net-libs/liboauth/ChangeLog
index 2c6e691dc811..8ff8190229c3 100644
--- a/net-libs/liboauth/ChangeLog
+++ b/net-libs/liboauth/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-libs/liboauth
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/liboauth/ChangeLog,v 1.33 2013/09/07 20:15:51 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/liboauth/ChangeLog,v 1.34 2013/09/08 13:21:07 kensington Exp $
+
+ 08 Sep 2013; Michael Palimaka <kensington@gentoo.org> -liboauth-0.9.7.ebuild:
+ Remove old.
07 Sep 2013; Agostino Sarubbo <ago@gentoo.org> liboauth-1.0.1.ebuild:
Stable for sparc, wrt bug #481894
diff --git a/net-libs/liboauth/liboauth-0.9.7.ebuild b/net-libs/liboauth/liboauth-0.9.7.ebuild
deleted file mode 100644
index 4484c41897cf..000000000000
--- a/net-libs/liboauth/liboauth-0.9.7.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/liboauth/liboauth-0.9.7.ebuild,v 1.8 2013/02/02 23:04:38 ago Exp $
-
-EAPI=4
-
-DESCRIPTION="C library implementing the OAuth secure authentication protocol"
-HOMEPAGE="http://liboauth.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
- http://liboauth.sourceforge.net/pool/${P}.tar.gz"
-
-LICENSE="|| ( GPL-2 MIT )"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos"
-IUSE="curl doc bindist +nss"
-
-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 myconf=
-
- if use nss || use bindist; then
- myconf="${myconf} --enable-nss"
- else
- myconf="${myconf} --disable-nss"
- fi
-
- econf \
- --disable-dependency-tracking \
- --enable-fast-install \
- --disable-static \
- $(use_enable !curl curl) \
- $(use_enable curl libcurl) \
- ${myconf}
-}
-
-src_compile() {
- emake
-
- if use doc ; then
- # make sure fonts are found
- export DOTFONTPATH="${EPREFIX}"/usr/share/fonts/freefont-ttf
- emake dox
- fi
-}
-
-src_test() {
- # explicitly allow parallel test build
- emake check
-}
-
-DOCS=( AUTHORS ChangeLog LICENSE.OpenSSL NEWS README )
-
-src_install() {
- default
-
- if use doc; then
- dohtml -r doc/html/*
- fi
-}