diff options
author | 2005-04-11 20:15:01 +0000 | |
---|---|---|
committer | 2005-04-11 20:15:01 +0000 | |
commit | 7383dbb367293e00bdf4a71f281becddd1512a91 (patch) | |
tree | 6e40d1e22e07e7b409efaaf23d2e70b5ed017aa3 /app-office/grisbi/grisbi-0.5.5.ebuild | |
parent | merging pcmcia support into linux-mod, now awaiting pcmcia-cs changes and wer... (diff) | |
download | historical-7383dbb367293e00bdf4a71f281becddd1512a91.tar.gz historical-7383dbb367293e00bdf4a71f281becddd1512a91.tar.bz2 historical-7383dbb367293e00bdf4a71f281becddd1512a91.zip |
Version bump to cvs snapshot which fixes segfault on edit->preferences issue, as reported in bug #87468 by Will Wilson <wilson.william@gmail.com>. The snapshot was taken and ebuilt by: Guillaume Castagnino <guilc@fr.st> in the same bug. He also added a nice .desktop file for this.
Package-Manager: portage-1.585-cvs
Diffstat (limited to 'app-office/grisbi/grisbi-0.5.5.ebuild')
-rw-r--r-- | app-office/grisbi/grisbi-0.5.5.ebuild | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/app-office/grisbi/grisbi-0.5.5.ebuild b/app-office/grisbi/grisbi-0.5.5.ebuild index f1b86d19239b..d9263c5b7bf4 100644 --- a/app-office/grisbi/grisbi-0.5.5.ebuild +++ b/app-office/grisbi/grisbi-0.5.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/grisbi/grisbi-0.5.5.ebuild,v 1.1 2005/02/25 20:30:50 carlo Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/grisbi/grisbi-0.5.5.ebuild,v 1.2 2005/04/11 20:15:01 seemant Exp $ inherit eutils @@ -8,7 +8,8 @@ IUSE="print nls ofx" DESCRIPTION="Grisbi is a personal accounting application for Linux" HOMEPAGE="http://www.grisbi.org" -SRC_URI="mirror://sourceforge/grisbi/${P}.tar.bz2" +SRC_URI="mirror://sourceforge/grisbi/${P}.tar.bz2 + mirror://gentoo/doc.patch.bz2" LICENSE="GPL-2" SLOT="0" @@ -37,20 +38,17 @@ pkg_setup() { src_unpack() { - unpack ${A} + unpack ${A}; cd ${S} # Apply location patchs ebegin "Applying Gentoo documentation location patch" - cd ${S} - for i in src/Makefile.am src/Makefile.in \ - help/C/Makefile.am help/C/Makefile.in help/C/grisbi-manuel.html \ - help/fr/Makefile.am help/fr/Makefile.in help/fr/grisbi-manuel.html \ - help/de/Makefile.am help/de/Makefile.in help/de/grisbi-manuel.html - do - sed -i "s;doc/grisbi/help;doc/${PF}/help;g" ${i} - done + for i in \ + `find ./ -name 'Makefile.*'` \ + `find ./ -name 'grisbi-manuel.html'` + do + sed -i "s;doc/grisbi/help;doc/${PF}/help;g" ${i} + done eend 0 - # Patch for new unicode package (utf8 -> utf8x) epatch ${FILESDIR}/${P}-latex-unicode.patch } |