diff options
author | Mart Raudsepp <leio@gentoo.org> | 2007-01-14 22:30:01 +0000 |
---|---|---|
committer | Mart Raudsepp <leio@gentoo.org> | 2007-01-14 22:30:01 +0000 |
commit | bc768342bb4190c7cce2187e798d843a7d79786f (patch) | |
tree | 3c61e92f9cc85cea64672c7b4b5b11db09b023bf /x11-libs/vte | |
parent | Ebuild maintenance (diff) | |
download | gentoo-2-bc768342bb4190c7cce2187e798d843a7d79786f.tar.gz gentoo-2-bc768342bb4190c7cce2187e798d843a7d79786f.tar.bz2 gentoo-2-bc768342bb4190c7cce2187e798d843a7d79786f.zip |
Fix build on G/FBSD, bug 157924
(Portage version: 2.1.2_rc4-r9)
Diffstat (limited to 'x11-libs/vte')
-rw-r--r-- | x11-libs/vte/ChangeLog | 6 | ||||
-rw-r--r-- | x11-libs/vte/files/vte-0.14.1-fbsd.patch | 11 | ||||
-rw-r--r-- | x11-libs/vte/vte-0.14.1.ebuild | 5 |
3 files changed, 19 insertions, 3 deletions
diff --git a/x11-libs/vte/ChangeLog b/x11-libs/vte/ChangeLog index 34b87b91d94b..8d9226a9945c 100644 --- a/x11-libs/vte/ChangeLog +++ b/x11-libs/vte/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-libs/vte # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/ChangeLog,v 1.139 2007/01/10 06:51:25 leio Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/ChangeLog,v 1.140 2007/01/14 22:30:01 leio Exp $ + + 14 Jan 2007; Mart Raudsepp <leio@gentoo.org> +files/vte-0.14.1-fbsd.patch, + vte-0.14.1.ebuild: + Fix build on G/FBSD, bug 157924 10 Jan 2007; Mart Raudsepp <leio@gentoo.org> -files/vte-0.11.16-pkgconfig_libs_fix.patch, diff --git a/x11-libs/vte/files/vte-0.14.1-fbsd.patch b/x11-libs/vte/files/vte-0.14.1-fbsd.patch new file mode 100644 index 000000000000..c9aa26b92a77 --- /dev/null +++ b/x11-libs/vte/files/vte-0.14.1-fbsd.patch @@ -0,0 +1,11 @@ +diff -ur vte-0.15.0.orig/src/vteseq.c vte-0.15.0/src/vteseq.c +--- vte-0.15.0.orig/src/vteseq.c 2006-08-31 20:56:44 +0100 ++++ vte-0.15.0/src/vteseq.c 2006-12-12 16:29:54 +0000 +@@ -19,6 +19,7 @@ + + #include "../config.h" + ++#include <limits.h> + #ifdef HAVE_SYS_SYSLIMITS_H + #include <sys/syslimits.h> + #endif diff --git a/x11-libs/vte/vte-0.14.1.ebuild b/x11-libs/vte/vte-0.14.1.ebuild index 8848dc576e7b..3608b2cba5f8 100644 --- a/x11-libs/vte/vte-0.14.1.ebuild +++ b/x11-libs/vte/vte-0.14.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/vte-0.14.1.ebuild,v 1.7 2007/01/07 00:31:55 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/vte-0.14.1.ebuild,v 1.8 2007/01/14 22:30:01 leio Exp $ inherit eutils gnome2 autotools @@ -45,7 +45,8 @@ pkg_setup() { src_unpack() { gnome2_src_unpack - epatch ${FILESDIR}/${PN}-0.13.2-no-lazy-bindings.patch + epatch "${FILESDIR}/${PN}-0.13.2-no-lazy-bindings.patch" + epatch "${FILESDIR}/${P}-fbsd.patch" cd ${S}/gnome-pty-helper eautomake |