diff options
author | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-05-13 18:19:31 +0000 |
---|---|---|
committer | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-05-13 18:19:31 +0000 |
commit | b3ff5a05c174119b7102dc62df59dbe98e691f0e (patch) | |
tree | 698dea6531f68f84566ce55c8da4ddd52b8e9b6d /gnome-extra/seahorse-nautilus | |
parent | Version bump with significant UI changes. Drop old. (diff) | |
download | gentoo-2-b3ff5a05c174119b7102dc62df59dbe98e691f0e.tar.gz gentoo-2-b3ff5a05c174119b7102dc62df59dbe98e691f0e.tar.bz2 gentoo-2-b3ff5a05c174119b7102dc62df59dbe98e691f0e.zip |
Add seahorse plugin for nautilus-3, formerly part of seahorse-plugins.
(Portage version: 2.2.0_alpha104/cvs/Linux x86_64)
Diffstat (limited to 'gnome-extra/seahorse-nautilus')
-rw-r--r-- | gnome-extra/seahorse-nautilus/ChangeLog | 10 | ||||
-rw-r--r-- | gnome-extra/seahorse-nautilus/metadata.xml | 5 | ||||
-rw-r--r-- | gnome-extra/seahorse-nautilus/seahorse-nautilus-3.4.0.ebuild | 51 |
3 files changed, 66 insertions, 0 deletions
diff --git a/gnome-extra/seahorse-nautilus/ChangeLog b/gnome-extra/seahorse-nautilus/ChangeLog new file mode 100644 index 000000000000..314515f5c0e1 --- /dev/null +++ b/gnome-extra/seahorse-nautilus/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for gnome-extra/seahorse-nautilus +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/seahorse-nautilus/ChangeLog,v 1.1 2012/05/13 18:19:31 tetromino Exp $ + +*seahorse-nautilus-3.4.0 (13 May 2012) + + 13 May 2012; Alexandre Rostovtsev <tetromino@gentoo.org> + +seahorse-nautilus-3.4.0.ebuild, +metadata.xml: + Add seahorse plugin for nautilus-3, formerly part of seahorse-plugins. + diff --git a/gnome-extra/seahorse-nautilus/metadata.xml b/gnome-extra/seahorse-nautilus/metadata.xml new file mode 100644 index 000000000000..da6fd63d0085 --- /dev/null +++ b/gnome-extra/seahorse-nautilus/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>gnome</herd> +</pkgmetadata> diff --git a/gnome-extra/seahorse-nautilus/seahorse-nautilus-3.4.0.ebuild b/gnome-extra/seahorse-nautilus/seahorse-nautilus-3.4.0.ebuild new file mode 100644 index 000000000000..3cd05b9609b6 --- /dev/null +++ b/gnome-extra/seahorse-nautilus/seahorse-nautilus-3.4.0.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/seahorse-nautilus/seahorse-nautilus-3.4.0.ebuild,v 1.1 2012/05/13 18:19:31 tetromino Exp $ + +EAPI="4" +GCONF_DEBUG="no" # --disable-debug disables all assertions +GNOME2_LA_PUNT="yes" + +inherit gnome2 + +DESCRIPTION="Nautilus extension for encrypting and decrypting files with GnuPG" +HOMEPAGE="http://www.gnome.org/projects/seahorse/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +COMMON_DEPEND=">=app-crypt/gpgme-1.0.0 + >=dev-libs/dbus-glib-0.35 + >=dev-libs/glib-2.18:2 + gnome-base/gconf:2 + gnome-base/gnome-keyring + >=gnome-base/nautilus-3 + x11-libs/gtk+:3 + x11-libs/libcryptui + >=x11-libs/libnotify-0.3 + || ( + =app-crypt/gnupg-1.4* + =app-crypt/gnupg-2.0* )" +# seahorse-nautilus was formerly part of seahorse-plugins +RDEPEND="${COMMON_DEPEND} + !app-crypt/seahorse-plugins[nautilus]" +DEPEND="${COMMON_DEPEND} + >=dev-util/intltool-0.35 + virtual/pkgconfig" + +pkg_setup() { + DOCS="AUTHORS NEWS README THANKS" # ChangeLog is not used + # No point in making libnotify optional - nautilus depends on it + G2CONF="${G2CONF} + --disable-gpg-check + --enable-libnotify" +} + +src_prepare() { + gnome2_src_prepare + # Do not let configure mangle CFLAGS + sed -e '/^[ \t]*CFLAGS="$CFLAGS \(-g\|-O0\)/d' -i configure.ac configure || + die "sed failed" +} |