From 8ba9011dae5fb85e1e53bb6adb122a5615fb32e3 Mon Sep 17 00:00:00 2001 From: Bertrand Jacquin Date: Sat, 30 Jul 2005 21:48:23 +0000 Subject: move gentoofr overlay to .. --- app-office/gepolabo/ChangeLog | 10 +++ app-office/gepolabo/Manifest | 4 ++ app-office/gepolabo/files/digest-gepolabo-0.4.8 | 1 + app-office/gepolabo/gepolabo-0.4.8.ebuild | 56 ++++++++++++++++ app-office/gepolabo/metadata.xml | 9 +++ app-office/grisbi/ChangeLog | 72 +++++++++++++++++++++ app-office/grisbi/Manifest | 9 +++ app-office/grisbi/files/digest-grisbi-0.5.6 | 1 + app-office/grisbi/files/digest-grisbi-0.5.7 | 1 + .../grisbi/files/grisbi-0.5.5-latex-unicode.patch | 11 ++++ .../grisbi/files/grisbi-0.5.6-latex-unicode.patch | 11 ++++ app-office/grisbi/files/grisbi.desktop | 10 +++ app-office/grisbi/grisbi-0.5.6.ebuild | 75 ++++++++++++++++++++++ app-office/grisbi/grisbi-0.5.7.ebuild | 75 ++++++++++++++++++++++ app-office/grisbi/metadata.xml | 15 +++++ 15 files changed, 360 insertions(+) create mode 100644 app-office/gepolabo/ChangeLog create mode 100644 app-office/gepolabo/Manifest create mode 100644 app-office/gepolabo/files/digest-gepolabo-0.4.8 create mode 100644 app-office/gepolabo/gepolabo-0.4.8.ebuild create mode 100644 app-office/gepolabo/metadata.xml create mode 100644 app-office/grisbi/ChangeLog create mode 100644 app-office/grisbi/Manifest create mode 100644 app-office/grisbi/files/digest-grisbi-0.5.6 create mode 100644 app-office/grisbi/files/digest-grisbi-0.5.7 create mode 100644 app-office/grisbi/files/grisbi-0.5.5-latex-unicode.patch create mode 100644 app-office/grisbi/files/grisbi-0.5.6-latex-unicode.patch create mode 100644 app-office/grisbi/files/grisbi.desktop create mode 100644 app-office/grisbi/grisbi-0.5.6.ebuild create mode 100644 app-office/grisbi/grisbi-0.5.7.ebuild create mode 100644 app-office/grisbi/metadata.xml (limited to 'app-office') diff --git a/app-office/gepolabo/ChangeLog b/app-office/gepolabo/ChangeLog new file mode 100644 index 00000000..dde3ec7f --- /dev/null +++ b/app-office/gepolabo/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-office/gepolabo +# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + +*gepolabo-0.4.8 (16 Feb 2005) + + 16 Feb 2005; Bertrand Jacquin + +gepolabo-0.4.8.ebuild: + New Ebuild. + diff --git a/app-office/gepolabo/Manifest b/app-office/gepolabo/Manifest new file mode 100644 index 00000000..846cd1bc --- /dev/null +++ b/app-office/gepolabo/Manifest @@ -0,0 +1,4 @@ +MD5 fb62120fd4512585fd66265764421eea gepolabo-0.4.8.ebuild 1151 +MD5 a6c7da0849a35a3e74a7e627666984a9 ChangeLog 249 +MD5 a26b2af52a90ba476496df1f2b945e02 metadata.xml 252 +MD5 5327a1b0a09183a218b2f523ca3e61a5 files/digest-gepolabo-0.4.8 67 diff --git a/app-office/gepolabo/files/digest-gepolabo-0.4.8 b/app-office/gepolabo/files/digest-gepolabo-0.4.8 new file mode 100644 index 00000000..b45ed00b --- /dev/null +++ b/app-office/gepolabo/files/digest-gepolabo-0.4.8 @@ -0,0 +1 @@ +MD5 559181ef7200454c1f1ee0930b6d4ebf gepolabo-0.4.8.tar.gz 1564979 diff --git a/app-office/gepolabo/gepolabo-0.4.8.ebuild b/app-office/gepolabo/gepolabo-0.4.8.ebuild new file mode 100644 index 00000000..0b58c443 --- /dev/null +++ b/app-office/gepolabo/gepolabo-0.4.8.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +DESCRIPTION="Gepolabo is a bourse analyser" +HOMEPAGE="http://gepolabo.free.fr" +SRC_URI="http://gepolabo.free.fr/telechargement/v${PV}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="nls" + +DEPEND=">=dev-db/mysql-3.23 + x11-libs/gtk+ + net-misc/curl + nls? (sys-devel/gettext)" +RDEPEND="${DEPEND}" + +RESTRICT="nomirror" + +src_unpack() +{ + unpack ${A} +} + +src_compile() +{ + econf \ + `use_enable nls` || die + emake || die +} + +src_install() +{ + dodir /usr/bin + + # For fixing the Makefile which need those directory, but don't create them + dodir /usr/share/gepolabo/sql + dodir /usr/share/gepolabo/web/{histo,seance} + + einstall || die + + # Files created are in a nasty directory (don't find how delete them + # properly (with ./configure), so ... + rm -rf ${D}/usr/doc + + dodoc README AUTHORS TODO NEWS ChangeLog +} + +pkg_postinst() +{ + einfo "Gepolabo is now installed" + einfo "You just have now to use to the sql script which is placed on /usr/share/gepolabo/sql/creation.sql" + einfo "Also, you can see files in /usr/share/gepolabo/" +} diff --git a/app-office/gepolabo/metadata.xml b/app-office/gepolabo/metadata.xml new file mode 100644 index 00000000..c6b49db3 --- /dev/null +++ b/app-office/gepolabo/metadata.xml @@ -0,0 +1,9 @@ + + + + + beber.gentoo@gmail.com + Bertrand Jacquin + + + diff --git a/app-office/grisbi/ChangeLog b/app-office/grisbi/ChangeLog new file mode 100644 index 00000000..9b48ba49 --- /dev/null +++ b/app-office/grisbi/ChangeLog @@ -0,0 +1,72 @@ +# ChangeLog for app-office/grisbi +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/grisbi/ChangeLog,v 1.14 2005/05/10 11:39:23 seemant Exp $ + + 10 May 2005; Seemant Kulleen grisbi-0.5.5.ebuild: + get the doc.patch business out of SRC_URI, it's breaking things + +*grisbi-0.5.5.20050410 (11 Apr 2005) + + 11 Apr 2005; Seemant Kulleen +files/grisbi.desktop, + -grisbi-0.5.2.ebuild, grisbi-0.5.4-r1.ebuild, grisbi-0.5.5.ebuild, + +grisbi-0.5.5.20050410.ebuild: + Version bump to cvs snapshot which fixes segfault on edit->preferences + issue, as reported in bug #87468 by Will Wilson . + The snapshot was taken and ebuilt by: Guillaume Castagnino in + the same bug. He also added a nice .desktop file for this. + +*grisbi-0.5.5 (25 Feb 2005) + + 25 Feb 2005; Carsten Lohrke + +files/grisbi-0.5.5-latex-unicode.patch, +grisbi-0.5.5.ebuild: + version bump + + 01 Jan 2005; Jason Wever grisbi-0.5.4-r1.ebuild: + Added ~sparc keyword. + +*grisbi-0.5.4-r1 (28 Dec 2004) + + 28 Dec 2004; Seemant Kulleen +grisbi-0.5.4-r1.ebuild: + revision bump for new digest -- upstream changed the tarball hours after + package added to portage. shame on them. + +*grisbi-0.5.4 (27 Dec 2004) + + 27 Dec 2004; Seemant Kulleen +grisbi-0.5.4.ebuild: + version bump thanks to: Guillaume Castagnino . Sorry about not + getting to the previous bump in time. + +*grisbi-0.5.2 (21 Oct 2004) + + 21 Oct 2004; Seemant Kulleen +grisbi-0.5.2.ebuild: + version bump thanks to: Guillaume Castagnino in bug #67566 + +*grisbi-0.5.2_pre1 (08 Oct 2004) + + 08 Oct 2004; Seemant Kulleen grisbi-0.5.0-r1.ebuild, + +grisbi-0.5.2_pre1.ebuild: + Version bump; adds support for ofx and nls USE flags. Ebuild by: Guillaume + Castagnino via email + + 06 Sep 2004; Ciaran McCreesh grisbi-0.5.0-r1.ebuild: + Switch to use epause and ebeep, bug #62950 + + 14 Aug 2004; Sven Wegener metadata.xml: + Corrected metadata.xml to match DTD. + + 07 Aug 2004; Tom Martin grisbi-0.5.0-r1.ebuild: + Typo in DESCRIPTION: personnal -> personal. Bug 59717. + + 18 Jul 2004; Daniel Ahlberg grisbi-0.5.0-r1.ebuild: + Added amd64 keyword, closing #57016. + + 16 Jul 2004; David Holm grisbi-0.5.0-r1.ebuild: + Added to ~ppc. + +*grisbi-0.5.0-r1 (13 Jul 2004) + + 13 Jul 2004; Seemant Kulleen +grisbi-0.5.0-r1.ebuild: + new accounting office package. Ebuild submitted by: Guillaume Castagnino + in bug #52595. Guillaume will be the third party maintainer for + this package. Seemant will be his gentoo proxy + diff --git a/app-office/grisbi/Manifest b/app-office/grisbi/Manifest new file mode 100644 index 00000000..ced8380f --- /dev/null +++ b/app-office/grisbi/Manifest @@ -0,0 +1,9 @@ +MD5 f00dec92658430a4a711c6074a35196c grisbi-0.5.6.ebuild 1643 +MD5 3432c8033eb910757b949d7cd41ad92d grisbi-0.5.7.ebuild 1585 +MD5 809e7f4e9c18cf5c542752117fc5fe5b ChangeLog 2865 +MD5 5387e76e6294c5f60159aab38850fee9 metadata.xml 443 +MD5 34efdef1d5896910c218177e358bb019 files/grisbi.desktop 207 +MD5 4b586e8dc048875af95711c52e2f7ab3 files/grisbi-0.5.5-latex-unicode.patch 461 +MD5 25fe3a6e8d61a4ff5e7209f41d101e10 files/digest-grisbi-0.5.6 65 +MD5 3a58ad7603fa0514804ef4027dd31201 files/digest-grisbi-0.5.7 65 +MD5 4b586e8dc048875af95711c52e2f7ab3 files/grisbi-0.5.6-latex-unicode.patch 461 diff --git a/app-office/grisbi/files/digest-grisbi-0.5.6 b/app-office/grisbi/files/digest-grisbi-0.5.6 new file mode 100644 index 00000000..adbddef5 --- /dev/null +++ b/app-office/grisbi/files/digest-grisbi-0.5.6 @@ -0,0 +1 @@ +MD5 82735e2a9eee650cb7e60f1a2913c8f3 grisbi-0.5.6.tar.bz2 913653 diff --git a/app-office/grisbi/files/digest-grisbi-0.5.7 b/app-office/grisbi/files/digest-grisbi-0.5.7 new file mode 100644 index 00000000..d8b01ab1 --- /dev/null +++ b/app-office/grisbi/files/digest-grisbi-0.5.7 @@ -0,0 +1 @@ +MD5 571e5b08ee9477c2adec459fb4d99625 grisbi-0.5.7.tar.bz2 912427 diff --git a/app-office/grisbi/files/grisbi-0.5.5-latex-unicode.patch b/app-office/grisbi/files/grisbi-0.5.5-latex-unicode.patch new file mode 100644 index 00000000..f1f46e35 --- /dev/null +++ b/app-office/grisbi/files/grisbi-0.5.5-latex-unicode.patch @@ -0,0 +1,11 @@ +--- src/etats_latex.c.orig 2005-01-16 17:15:46.349575352 +0100 ++++ src/etats_latex.c 2005-01-16 17:16:19.340559960 +0100 +@@ -245,7 +245,7 @@ + "\\documentclass{article}\n\n" + "\\special{! TeXDict begin /landplus90{true}store end }\n" + "\\usepackage{a4}\n" +- "\\usepackage[utf8]{inputenc}\n" ++ "\\usepackage[utf8x]{inputenc}\n" + "\\usepackage{eurosym}\n" + "\\usepackage{boxedminipage}\n" + "\\usepackage{longtable}\n" diff --git a/app-office/grisbi/files/grisbi-0.5.6-latex-unicode.patch b/app-office/grisbi/files/grisbi-0.5.6-latex-unicode.patch new file mode 100644 index 00000000..f1f46e35 --- /dev/null +++ b/app-office/grisbi/files/grisbi-0.5.6-latex-unicode.patch @@ -0,0 +1,11 @@ +--- src/etats_latex.c.orig 2005-01-16 17:15:46.349575352 +0100 ++++ src/etats_latex.c 2005-01-16 17:16:19.340559960 +0100 +@@ -245,7 +245,7 @@ + "\\documentclass{article}\n\n" + "\\special{! TeXDict begin /landplus90{true}store end }\n" + "\\usepackage{a4}\n" +- "\\usepackage[utf8]{inputenc}\n" ++ "\\usepackage[utf8x]{inputenc}\n" + "\\usepackage{eurosym}\n" + "\\usepackage{boxedminipage}\n" + "\\usepackage{longtable}\n" diff --git a/app-office/grisbi/files/grisbi.desktop b/app-office/grisbi/files/grisbi.desktop new file mode 100644 index 00000000..e8a9e16f --- /dev/null +++ b/app-office/grisbi/files/grisbi.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=Grisbi +Comment=A personnal account manager +Exec=grisbi +Icon=grisbi/grisbi.png +Terminal=false +Type=Application +MimeType=application/x-grisbi +Categories=Application;Office; diff --git a/app-office/grisbi/grisbi-0.5.6.ebuild b/app-office/grisbi/grisbi-0.5.6.ebuild new file mode 100644 index 00000000..de651f20 --- /dev/null +++ b/app-office/grisbi/grisbi-0.5.6.ebuild @@ -0,0 +1,75 @@ +# 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.20050410.ebuild,v 1.1 2005/04/11 20:15:01 seemant Exp $ + +inherit eutils + +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" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~amd64 ~sparc" + +DEPEND="dev-libs/libxml2 + >=x11-libs/gtk+-2.2.0 + ofx? ( >=dev-libs/libofx-0.7.0 )" + +RDEPEND="${DEPEND} + print? ( virtual/tetex + >=dev-tex/latex-unicode-20041017 )" + +pkg_setup() { + if ! use print; then + echo + einfo + einfo "NOTE: The USE variable 'print' is not in your USE flags." + einfo "For printing support in grisbi, you will need to restart" + einfo "the build with USE=\"print\"" + einfo + echo + ebeep 5 + fi +} + +src_unpack() { + + unpack ${A}; cd ${S} + + # Apply location patchs + ebegin "Applying Gentoo documentation location patch" + 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 +} + +src_compile() { + + econf \ + $(use_with ofx) \ + $(use_enable nls) || die + + emake || die +} + +src_install() { + einstall || die + dodoc AUTHORS COPYING ChangeLog NEWS README + insinto /usr/share/applications + doins ${FILESDIR}/grisbi.desktop +} + +pkg_postinst() { + pkg_setup + + einfo "The first thing you should do is set up the browser command in" + einfo "preferences after you start up grisbi. Otherwise you will not" + einfo "be able to see the help and manuals" +} diff --git a/app-office/grisbi/grisbi-0.5.7.ebuild b/app-office/grisbi/grisbi-0.5.7.ebuild new file mode 100644 index 00000000..1fe518f7 --- /dev/null +++ b/app-office/grisbi/grisbi-0.5.7.ebuild @@ -0,0 +1,75 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit eutils + +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" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~amd64 ~sparc" + +DEPEND="dev-libs/libxml2 + >=x11-libs/gtk+-2.2.0 + ofx? ( >=dev-libs/libofx-0.7.0 )" + +RDEPEND="${DEPEND} + print? ( virtual/tetex + >=dev-tex/latex-unicode-20041017 )" + +pkg_setup() { + if ! use print; then + echo + einfo + einfo "NOTE: The USE variable 'print' is not in your USE flags." + einfo "For printing support in grisbi, you will need to restart" + einfo "the build with USE=\"print\"" + einfo + echo + ebeep 5 + fi +} + +src_unpack() { + unpack ${A}; cd ${S} + + # Apply location patchs + ebegin "Applying Gentoo documentation location patch" + 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 + epatch ${FILESDIR}/${PN}-0.5.6-latex-unicode.patch +} + +src_compile() { + + econf \ + $(use_with ofx) \ + $(use_enable nls) || die + + emake || die +} + +src_install() { + einstall || die + dodoc AUTHORS COPYING ChangeLog NEWS README + insinto /usr/share/applications + doins ${FILESDIR}/grisbi.desktop +} + +pkg_postinst() { + pkg_setup + + einfo "The first thing you should do is set up the browser command in" + einfo "preferences after you start up grisbi. Otherwise you will not" + einfo "be able to see the help and manuals" +} diff --git a/app-office/grisbi/metadata.xml b/app-office/grisbi/metadata.xml new file mode 100644 index 00000000..1630664c --- /dev/null +++ b/app-office/grisbi/metadata.xml @@ -0,0 +1,15 @@ + + + +office + + guilc@fr.st + Guillaume Castagnino + third party maintainer + + + seemant@gentoo.org + Seemant Kulleen + Proxy maintainer + + -- cgit v1.2.3