public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-office/gnucash: ChangeLog gnucash-2.4.5.ebuild
@ 2011-04-19  6:48 Gilles Dartiguelongue (eva)
  0 siblings, 0 replies; 5+ messages in thread
From: Gilles Dartiguelongue (eva) @ 2011-04-19  6:48 UTC (permalink / raw
  To: gentoo-commits

eva         11/04/19 06:48:38

  Modified:             ChangeLog
  Added:                gnucash-2.4.5.ebuild
  Log:
  Version bump. Fix linking against already installed gnucash libraries, bug #359033.
  
  (Portage version: 2.2.0_alpha30/cvs/Linux x86_64)

Revision  Changes    Path
1.233                app-office/gnucash/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnucash/ChangeLog?rev=1.233&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnucash/ChangeLog?rev=1.233&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnucash/ChangeLog?r1=1.232&r2=1.233

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/gnucash/ChangeLog,v
retrieving revision 1.232
retrieving revision 1.233
diff -u -r1.232 -r1.233
--- ChangeLog	29 Mar 2011 19:31:00 -0000	1.232
+++ ChangeLog	19 Apr 2011 06:48:37 -0000	1.233
@@ -1,6 +1,13 @@
 # ChangeLog for app-office/gnucash
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/ChangeLog,v 1.232 2011/03/29 19:31:00 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/ChangeLog,v 1.233 2011/04/19 06:48:37 eva Exp $
+
+*gnucash-2.4.5 (19 Apr 2011)
+
+  19 Apr 2011; Gilles Dartiguelongue <eva@gentoo.org> +gnucash-2.4.5.ebuild,
+  +files/gnucash-2.4.5-link-system-libs.patch:
+  Version bump. Fix linking against already installed gnucash libraries, bug
+  #359033.
 
   29 Mar 2011; Pacho Ramos <pacho@gentoo.org> gnucash-2.4.4.ebuild:
   Fix RDEPEND, bug #360533 by Sebastian Lipp).



1.1                  app-office/gnucash/gnucash-2.4.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnucash/gnucash-2.4.5.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnucash/gnucash-2.4.5.ebuild?rev=1.1&content-type=text/plain

Index: gnucash-2.4.5.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/gnucash-2.4.5.ebuild,v 1.1 2011/04/19 06:48:37 eva Exp $

EAPI="3"
PYTHON_DEPEND="python? 2:2.4"

inherit autotools eutils gnome2 python

DOC_VER="2.2.0"

DESCRIPTION="A personal finance manager"
HOMEPAGE="http://www.gnucash.org/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="chipcard cxx debug +doc hbci mysql ofx postgres python quotes sqlite webkit"

# FIXME: rdepend on dev-libs/qof when upstream fix their mess (see configure.in)

RDEPEND=">=dev-libs/glib-2.13:2
	>=dev-libs/popt-1.5
	>=dev-libs/libxml2-2.5.10:2
	>=dev-scheme/guile-1.8.3:12[deprecated,regex]
	dev-scheme/guile-www
	>=dev-scheme/slib-3.1.4
	>=gnome-base/gconf-2:2
	>=gnome-base/libgnomeui-2.4
	>=gnome-base/libglade-2.4:2.0
	|| ( <gnome-base/gnome-keyring-2.29 gnome-base/libgnome-keyring )
	media-libs/libart_lgpl
	>=sys-libs/zlib-1.1.4
	>=x11-libs/gtk+-2.14:2
	x11-libs/goffice:0.8[gnome]
	x11-libs/pango
	cxx? ( dev-cpp/gtkmm:2.4 )
	ofx? ( >=dev-libs/libofx-0.9.1 )
	hbci? ( >=net-libs/aqbanking-5[gtk]
		sys-libs/gwenhywfar[gtk]
		chipcard? ( sys-libs/libchipcard )
	)
	quotes? ( dev-perl/DateManip
		>=dev-perl/Finance-Quote-1.11
		dev-perl/HTML-TableExtract )
	webkit? ( net-libs/webkit-gtk:2 )
	!webkit? ( >=gnome-extra/gtkhtml-3.16:3.14 )
	sqlite? ( dev-db/libdbi dev-db/libdbi-drivers[sqlite3] )
	postgres? ( dev-db/libdbi dev-db/libdbi-drivers[postgres] )
	mysql? ( dev-db/libdbi dev-db/libdbi-drivers[mysql] )
"
DEPEND="${RDEPEND}
	>=app-text/scrollkeeper-0.3
	dev-util/pkgconfig
	dev-util/intltool
	gnome-base/gnome-common
	sys-devel/libtool
"

PDEPEND="doc? ( >=app-doc/gnucash-docs-${DOC_VER} )"
#ELTCONF="--patch-only"

# FIXME: no the best thing to do but it'd be even better to fix autofoo
# XXX: does not break here
#MAKEOPTS="${MAKEOPTS} -j1"

pkg_setup() {
	DOCS="doc/README.OFX doc/README.HBCI"

	if use webkit ; then
		G2CONF+=" --with-html-engine=webkit"
	else
		G2CONF+=" --with-html-engine=gtkhtml"
	fi

	if use sqlite || use mysql || use postgres ; then
		G2CONF+=" --enable-dbi"
	else
		G2CONF+=" --disable-dbi"
	fi

	G2CONF+="
		$(use_enable cxx gtkmm)
		$(use_enable debug)
		$(use_enable ofx)
		$(use_enable hbci aqbanking)
		$(use_enable python python-bindings)
		--disable-doxygen
		--enable-locale-specific-tax
		--disable-error-on-warning"

	if use python ; then
		python_set_active_version 2
	fi
}

src_configure() {
	# guile wrongly exports LDFLAGS as LIBS which breaks modules
	# Filter until a better ebuild is available, bug #202205
	local GUILE_LIBS=""
	local lib
	for lib in $(guile-config link); do
		if [ "${lib#-Wl}" = "$lib" ]; then
			GUILE_LIBS="$GUILE_LIBS $lib"
		fi
	done

	econf GUILE_LIBS="${GUILE_LIBS}" ${G2CONF}
}

src_prepare() {
	gnome2_src_prepare
	: > "${S}"/py-compile

	use python && python_convert_shebangs -r 2 .

	# Disable python binding tests because of missing file
	sed 's/^\(SUBDIRS =.*\)tests\(.*\)$/\1\2/' \
		-i src/optional/python-bindings/Makefile.{am,in} \
		|| die "python tests sed failed"

	# Do not relink to system libraries, bug #XXX
	epatch "${FILESDIR}/${PN}-2.4.5-link-system-libs.patch"

	intltoolize --force --copy --automake || die
	eautoreconf
}

src_test() {
	unset DBUS_SESSION_BUS_ADDRESS
	GUILE_WARN_DEPRECATED=no \
	GNC_DOT_DIR="${T}"/.gnucash \
	emake check \
	|| die "Make check failed. See above for details."
}

src_install() {
	# Parallel installation fails from time to time, bug #359123
	MAKEOPTS="${MAKEOPTS} -j1" gnome2_src_install GNC_DOC_INSTALL_DIR=/usr/share/doc/${PF}

	rm -rf "${ED}"/usr/share/doc/${PF}/{examples/,COPYING,INSTALL,*win32-bin.txt,projects.html}
#	prepalldocs
	mv "${ED}"/usr/share/doc/${PF} "${T}"/cantuseprepalldocs || die
	dodoc "${T}"/cantuseprepalldocs/* || die
	find "${ED}" -name '*.la' -delete || die
}






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-office/gnucash: ChangeLog gnucash-2.4.5.ebuild
@ 2011-05-02 16:52 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 5+ messages in thread
From: Tobias Klausmann (klausman) @ 2011-05-02 16:52 UTC (permalink / raw
  To: gentoo-commits

klausman    11/05/02 16:52:52

  Modified:             ChangeLog gnucash-2.4.5.ebuild
  Log:
  Stable on alpha, bug #344059
  
  (Portage version: 2.1.9.46/cvs/Linux x86_64)

Revision  Changes    Path
1.234                app-office/gnucash/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnucash/ChangeLog?rev=1.234&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnucash/ChangeLog?rev=1.234&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnucash/ChangeLog?r1=1.233&r2=1.234

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/gnucash/ChangeLog,v
retrieving revision 1.233
retrieving revision 1.234
diff -u -r1.233 -r1.234
--- ChangeLog	19 Apr 2011 06:48:37 -0000	1.233
+++ ChangeLog	2 May 2011 16:52:51 -0000	1.234
@@ -1,6 +1,9 @@
 # ChangeLog for app-office/gnucash
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/ChangeLog,v 1.233 2011/04/19 06:48:37 eva Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/ChangeLog,v 1.234 2011/05/02 16:52:51 klausman Exp $
+
+  02 May 2011; Tobias Klausmann <klausman@gentoo.org> gnucash-2.4.5.ebuild:
+  Stable on alpha, bug #344059
 
 *gnucash-2.4.5 (19 Apr 2011)
 



1.3                  app-office/gnucash/gnucash-2.4.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnucash/gnucash-2.4.5.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnucash/gnucash-2.4.5.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnucash/gnucash-2.4.5.ebuild?r1=1.2&r2=1.3

Index: gnucash-2.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/gnucash/gnucash-2.4.5.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- gnucash-2.4.5.ebuild	19 Apr 2011 09:12:35 -0000	1.2
+++ gnucash-2.4.5.ebuild	2 May 2011 16:52:51 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/gnucash-2.4.5.ebuild,v 1.2 2011/04/19 09:12:35 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/gnucash-2.4.5.ebuild,v 1.3 2011/05/02 16:52:51 klausman Exp $
 
 EAPI="3"
 PYTHON_DEPEND="python? 2:2.4"
@@ -15,7 +15,7 @@
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="chipcard cxx debug +doc hbci mysql ofx postgres python quotes sqlite webkit"
 
 # FIXME: rdepend on dev-libs/qof when upstream fix their mess (see configure.in)






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-office/gnucash: ChangeLog gnucash-2.4.5.ebuild
@ 2011-05-04 17:49 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 5+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-05-04 17:49 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    11/05/04 17:49:32

  Modified:             ChangeLog gnucash-2.4.5.ebuild
  Log:
  x86 stable wrt security bug #344059
  
  (Portage version: 2.1.9.42/cvs/Linux i686)

Revision  Changes    Path
1.235                app-office/gnucash/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnucash/ChangeLog?rev=1.235&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnucash/ChangeLog?rev=1.235&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnucash/ChangeLog?r1=1.234&r2=1.235

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/gnucash/ChangeLog,v
retrieving revision 1.234
retrieving revision 1.235
diff -u -r1.234 -r1.235
--- ChangeLog	2 May 2011 16:52:51 -0000	1.234
+++ ChangeLog	4 May 2011 17:49:31 -0000	1.235
@@ -1,6 +1,9 @@
 # ChangeLog for app-office/gnucash
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/ChangeLog,v 1.234 2011/05/02 16:52:51 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/ChangeLog,v 1.235 2011/05/04 17:49:31 phajdan.jr Exp $
+
+  04 May 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> gnucash-2.4.5.ebuild:
+  x86 stable wrt security bug #344059
 
   02 May 2011; Tobias Klausmann <klausman@gentoo.org> gnucash-2.4.5.ebuild:
   Stable on alpha, bug #344059



1.4                  app-office/gnucash/gnucash-2.4.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnucash/gnucash-2.4.5.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnucash/gnucash-2.4.5.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnucash/gnucash-2.4.5.ebuild?r1=1.3&r2=1.4

Index: gnucash-2.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/gnucash/gnucash-2.4.5.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- gnucash-2.4.5.ebuild	2 May 2011 16:52:51 -0000	1.3
+++ gnucash-2.4.5.ebuild	4 May 2011 17:49:31 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/gnucash-2.4.5.ebuild,v 1.3 2011/05/02 16:52:51 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/gnucash-2.4.5.ebuild,v 1.4 2011/05/04 17:49:31 phajdan.jr Exp $
 
 EAPI="3"
 PYTHON_DEPEND="python? 2:2.4"
@@ -15,7 +15,7 @@
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="alpha ~amd64 ~ppc ~ppc64 ~sparc x86"
 IUSE="chipcard cxx debug +doc hbci mysql ofx postgres python quotes sqlite webkit"
 
 # FIXME: rdepend on dev-libs/qof when upstream fix their mess (see configure.in)






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-office/gnucash: ChangeLog gnucash-2.4.5.ebuild
@ 2011-05-04 19:35 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 5+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-05-04 19:35 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/05/04 19:35:39

  Modified:             ChangeLog gnucash-2.4.5.ebuild
  Log:
  Stable on amd64 wrt bug #344059
  
  (Portage version: 2.1.9.46/cvs/Linux x86_64)

Revision  Changes    Path
1.236                app-office/gnucash/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnucash/ChangeLog?rev=1.236&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnucash/ChangeLog?rev=1.236&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnucash/ChangeLog?r1=1.235&r2=1.236

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/gnucash/ChangeLog,v
retrieving revision 1.235
retrieving revision 1.236
diff -u -r1.235 -r1.236
--- ChangeLog	4 May 2011 17:49:31 -0000	1.235
+++ ChangeLog	4 May 2011 19:35:39 -0000	1.236
@@ -1,6 +1,9 @@
 # ChangeLog for app-office/gnucash
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/ChangeLog,v 1.235 2011/05/04 17:49:31 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/ChangeLog,v 1.236 2011/05/04 19:35:39 hwoarang Exp $
+
+  04 May 2011; Markos Chandras <hwoarang@gentoo.org> gnucash-2.4.5.ebuild:
+  Stable on amd64 wrt bug #344059
 
   04 May 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> gnucash-2.4.5.ebuild:
   x86 stable wrt security bug #344059



1.5                  app-office/gnucash/gnucash-2.4.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnucash/gnucash-2.4.5.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnucash/gnucash-2.4.5.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnucash/gnucash-2.4.5.ebuild?r1=1.4&r2=1.5

Index: gnucash-2.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/gnucash/gnucash-2.4.5.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- gnucash-2.4.5.ebuild	4 May 2011 17:49:31 -0000	1.4
+++ gnucash-2.4.5.ebuild	4 May 2011 19:35:39 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/gnucash-2.4.5.ebuild,v 1.4 2011/05/04 17:49:31 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/gnucash-2.4.5.ebuild,v 1.5 2011/05/04 19:35:39 hwoarang Exp $
 
 EAPI="3"
 PYTHON_DEPEND="python? 2:2.4"
@@ -15,7 +15,7 @@
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="alpha ~amd64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 ~ppc ~ppc64 ~sparc x86"
 IUSE="chipcard cxx debug +doc hbci mysql ofx postgres python quotes sqlite webkit"
 
 # FIXME: rdepend on dev-libs/qof when upstream fix their mess (see configure.in)






^ permalink raw reply	[flat|nested] 5+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-office/gnucash: ChangeLog gnucash-2.4.5.ebuild
@ 2011-05-22 18:23 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 5+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-05-22 18:23 UTC (permalink / raw
  To: gentoo-commits

xarthisius    11/05/22 18:23:36

  Modified:             ChangeLog gnucash-2.4.5.ebuild
  Log:
  ppc stable wrt #344059
  
  (Portage version: 2.2.0_alpha34/cvs/Linux x86_64)

Revision  Changes    Path
1.238                app-office/gnucash/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnucash/ChangeLog?rev=1.238&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnucash/ChangeLog?rev=1.238&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnucash/ChangeLog?r1=1.237&r2=1.238

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/gnucash/ChangeLog,v
retrieving revision 1.237
retrieving revision 1.238
diff -u -r1.237 -r1.238
--- ChangeLog	7 May 2011 18:36:24 -0000	1.237
+++ ChangeLog	22 May 2011 18:23:36 -0000	1.238
@@ -1,6 +1,9 @@
 # ChangeLog for app-office/gnucash
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/ChangeLog,v 1.237 2011/05/07 18:36:24 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/ChangeLog,v 1.238 2011/05/22 18:23:36 xarthisius Exp $
+
+  22 May 2011; Kacper Kowalik <xarthisius@gentoo.org> gnucash-2.4.5.ebuild:
+  ppc stable wrt #344059
 
   07 May 2011; Raúl Porcel <armin76@gentoo.org> gnucash-2.2.9-r3.ebuild,
   gnucash-2.4.4.ebuild, gnucash-2.4.5.ebuild:



1.7                  app-office/gnucash/gnucash-2.4.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnucash/gnucash-2.4.5.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnucash/gnucash-2.4.5.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/gnucash/gnucash-2.4.5.ebuild?r1=1.6&r2=1.7

Index: gnucash-2.4.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-office/gnucash/gnucash-2.4.5.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- gnucash-2.4.5.ebuild	7 May 2011 18:36:24 -0000	1.6
+++ gnucash-2.4.5.ebuild	22 May 2011 18:23:36 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/gnucash-2.4.5.ebuild,v 1.6 2011/05/07 18:36:24 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/gnucash-2.4.5.ebuild,v 1.7 2011/05/22 18:23:36 xarthisius Exp $
 
 EAPI="3"
 PYTHON_DEPEND="python? 2:2.4"
@@ -15,7 +15,7 @@
 
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="alpha amd64 ~ppc ~ppc64 x86"
+KEYWORDS="alpha amd64 ppc ~ppc64 x86"
 IUSE="chipcard cxx debug +doc hbci mysql ofx postgres python quotes sqlite webkit"
 
 # FIXME: rdepend on dev-libs/qof when upstream fix their mess (see configure.in)






^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-05-22 18:23 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-04 17:49 [gentoo-commits] gentoo-x86 commit in app-office/gnucash: ChangeLog gnucash-2.4.5.ebuild PaweA Hajdan (phajdan.jr)
  -- strict thread matches above, loose matches on Subject: below --
2011-05-22 18:23 Kacper Kowalik (xarthisius)
2011-05-04 19:35 Markos Chandras (hwoarang)
2011-05-02 16:52 Tobias Klausmann (klausman)
2011-04-19  6:48 Gilles Dartiguelongue (eva)

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