diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-12-08 15:55:24 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-12-08 15:55:24 +0000 |
commit | 936b1f2e3357ee3fbfe08b26e9693ec2136622da (patch) | |
tree | 0c1bd6d86ff7098b5a07d376c07798c5224fbe8c | |
parent | Fix typo. (diff) | |
download | gentoo-2-936b1f2e3357ee3fbfe08b26e9693ec2136622da.tar.gz gentoo-2-936b1f2e3357ee3fbfe08b26e9693ec2136622da.tar.bz2 gentoo-2-936b1f2e3357ee3fbfe08b26e9693ec2136622da.zip |
Recreate all the autotools support, use eautoreconf that takes care of running the tools on libltdl, too. Should fix bug #106013.
(Portage version: 2.0.53)
-rw-r--r-- | media-video/camserv/ChangeLog | 7 | ||||
-rw-r--r-- | media-video/camserv/camserv-0.5.1-r2.ebuild | 14 |
2 files changed, 16 insertions, 5 deletions
diff --git a/media-video/camserv/ChangeLog b/media-video/camserv/ChangeLog index 95a728f0a0cd..044cfae76fc6 100644 --- a/media-video/camserv/ChangeLog +++ b/media-video/camserv/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-video/camserv # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/camserv/ChangeLog,v 1.16 2005/09/02 21:37:45 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/camserv/ChangeLog,v 1.17 2005/12/08 15:55:24 flameeyes Exp $ + + 08 Dec 2005; Diego Pettenò <flameeyes@gentoo.org> + camserv-0.5.1-r2.ebuild: + Recreate all the autotools support, use eautoreconf that takes care of + running the tools on libltdl, too. Should fix bug #106013. 02 Sep 2005; Diego Pettenò <flameeyes@gentoo.org> camserv-0.5.1-r2.ebuild: diff --git a/media-video/camserv/camserv-0.5.1-r2.ebuild b/media-video/camserv/camserv-0.5.1-r2.ebuild index d523c68496cc..7bb6b12d8a70 100644 --- a/media-video/camserv/camserv-0.5.1-r2.ebuild +++ b/media-video/camserv/camserv-0.5.1-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/camserv/camserv-0.5.1-r2.ebuild,v 1.8 2005/09/02 21:37:45 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/camserv/camserv-0.5.1-r2.ebuild,v 1.9 2005/12/08 15:55:24 flameeyes Exp $ inherit eutils autotools @@ -17,14 +17,20 @@ RDEPEND=">=media-libs/jpeg-6b-r2 >=media-libs/imlib-1.9.13-r2" DEPEND="${RDEPEND} - >=sys-devel/autoconf-2.58" + >=sys-devel/autoconf-2.58 + =sys-devel/automake-1.6* + sys-devel/libtool" src_unpack() { + # make sure it uses autoconf 2.5 as there seems to be problems. + # See bug #106013 + export WANT_AUTOCONF="2.5" + export WANT_AUTOMAKE="1.6" + unpack ${A} cd ${S} epatch ${FILESDIR}/${PN}-0.5-errno.patch - cd libltdl - eautoconf + AT_M4DIR="${S}/macros" eautoreconf } src_install() { |