diff options
author | Victor Ostorga <vostorga@gentoo.org> | 2009-08-01 23:49:10 +0000 |
---|---|---|
committer | Victor Ostorga <vostorga@gentoo.org> | 2009-08-01 23:49:10 +0000 |
commit | ca7b9a916a37dc3e4788267ae54f1a57572bc650 (patch) | |
tree | f3367dfaf57d63cfaf0381c2c2a3153d13ce3563 /x11-wm/ratpoison | |
parent | Marked stable on AMD64 as requested by Michael "Mr. Bones" Sterrett <mr_bones... (diff) | |
download | gentoo-2-ca7b9a916a37dc3e4788267ae54f1a57572bc650.tar.gz gentoo-2-ca7b9a916a37dc3e4788267ae54f1a57572bc650.tar.bz2 gentoo-2-ca7b9a916a37dc3e4788267ae54f1a57572bc650.zip |
Adding patch to compile against glibc 2.10 , bug #274965
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'x11-wm/ratpoison')
-rw-r--r-- | x11-wm/ratpoison/ChangeLog | 6 | ||||
-rw-r--r-- | x11-wm/ratpoison/files/ratpoison-1.4.4-glibc210.patch | 15 | ||||
-rw-r--r-- | x11-wm/ratpoison/ratpoison-1.4.4-r1.ebuild | 4 |
3 files changed, 23 insertions, 2 deletions
diff --git a/x11-wm/ratpoison/ChangeLog b/x11-wm/ratpoison/ChangeLog index ed84cbcb69fb..8a0cdd0f1027 100644 --- a/x11-wm/ratpoison/ChangeLog +++ b/x11-wm/ratpoison/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-wm/ratpoison # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ChangeLog,v 1.73 2009/06/11 19:37:38 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ChangeLog,v 1.74 2009/08/01 23:49:03 vostorga Exp $ + + 01 Aug 2009; Víctor Ostorga <vostorga@gentoo.org> ratpoison-1.4.4-r1.ebuild, + +files/ratpoison-1.4.4-glibc210.patch: + Adding patch to compile against glibc 2.10 , bug #274965 11 Jun 2009; Markus Meier <maekke@gentoo.org> ratpoison-1.4.4-r1.ebuild: amd64 stable, bug #271487 diff --git a/x11-wm/ratpoison/files/ratpoison-1.4.4-glibc210.patch b/x11-wm/ratpoison/files/ratpoison-1.4.4-glibc210.patch new file mode 100644 index 000000000000..7f133a11d6dc --- /dev/null +++ b/x11-wm/ratpoison/files/ratpoison-1.4.4-glibc210.patch @@ -0,0 +1,15 @@ +diff -NrU5 ratpoison-1.4.4.original/configure.in ratpoison-1.4.4/configure.in +--- ratpoison-1.4.4.original/configure.in 2009-06-21 18:29:08.000000000 +0000 ++++ ratpoison-1.4.4/configure.in 2009-06-21 18:30:54.000000000 +0000 +@@ -144,10 +144,10 @@ + AC_CHECK_HEADERS(unistd.h stdarg.h) + + dnl Checks for typedefs, structures, and compiler characteristics. + + dnl Checks for library functions. +-AC_CHECK_FUNCS(getopt getopt_long setsid setpgid setpgrp putenv vsnprintf usleep) ++AC_CHECK_FUNCS(getline getopt getopt_long setsid setpgid setpgrp putenv vsnprintf usleep) + + AC_TYPE_SIGNAL + + AC_OUTPUT(Makefile doc/Makefile src/Makefile contrib/Makefile) diff --git a/x11-wm/ratpoison/ratpoison-1.4.4-r1.ebuild b/x11-wm/ratpoison/ratpoison-1.4.4-r1.ebuild index e3210bd0f82d..6c86ac04bc99 100644 --- a/x11-wm/ratpoison/ratpoison-1.4.4-r1.ebuild +++ b/x11-wm/ratpoison/ratpoison-1.4.4-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ratpoison-1.4.4-r1.ebuild,v 1.7 2009/07/19 17:32:59 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/ratpoison/ratpoison-1.4.4-r1.ebuild,v 1.8 2009/08/01 23:49:03 vostorga Exp $ EAPI=2 @@ -30,6 +30,8 @@ src_prepare() { epatch "${FILESDIR}/ratpoison.el-gentoo.patch" cd "${S}" + epatch "${FILESDIR}/${P}-glibc210.patch" + eautoreconf } |