diff options
author | Marinus Schraal <foser@gentoo.org> | 2004-02-05 20:31:54 +0000 |
---|---|---|
committer | Marinus Schraal <foser@gentoo.org> | 2004-02-05 20:31:54 +0000 |
commit | 19d2d6dd573721bdf24eb3b2a719d7401bc0c7be (patch) | |
tree | be8213450258b05432077c150c699f6e9fd3d365 | |
parent | New release (diff) | |
download | historical-19d2d6dd573721bdf24eb3b2a719d7401bc0c7be.tar.gz historical-19d2d6dd573721bdf24eb3b2a719d7401bc0c7be.tar.bz2 historical-19d2d6dd573721bdf24eb3b2a719d7401bc0c7be.zip |
New release
-rw-r--r-- | app-text/gpdf/Manifest | 5 | ||||
-rw-r--r-- | app-text/gpdf/files/digest-gpdf-0.112 | 1 | ||||
-rw-r--r-- | app-text/gpdf/files/gpdf-0.112-remove_gtk24_call.patch | 29 | ||||
-rw-r--r-- | app-text/gpdf/gpdf-0.112.ebuild | 40 |
4 files changed, 73 insertions, 2 deletions
diff --git a/app-text/gpdf/Manifest b/app-text/gpdf/Manifest index e5f9697febc6..5d80f22a336e 100644 --- a/app-text/gpdf/Manifest +++ b/app-text/gpdf/Manifest @@ -1,8 +1,9 @@ -MD5 e44e88b3657edaa8f416893529f96a62 gpdf-0.112.ebuild 809 +MD5 c6815ca281af0f935388169c6b260f7a gpdf-0.112.ebuild 911 MD5 e44e88b3657edaa8f416893529f96a62 gpdf-0.111.ebuild 809 MD5 ef16e4908db408aa1e17107147a7cafe gpdf-0.110.ebuild 710 -MD5 77d82cbda538411d84beb5af67ea74b3 ChangeLog 1860 +MD5 be02e50c2cdcd51ae13414741f8526fd ChangeLog 1996 MD5 03ad2e6c4ab41244af1015a8bbb0b39f metadata.xml 158 MD5 fa41081733a009e00c9cbb0960bca296 files/digest-gpdf-0.110 63 MD5 96c5b6dd9f9aae8366ba4047fadacc6d files/digest-gpdf-0.111 63 MD5 a257b05533ebd7ecff92c22511880be3 files/digest-gpdf-0.112 63 +MD5 9336bbbfbb54ba88fb5e4aba2da1833f files/gpdf-0.112-remove_gtk24_call.patch 607 diff --git a/app-text/gpdf/files/digest-gpdf-0.112 b/app-text/gpdf/files/digest-gpdf-0.112 new file mode 100644 index 000000000000..8c740aa49965 --- /dev/null +++ b/app-text/gpdf/files/digest-gpdf-0.112 @@ -0,0 +1 @@ +MD5 4df88fb2d9998807c05ce6cc395c022f gpdf-0.112.tar.bz2 841415 diff --git a/app-text/gpdf/files/gpdf-0.112-remove_gtk24_call.patch b/app-text/gpdf/files/gpdf-0.112-remove_gtk24_call.patch new file mode 100644 index 000000000000..fd46e4102305 --- /dev/null +++ b/app-text/gpdf/files/gpdf-0.112-remove_gtk24_call.patch @@ -0,0 +1,29 @@ +--- gpdf-0.112/shell/gpdf.c 2004-01-17 22:09:01.000000000 +0100 ++++ gpdf-0.112/shell/gpdf.c.fix 2004-02-05 21:12:41.770747056 +0100 +@@ -117,7 +117,7 @@ + g_message ("Requested URI: '%s'", uri); + } + #endif +- ++/* + static void + set_window_icon_default (void) + { +@@ -132,7 +132,7 @@ + + g_object_unref (pixbuf); + } +- ++*/ + int + main (int argc, char **argv) + { +@@ -155,7 +155,7 @@ + if (bonobo_ui_init ("GNOME PDF Viewer", VERSION, &argc, argv) == FALSE) + g_error (_("Could not initialize Bonobo!\n")); + +- set_window_icon_default (); ++ /* set_window_icon_default (); */ + + client = gnome_master_client (); + diff --git a/app-text/gpdf/gpdf-0.112.ebuild b/app-text/gpdf/gpdf-0.112.ebuild new file mode 100644 index 000000000000..b701fa5eb7ae --- /dev/null +++ b/app-text/gpdf/gpdf-0.112.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/gpdf/gpdf-0.112.ebuild,v 1.1 2004/02/05 20:31:43 foser Exp $ + +inherit gnome2 flag-o-matic eutils + +DESCRIPTION="your favourite pdf previewer" +HOMEPAGE="http://www.gnome.org/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~alpha ~sparc ~hppa ~amd64 ~ia64" +IUSE="" + +RDEPEND=">=gnome-base/libgnomeui-2 + >=gnome-base/libbonobo-2.2.1 + >=gnome-base/libbonoboui-2 + >=gnome-base/gnome-vfs-2 + >=gnome-base/libgnomeprint-2.3 + >=gnome-base/libgnomeprintui-2.2 + >=gnome-base/libglade-2" + +DEPEND="${RDEPEND} + >=dev-util/pkgconfig-0.12.0" + +DOCS="AUTHORS CHANGES ChangeLog COPYING INSTALL NEWS README*" + +src_unpack() { + + unpack ${A} + + cd ${S} + epatch ${FILESDIR}/${P}-remove_gtk24_call.patch + +} + +src_compile() { + use alpha && append-flags -fPIC + gnome2_src_compile +} |