diff options
author | Tom William Payne <twp@gentoo.org> | 2005-02-04 22:42:19 +0000 |
---|---|---|
committer | Tom William Payne <twp@gentoo.org> | 2005-02-04 22:42:19 +0000 |
commit | 988244994b76a57dce167666d42ff5d33b69a61a (patch) | |
tree | d75c54f6900522c9ca2213ccc7f9cb7c68de0d0b | |
parent | Stable on alpha, bug 80271. (diff) | |
download | gentoo-2-988244994b76a57dce167666d42ff5d33b69a61a.tar.gz gentoo-2-988244994b76a57dce167666d42ff5d33b69a61a.tar.bz2 gentoo-2-988244994b76a57dce167666d42ff5d33b69a61a.zip |
Added stdarg.h patch. Bug # 80680. Thanks lucass.
(Portage version: 2.0.51-r15)
-rw-r--r-- | x11-libs/libsvg-cairo/ChangeLog | 8 | ||||
-rw-r--r-- | x11-libs/libsvg-cairo/files/libsvg-cairo-stdarg_h.patch | 10 | ||||
-rw-r--r-- | x11-libs/libsvg-cairo/libsvg-cairo-0.1.4.ebuild | 11 |
3 files changed, 25 insertions, 4 deletions
diff --git a/x11-libs/libsvg-cairo/ChangeLog b/x11-libs/libsvg-cairo/ChangeLog index e5f912920b05..f7bc13d576de 100644 --- a/x11-libs/libsvg-cairo/ChangeLog +++ b/x11-libs/libsvg-cairo/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-libs/libsvg-cairo -# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libsvg-cairo/ChangeLog,v 1.8 2004/09/03 15:35:20 pvdabeel Exp $ +# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libsvg-cairo/ChangeLog,v 1.9 2005/02/04 22:42:19 twp Exp $ + + 04 Feb 2005; Tom Payne <twp@gentoo.org> + +files/libsvg-cairo-stdarg_h.patch, libsvg-cairo-0.1.4.ebuild: + Added stdarg.h patch. Bug # 80680. Thanks lucass. 03 Sep 2004; Pieter Van den Abeele <pvdabeel@gentoo.org> libsvg-cairo-0.1.4.ebuild: diff --git a/x11-libs/libsvg-cairo/files/libsvg-cairo-stdarg_h.patch b/x11-libs/libsvg-cairo/files/libsvg-cairo-stdarg_h.patch new file mode 100644 index 000000000000..55c359e3919f --- /dev/null +++ b/x11-libs/libsvg-cairo/files/libsvg-cairo-stdarg_h.patch @@ -0,0 +1,10 @@ +--- libsvg-cairo-0.1.4/src/svg-cairo-internal.h 2003-12-05 18:35:43.000000000 +0100 ++++ libsvg-cairo/src/svg-cairo-internal.h 2005-02-04 23:16:30.468901511 +0100 +@@ -31,6 +31,7 @@ + + #include "svg-cairo.h" + #include "svg-cairo-version.h" ++#include <stdarg.h> + + /* XXX: What should this actually be? */ + #define SVG_CAIRO_FONT_FAMILY_DEFAULT "verdana" diff --git a/x11-libs/libsvg-cairo/libsvg-cairo-0.1.4.ebuild b/x11-libs/libsvg-cairo/libsvg-cairo-0.1.4.ebuild index 3a6a5fe78229..cb73288cf886 100644 --- a/x11-libs/libsvg-cairo/libsvg-cairo-0.1.4.ebuild +++ b/x11-libs/libsvg-cairo/libsvg-cairo-0.1.4.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libsvg-cairo/libsvg-cairo-0.1.4.ebuild,v 1.7 2004/09/03 15:35:20 pvdabeel Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libsvg-cairo/libsvg-cairo-0.1.4.ebuild,v 1.8 2005/02/04 22:42:19 twp Exp $ DESCRIPTION="Render SVG content using cairo" HOMEPAGE="http://xsvg.org/" @@ -12,6 +12,13 @@ IUSE="" DEPEND="x11-libs/cairo media-libs/libsvg" +inherit eutils + +src_unpack() { + unpack ${A} + epatch ${FILESDIR}/libsvg-cairo-stdarg_h.patch +} + src_compile() { econf || die emake || die |