diff options
author | Pacho Ramos <pacho@gentoo.org> | 2014-05-31 08:11:14 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2014-05-31 08:11:14 +0000 |
commit | 92188756ba82829569d0833b426e379afa73f0f5 (patch) | |
tree | 5a5228c48295b7550a5eff87afba9a168249210a /x11-libs/libcryptui | |
parent | update 3.12 mask (diff) | |
download | gentoo-2-92188756ba82829569d0833b426e379afa73f0f5.tar.gz gentoo-2-92188756ba82829569d0833b426e379afa73f0f5.tar.bz2 gentoo-2-92188756ba82829569d0833b426e379afa73f0f5.zip |
Version bump
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'x11-libs/libcryptui')
-rw-r--r-- | x11-libs/libcryptui/ChangeLog | 7 | ||||
-rw-r--r-- | x11-libs/libcryptui/libcryptui-3.12.2.ebuild | 62 |
2 files changed, 68 insertions, 1 deletions
diff --git a/x11-libs/libcryptui/ChangeLog b/x11-libs/libcryptui/ChangeLog index 203a7031de49..d72d47f7114d 100644 --- a/x11-libs/libcryptui/ChangeLog +++ b/x11-libs/libcryptui/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-libs/libcryptui # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libcryptui/ChangeLog,v 1.16 2014/04/27 09:37:23 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libcryptui/ChangeLog,v 1.17 2014/05/31 08:11:14 pacho Exp $ + +*libcryptui-3.12.2 (31 May 2014) + + 31 May 2014; Pacho Ramos <pacho@gentoo.org> +libcryptui-3.12.2.ebuild: + Version bump 27 Apr 2014; Pacho Ramos <pacho@gentoo.org> -libcryptui-3.8.0.ebuild: drop old diff --git a/x11-libs/libcryptui/libcryptui-3.12.2.ebuild b/x11-libs/libcryptui/libcryptui-3.12.2.ebuild new file mode 100644 index 000000000000..0a520be2aabd --- /dev/null +++ b/x11-libs/libcryptui/libcryptui-3.12.2.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libcryptui/libcryptui-3.12.2.ebuild,v 1.1 2014/05/31 08:11:14 pacho Exp $ + +EAPI="5" +GCONF_DEBUG="yes" + +inherit gnome2 + +DESCRIPTION="User interface components for OpenPGP" +HOMEPAGE="https://wiki.gnome.org/Apps/Seahorse" + +LICENSE="GPL-2+ LGPL-2.1+ FDL-1.1" +SLOT="0" +IUSE="+introspection libnotify" +KEYWORDS="~amd64 ~x86 ~x86-fbsd" + +# Pull in libnotify-0.7 because it's controlled via an automagic ifdef +COMMON_DEPEND=" + >=dev-libs/glib-2.32:2 + >=x11-libs/gtk+-3:3[introspection?] + >=dev-libs/dbus-glib-0.72 + >=gnome-base/gnome-keyring-2.91.2 + x11-libs/libICE + x11-libs/libSM + + >=app-crypt/gpgme-1 + || ( + =app-crypt/gnupg-2.0* + =app-crypt/gnupg-1.4* ) + + introspection? ( >=dev-libs/gobject-introspection-0.6.4 ) + libnotify? ( >=x11-libs/libnotify-0.7:= ) +" +DEPEND="${COMMON_DEPEND} + >=app-text/scrollkeeper-0.3 + >=dev-util/gtk-doc-am-1.9 + >=dev-util/intltool-0.35 + sys-devel/gettext + virtual/pkgconfig +" +# Before 3.1.4, libcryptui was part of seahorse +RDEPEND="${COMMON_DEPEND} + !<app-crypt/seahorse-3.1.4 +" + +src_prepare() { + # FIXME: Do not mess with CFLAGS with USE="debug" + sed -e '/CFLAGS="$CFLAGS -g -O0/d' \ + -e 's/-Werror//' \ + -i configure.ac configure || die "sed failed" + + gnome2_src_prepare +} + +src_configure() { + gnome2_src_configure \ + --disable-static \ + --disable-update-mime-database \ + $(use_enable introspection) \ + $(use_enable libnotify) +} |