diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2012-11-23 00:30:59 +0100 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2012-11-23 00:30:59 +0100 |
commit | 8807529c22b02fd9849ccaf7f35639e7f5912a70 (patch) | |
tree | 6e0a2429ee0566b539d7118dda8e7d75f2042a12 /app-crypt | |
parent | app-crypt/gcr: 3.6.1 → 3.6.2 (diff) | |
download | gnome-8807529c22b02fd9849ccaf7f35639e7f5912a70.tar.gz gnome-8807529c22b02fd9849ccaf7f35639e7f5912a70.tar.bz2 gnome-8807529c22b02fd9849ccaf7f35639e7f5912a70.zip |
app-crypt/seahorse: 3.6.2 → 3.6.3
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/seahorse/Manifest | 12 | ||||
-rw-r--r-- | app-crypt/seahorse/metadata.xml | 32 | ||||
-rw-r--r-- | app-crypt/seahorse/seahorse-3.6.3.ebuild (renamed from app-crypt/seahorse/seahorse-3.6.2.ebuild) | 23 |
3 files changed, 55 insertions, 12 deletions
diff --git a/app-crypt/seahorse/Manifest b/app-crypt/seahorse/Manifest index b69415b5..22da08a7 100644 --- a/app-crypt/seahorse/Manifest +++ b/app-crypt/seahorse/Manifest @@ -1 +1,11 @@ -DIST seahorse-3.6.2.tar.xz 1994884 SHA256 cf3ffa48fdbd4c30fa3cc7ea9e8188c1325416e67e5985c9ce22af0a5fd7560b SHA512 74bf6b5e605e7d396991701649b30964ee9d68fcfbc0d38a4a5af51ad16d7158213dab8a361af3c84b0922c451cd36525154da95fc418d0188d3caa657754a72 WHIRLPOOL 1e7cac4bd728751e0eecba2b40cbc63fc6d2def0b4878522a0e9146cbd239daadd06d1c5d329ab784c1e2ae5f4eacff79ef569d29b71fe619fa7d8e2eb43e374 +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA512 + +DIST seahorse-3.6.3.tar.xz 1995252 SHA256 9b712da1989725547a8093e638725ee6de74d7870661545a15374c7ebf335cc1 SHA512 e0a48a6391d46fb80f510f7d881fe87d78281db4f00960f54511121068bd9a8347f07cbd56c76a2a7863e34f9fc6043c6dbe73eea93b85eebdfe7bf5c8193a5c WHIRLPOOL cc66e3176c5ac74611dea7aec7fe9e2b31fc51b9b9b6f5421bc6823b55f8eb8a73895c3f375e4bfad1519ed5966b7f77f0f878253e1cf736a4b2d6255cc80541 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v2.0.19 (GNU/Linux) + +iEYEAREKAAYFAlCutbMACgkQ1fmVwcYIWAZSMgCeJjZTFpfnALk3pT3Jtj2uk3Oj +Vo0AoJ+OBO4xpzTv8oBEAs+81UmKcSKK +=fAVF +-----END PGP SIGNATURE----- diff --git a/app-crypt/seahorse/metadata.xml b/app-crypt/seahorse/metadata.xml new file mode 100644 index 00000000..380a2371 --- /dev/null +++ b/app-crypt/seahorse/metadata.xml @@ -0,0 +1,32 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>gnome</herd> + <use> + <flag name="introspection">Use + <pkg>dev-libs/gobject-introspection</pkg> for introspection</flag> + <flag name="ldap">Enable seahorse to manipulate GPG keys on a LDAP server.</flag> + </use> + <longdescription>Seahorse is a Gnome interface for GnuPG. It's main purpose is to be a PGP/GPG Key Manager, though +it has other components including a text editor and file manager. + +Key Manager Features: +Generating a key +Deleting a key +Importing keys from text or a file +Exporting a key to text or a file +View key properties + +Key Properties Features: +Show key info +Change owner trust +Change primary key's expiration date +Change passphrase +Export key +Delete Key + +Plugins: +Nautilus Integration +Gedit plugin +</longdescription> +</pkgmetadata> diff --git a/app-crypt/seahorse/seahorse-3.6.2.ebuild b/app-crypt/seahorse/seahorse-3.6.3.ebuild index 4234d7a4..73412204 100644 --- a/app-crypt/seahorse/seahorse-3.6.2.ebuild +++ b/app-crypt/seahorse/seahorse-3.6.3.ebuild @@ -51,7 +51,17 @@ RDEPEND="${COMMON_DEPEND} !<app-crypt/seahorse-plugins-2.91.0_pre20110114 " -pkg_setup() { +src_prepare() { + # FIXME: Do not mess with CFLAGS with USE="debug" + sed -e '/CFLAGS="$CFLAGS -g/d' \ + -e '/CFLAGS="$CFLAGS -O0/d' \ + -i configure.ac configure || die "sed 1 failed" + + gnome2_src_prepare +} + +src_configure() { + DOCS="AUTHORS ChangeLog NEWS README TODO THANKS" G2CONF="${G2CONF} --enable-pgp --enable-ssh @@ -61,14 +71,5 @@ pkg_setup() { $(use_enable avahi sharing) $(use_enable debug) $(use_enable ldap)" - DOCS="AUTHORS ChangeLog NEWS README TODO THANKS" -} - -src_prepare() { - # FIXME: Do not mess with CFLAGS with USE="debug" - sed -e '/CFLAGS="$CFLAGS -g/d' \ - -e '/CFLAGS="$CFLAGS -O0/d' \ - -i configure.ac configure || die "sed 1 failed" - - gnome2_src_prepare + gnome2_src_configure } |