public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
Search results ordered by [date|relevance]  view[summary|nested|Atom feed]
thread overview below | download mbox.gz: |
* [gentoo-commits] gentoo-x86 commit in app-crypt/seahorse-plugins: ChangeLog seahorse-plugins-2.28.1-r1.ebuild
@ 2010-04-26 13:48 99% Pacho Ramos (pacho)
  0 siblings, 0 replies; 1+ results
From: Pacho Ramos (pacho) @ 2010-04-26 13:48 UTC (permalink / raw
  To: gentoo-commits

pacho       10/04/26 13:48:58

  Modified:             ChangeLog
  Added:                seahorse-plugins-2.28.1-r1.ebuild
  Log:
  Apply ubuntu patch to finally solve bug #281729
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.19                 app-crypt/seahorse-plugins/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/seahorse-plugins/ChangeLog?rev=1.19&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/seahorse-plugins/ChangeLog?rev=1.19&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/seahorse-plugins/ChangeLog?r1=1.18&r2=1.19

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-crypt/seahorse-plugins/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog	12 Feb 2010 19:59:58 -0000	1.18
+++ ChangeLog	26 Apr 2010 13:48:58 -0000	1.19
@@ -1,6 +1,16 @@
 # ChangeLog for app-crypt/seahorse-plugins
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse-plugins/ChangeLog,v 1.18 2010/02/12 19:59:58 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse-plugins/ChangeLog,v 1.19 2010/04/26 13:48:58 pacho Exp $
+
+*seahorse-plugins-2.28.1-r1 (26 Apr 2010)
+
+  26 Apr 2010; Pacho Ramos <pacho@gentoo.org>
+  +seahorse-plugins-2.28.1-r1.ebuild,
+  +files/seahorse-plugins-2.28.1-gpgme_check_version.patch:
+  Revision bump to apply ubuntu patch to call gpgme_check_version () as
+  required by current stable and newer gpgme versions (see bug #281729).
+  Thanks to Sebastien Bacher for the patch, Patrick Beckmann and Alexander
+  Bezrukov for reporting.
 
   12 Feb 2010; Raúl Porcel <armin76@gentoo.org>
   seahorse-plugins-2.26.2-r1.ebuild:



1.1                  app-crypt/seahorse-plugins/seahorse-plugins-2.28.1-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/seahorse-plugins/seahorse-plugins-2.28.1-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/seahorse-plugins/seahorse-plugins-2.28.1-r1.ebuild?rev=1.1&content-type=text/plain

Index: seahorse-plugins-2.28.1-r1.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse-plugins/seahorse-plugins-2.28.1-r1.ebuild,v 1.1 2010/04/26 13:48:58 pacho Exp $

EAPI="2"

inherit eutils gnome2

DESCRIPTION="A GNOME application for managing encryption keys"
HOMEPAGE="http://www.gnome.org/projects/seahorse/index.html"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="applet debug epiphany gedit libnotify nautilus test"

RDEPEND="
	>=gnome-base/libglade-2.0
	>=gnome-base/gconf-2.0
	>=x11-libs/gtk+-2.10
	>=dev-libs/glib-2.16
	>=dev-libs/dbus-glib-0.72
	>=app-crypt/gpgme-1.0.0
	>=app-crypt/seahorse-2.25
	>=gnome-base/gnome-keyring-2.25
	>=gnome-extra/evolution-data-server-1.8

	|| (
		=app-crypt/gnupg-1.4*
		=app-crypt/gnupg-2.0* )

	nautilus? ( >=gnome-base/nautilus-2.12 )
	epiphany? (
		>=www-client/epiphany-2.24
		>=dev-libs/libxml2-2.6.0 )
	gedit? ( >=app-editors/gedit-2.16 )
	applet? ( >=gnome-base/gnome-panel-2.10 )
	libnotify? ( >=x11-libs/libnotify-0.3.2 )"
DEPEND="${RDEPEND}
	sys-devel/gettext
	>=app-text/gnome-doc-utils-0.3.2
	>=app-text/scrollkeeper-0.3
	>=dev-util/pkgconfig-0.20
	>=dev-util/intltool-0.35"

pkg_setup() {
	if use epiphany ; then
		if has_version '>=www-client/epiphany-2.24.3-r10'; then
			G2CONF="${G2CONF} --with-gecko=libxul-unstable"
		else
			# Now, epiphany could be using xul-1.8, xul-1.9 or ff-2
			# Let it auto-detect.
			:
		fi
	fi

	G2CONF="${G2CONF}
		--enable-agent
		--disable-update-mime-database
		--disable-static
		$(use_enable applet)
		$(use_enable debug)
		$(use_enable epiphany)
		$(use_enable gedit)
		$(use_enable libnotify)
		$(use_enable nautilus)
		$(use_enable test tests)"
}

src_prepare() {
	gnome2_src_prepare

	# Use gpgme_engine_check_version() before gpgm_new() due current gpgme, bug #281729
	epatch "${FILESDIR}/${PN}-2.28.1-gpgme_check_version.patch"

	# Fix intltoolize broken file, see upstream #577133
	sed "s:'\^\$\$lang\$\$':\^\$\$lang\$\$:g" -i po/Makefile.in.in || die "sed failed"
}

src_install() {
	gnome2_src_install

	find "${D}" -name "*.la" -delete || die "remove of la files failed"

	exeinto /etc/X11/xinit/xinitrc.d/
	doexe "${FILESDIR}/70-seahorse-agent" || die "doexe failed"
}






^ permalink raw reply	[relevance 99%]

Results 1-1 of 1 | reverse | options above
-- pct% links below jump to the message on this page, permalinks otherwise --
2010-04-26 13:48 99% [gentoo-commits] gentoo-x86 commit in app-crypt/seahorse-plugins: ChangeLog seahorse-plugins-2.28.1-r1.ebuild Pacho Ramos (pacho)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox