diff options
author | Pacho Ramos <pacho@gentoo.org> | 2014-02-09 09:35:53 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2014-02-09 09:35:53 +0000 |
commit | 8242920dc38cae65051f7a27190a83f2a599dcf7 (patch) | |
tree | 39c935830b7d12f2de1e42cd85aa7c665a1631dc /gnome-extra/seahorse-nautilus | |
parent | Version bump, drop old (diff) | |
download | gentoo-2-8242920dc38cae65051f7a27190a83f2a599dcf7.tar.gz gentoo-2-8242920dc38cae65051f7a27190a83f2a599dcf7.tar.bz2 gentoo-2-8242920dc38cae65051f7a27190a83f2a599dcf7.zip |
Fix icon location, bug #493642 by poncho
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'gnome-extra/seahorse-nautilus')
-rw-r--r-- | gnome-extra/seahorse-nautilus/ChangeLog | 5 | ||||
-rw-r--r-- | gnome-extra/seahorse-nautilus/seahorse-nautilus-3.10.1.ebuild | 16 |
2 files changed, 15 insertions, 6 deletions
diff --git a/gnome-extra/seahorse-nautilus/ChangeLog b/gnome-extra/seahorse-nautilus/ChangeLog index fcc10818cac5..e05727545e60 100644 --- a/gnome-extra/seahorse-nautilus/ChangeLog +++ b/gnome-extra/seahorse-nautilus/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for gnome-extra/seahorse-nautilus # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/seahorse-nautilus/ChangeLog,v 1.9 2014/01/10 20:54:21 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/seahorse-nautilus/ChangeLog,v 1.10 2014/02/09 09:35:53 pacho Exp $ + + 09 Feb 2014; Pacho Ramos <pacho@gentoo.org> seahorse-nautilus-3.10.1.ebuild: + Fix icon location, bug #493642 by poncho *seahorse-nautilus-3.8.0-r1 (10 Jan 2014) diff --git a/gnome-extra/seahorse-nautilus/seahorse-nautilus-3.10.1.ebuild b/gnome-extra/seahorse-nautilus/seahorse-nautilus-3.10.1.ebuild index 645cff002b61..1ec680c4319f 100644 --- a/gnome-extra/seahorse-nautilus/seahorse-nautilus-3.10.1.ebuild +++ b/gnome-extra/seahorse-nautilus/seahorse-nautilus-3.10.1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 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.10.1.ebuild,v 1.1 2013/12/24 17:13:09 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/seahorse-nautilus/seahorse-nautilus-3.10.1.ebuild,v 1.2 2014/02/09 09:35:53 pacho Exp $ EAPI="5" GCONF_DEBUG="no" # --disable-debug disables all assertions @@ -9,7 +9,7 @@ GNOME2_LA_PUNT="yes" inherit gnome2 DESCRIPTION="Nautilus extension for encrypting and decrypting files with GnuPG" -HOMEPAGE="http://www.gnome.org/projects/seahorse/" +HOMEPAGE="https://wiki.gnome.org/action/show/Apps/Seahorse" LICENSE="GPL-2" SLOT="0" @@ -28,10 +28,12 @@ COMMON_DEPEND=" >=x11-libs/libnotify-0.3:= || ( =app-crypt/gnupg-1.4* - =app-crypt/gnupg-2.0* )" + =app-crypt/gnupg-2.0* ) +" # seahorse-nautilus was formerly part of seahorse-plugins RDEPEND="${COMMON_DEPEND} - !app-crypt/seahorse-plugins[nautilus]" + !app-crypt/seahorse-plugins[nautilus] +" DEPEND="${COMMON_DEPEND} >=dev-util/intltool-0.35 virtual/pkgconfig @@ -42,6 +44,10 @@ src_prepare() { sed -e '/^[ \t]*CFLAGS="$CFLAGS \(-g\|-O0\)/d' -i configure.ac configure || die "sed failed" + # Fix icon location, upstream bug #719763 + sed -i 's/pixmaps\/seahorse-plugins\/48x48/pixmaps\/cryptui\/48x48/' \ + tool/seahorse-notification.c || die + gnome2_src_prepare } |