diff options
author | 2010-03-05 23:26:15 +0000 | |
---|---|---|
committer | 2010-03-05 23:26:15 +0000 | |
commit | 5bdb89729d2a9eb2b74db26404183c74709db6a9 (patch) | |
tree | 6f77117f079c730ba4f1dc9301861e01561b30bc /app-misc | |
parent | LICENSE is GPL-1 or later. Update HOMEPAGE. (diff) | |
download | gentoo-2-5bdb89729d2a9eb2b74db26404183c74709db6a9.tar.gz gentoo-2-5bdb89729d2a9eb2b74db26404183c74709db6a9.tar.bz2 gentoo-2-5bdb89729d2a9eb2b74db26404183c74709db6a9.zip |
Fix building with Autoconf >= 2.65 wrt #298002, thanks to Flameeyes and SpanKY.
(Portage version: 2.2_rc63/cvs/Linux x86_64)
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/lcd4linux/ChangeLog | 10 | ||||
-rw-r--r-- | app-misc/lcd4linux/files/lcd4linux-0.10.1_rc2-autoconf-2.65.patch | 20 | ||||
-rw-r--r-- | app-misc/lcd4linux/lcd4linux-0.10.1_rc2-r2.ebuild | 7 |
3 files changed, 32 insertions, 5 deletions
diff --git a/app-misc/lcd4linux/ChangeLog b/app-misc/lcd4linux/ChangeLog index 94a24730f020..fe0c941ec3cd 100644 --- a/app-misc/lcd4linux/ChangeLog +++ b/app-misc/lcd4linux/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-misc/lcd4linux -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/lcd4linux/ChangeLog,v 1.37 2009/08/17 16:09:34 rbu Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/lcd4linux/ChangeLog,v 1.38 2010/03/05 23:26:14 ssuominen Exp $ + + 05 Mar 2010; Samuli Suominen <ssuominen@gentoo.org> + lcd4linux-0.10.1_rc2-r2.ebuild, + +files/lcd4linux-0.10.1_rc2-autoconf-2.65.patch: + Fix building with Autoconf >= 2.65 wrt #298002, thanks to Flameeyes and + SpanKY. 17 Aug 2009; Robert Buchholz <rbu@gentoo.org> -files/lcd4linux-0.10.0-gcc4-compat.patch, diff --git a/app-misc/lcd4linux/files/lcd4linux-0.10.1_rc2-autoconf-2.65.patch b/app-misc/lcd4linux/files/lcd4linux-0.10.1_rc2-autoconf-2.65.patch new file mode 100644 index 000000000000..6b176a6ecf64 --- /dev/null +++ b/app-misc/lcd4linux/files/lcd4linux-0.10.1_rc2-autoconf-2.65.patch @@ -0,0 +1,20 @@ +--- ac_python_devel.m4.orig 2010-03-06 01:28:40.000000000 +0200 ++++ ac_python_devel.m4 2010-03-06 01:29:47.000000000 +0200 +@@ -68,7 +68,7 @@ + PYTHON_EXTRA_LIBS and PYTHON_EXTRA_LDFLAGS by hand. + Moreover, to disable this check, set PYTHON_NOVERSIONCHECK + to something else than an empty string. +-])dnl ++]) + else + AC_MSG_RESULT([skip at user request]) + fi +@@ -92,7 +92,7 @@ + If you have it installed, but it isn't the default Python + interpreter in your system path, please pass the PYTHON_VERSION + variable to configure. See ``configure --help'' for reference. +-])dnl ++]) + fi + fi + diff --git a/app-misc/lcd4linux/lcd4linux-0.10.1_rc2-r2.ebuild b/app-misc/lcd4linux/lcd4linux-0.10.1_rc2-r2.ebuild index b2c516c1c0e8..558921377255 100644 --- a/app-misc/lcd4linux/lcd4linux-0.10.1_rc2-r2.ebuild +++ b/app-misc/lcd4linux/lcd4linux-0.10.1_rc2-r2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/lcd4linux/lcd4linux-0.10.1_rc2-r2.ebuild,v 1.7 2009/08/17 16:09:34 rbu Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/lcd4linux/lcd4linux-0.10.1_rc2-r2.ebuild,v 1.8 2010/03/05 23:26:14 ssuominen Exp $ WANT_AUTOMAKE="1.9" inherit eutils multilib autotools @@ -8,7 +8,7 @@ inherit eutils multilib autotools MY_P=${P/_rc/-RC} DESCRIPTION="Shows system and ISDN information on an external display or in a X11 window" -HOMEPAGE="http://ssl.bulix.org/projects/${PN}" +HOMEPAGE="http://ssl.bulix.org/projects/lcd4linux" SRC_URI="mirror://gentoo/${MY_P}.tar.gz" LICENSE="GPL-2" @@ -73,6 +73,7 @@ src_unpack() { epatch "${FILESDIR}/${P}-warnings.patch" epatch "${FILESDIR}/${P}-mpd.patch" epatch "${FILESDIR}/${P}-nordtsc.patch" + epatch "${FILESDIR}/${P}-autoconf-2.65.patch" eautoreconf } |