summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGilles Dartiguelongue <eva@gentoo.org>2013-03-05 22:52:24 +0000
committerGilles Dartiguelongue <eva@gentoo.org>2013-03-05 22:52:24 +0000
commitf0da1abd2f613d7bb980216caa547bb65de9cc1b (patch)
tree54b05861a4d50d46d1238d1a634a5d99fde520cc /app-crypt
parentClean up old revision. (diff)
downloadgentoo-2-f0da1abd2f613d7bb980216caa547bb65de9cc1b.tar.gz
gentoo-2-f0da1abd2f613d7bb980216caa547bb65de9cc1b.tar.bz2
gentoo-2-f0da1abd2f613d7bb980216caa547bb65de9cc1b.zip
Clean up old revision.
(Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key C6085806)
Diffstat (limited to 'app-crypt')
-rw-r--r--app-crypt/libsecret/ChangeLog5
-rw-r--r--app-crypt/libsecret/libsecret-0.11.ebuild71
2 files changed, 4 insertions, 72 deletions
diff --git a/app-crypt/libsecret/ChangeLog b/app-crypt/libsecret/ChangeLog
index 4b051fc13884..b395acce1b35 100644
--- a/app-crypt/libsecret/ChangeLog
+++ b/app-crypt/libsecret/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-crypt/libsecret
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/libsecret/ChangeLog,v 1.15 2013/03/05 01:26:14 nirbheek Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/libsecret/ChangeLog,v 1.16 2013/03/05 22:52:24 eva Exp $
+
+ 05 Mar 2013; Gilles Dartiguelongue <eva@gentoo.org> -libsecret-0.11.ebuild:
+ Clean up old revision.
*libsecret-0.14 (05 Mar 2013)
diff --git a/app-crypt/libsecret/libsecret-0.11.ebuild b/app-crypt/libsecret/libsecret-0.11.ebuild
deleted file mode 100644
index e461718b8504..000000000000
--- a/app-crypt/libsecret/libsecret-0.11.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/libsecret/libsecret-0.11.ebuild,v 1.3 2012/10/24 16:47:22 tetromino Exp $
-
-EAPI="4"
-VALA_MIN_API_VERSION=0.18
-VALA_USE_DEPEND=vapigen
-
-inherit eutils gnome2 python vala virtualx
-
-DESCRIPTION="GObject library for accessing the freedesktop.org Secret Service API"
-HOMEPAGE="https://live.gnome.org/Libsecret"
-
-LICENSE="LGPL-2.1+ Apache-2.0" # Apache-2.0 license is used for tests only
-SLOT="0"
-IUSE="+crypt debug +introspection test vala"
-REQUIRED_USE="vala? ( introspection )"
-KEYWORDS="~amd64 ~x86"
-
-COMMON_DEPEND="
- >=dev-libs/glib-2.31.0:2
- crypt? ( >=dev-libs/libgcrypt-1.2.2 )
- introspection? ( >=dev-libs/gobject-introspection-1.29 )"
-RDEPEND="${COMMON_DEPEND}
- >=gnome-base/gnome-keyring-3"
-# Add ksecrets to RDEPEND when it's added to portage
-DEPEND="${COMMON_DEPEND}
- dev-libs/libxslt
- dev-util/gdbus-codegen
- dev-util/gtk-doc-am
- >=dev-util/intltool-0.35.0
- sys-devel/gettext
- virtual/pkgconfig
- test? ( introspection? (
- =dev-lang/python-2*
- >=dev-libs/gjs-1.32
- dev-python/pygobject:3
- ) )
- vala? ( $(vala_depend) )"
-
-pkg_setup() {
- # python is only needed for tests
- if use test && use introspection; then
- python_set_active_version 2
- python_pkg_setup
- fi
-}
-
-src_prepare() {
- DOCS="AUTHORS ChangeLog NEWS README"
- G2CONF="${G2CONF}
- --enable-manpages
- --disable-strict
- --disable-coverage
- --disable-static
- $(use_enable crypt gcrypt)
- $(use_enable introspection)
- $(use_enable vala)"
-
- use vala && vala_src_prepare
- gnome2_src_prepare
-}
-
-src_test() {
- Xemake check
-}
-
-src_install() {
- gnome2_src_install
- prune_libtool_files --all
-}