From: Diego Elio Pettenò Date: Thu, 4 Jan 2007 14:31:59 +0000 (+0000) Subject: Fix broken autotools handling. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c94e0b2cf479ec357463688955a464b4b7242bdc;p=gentoo.git Fix broken autotools handling. Package-Manager: portage-2.1.2_rc4-r5 --- diff --git a/dev-cpp/gconfmm/ChangeLog b/dev-cpp/gconfmm/ChangeLog index ded50dbb1f8c..8cb123967c9d 100644 --- a/dev-cpp/gconfmm/ChangeLog +++ b/dev-cpp/gconfmm/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-cpp/gconfmm -# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gconfmm/ChangeLog,v 1.44 2006/09/11 16:15:12 allanonjl Exp $ +# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gconfmm/ChangeLog,v 1.45 2007/01/04 14:30:22 flameeyes Exp $ + + 04 Jan 2007; Diego Pettenò gconfmm-2.12.0.ebuild: + Fix broken autotools handling. *gconfmm-2.16.0 (11 Sep 2006) diff --git a/dev-cpp/gconfmm/gconfmm-2.12.0.ebuild b/dev-cpp/gconfmm/gconfmm-2.12.0.ebuild index 72097d868259..150d9e09a623 100644 --- a/dev-cpp/gconfmm/gconfmm-2.12.0.ebuild +++ b/dev-cpp/gconfmm/gconfmm-2.12.0.ebuild @@ -1,8 +1,11 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gconfmm/gconfmm-2.12.0.ebuild,v 1.13 2006/08/13 18:03:36 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gconfmm/gconfmm-2.12.0.ebuild,v 1.14 2007/01/04 14:30:22 flameeyes Exp $ -inherit gnome2 eutils +WANT_AUTOMAKE="latest" +WANT_AUTOCONF="latest" + +inherit gnome2 eutils autotools DESCRIPTION="C++ bindings for GConf" HOMEPAGE="http://gtkmm.sourceforge.net/" @@ -21,13 +24,11 @@ DEPEND=">=dev-util/pkgconfig-0.12.0 DOCS="AUTHORS COPYING* ChangeLog NEWS README INSTALL" -src_compile() { - if useq amd64; then - aclocal -I scripts - libtoolize --force --copy - automake -c -f - autoconf - fi +src_unpack() { + gnome2_src_unpack + eautoreconf +} +src_compile() { gnome2_src_compile } diff --git a/dev-cpp/gnome-vfsmm/ChangeLog b/dev-cpp/gnome-vfsmm/ChangeLog index 30c270441a1b..20a972457f07 100644 --- a/dev-cpp/gnome-vfsmm/ChangeLog +++ b/dev-cpp/gnome-vfsmm/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-cpp/gnome-vfsmm -# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gnome-vfsmm/ChangeLog,v 1.33 2006/10/21 10:54:40 dertobi123 Exp $ +# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gnome-vfsmm/ChangeLog,v 1.34 2007/01/04 14:31:59 flameeyes Exp $ + + 04 Jan 2007; Diego Pettenò + gnome-vfsmm-2.12.0.ebuild: + Fix broken autotools handling. 21 Oct 2006; Tobias Scherbaum gnome-vfsmm-1.3.5.ebuild: diff --git a/dev-cpp/gnome-vfsmm/gnome-vfsmm-2.12.0.ebuild b/dev-cpp/gnome-vfsmm/gnome-vfsmm-2.12.0.ebuild index faf79a194fcb..eb23afa7401a 100644 --- a/dev-cpp/gnome-vfsmm/gnome-vfsmm-2.12.0.ebuild +++ b/dev-cpp/gnome-vfsmm/gnome-vfsmm-2.12.0.ebuild @@ -1,8 +1,11 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gnome-vfsmm/gnome-vfsmm-2.12.0.ebuild,v 1.13 2006/08/13 18:14:47 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gnome-vfsmm/gnome-vfsmm-2.12.0.ebuild,v 1.14 2007/01/04 14:31:59 flameeyes Exp $ -inherit gnome2 +WANT_AUTOMAKE="latest" +WANT_AUTOCONF="latest" + +inherit gnome2 autotools DESCRIPTION="C++ bindings for gnome-vfs" HOMEPAGE="http://gtkmm.sourceforge.net/" @@ -19,13 +22,7 @@ DEPEND=">=dev-util/pkgconfig-0.12.0 DOCS="AUTHORS ChangeLog NEWS README INSTALL" -src_compile() { - if useq amd64; then - aclocal -I scripts - automake -c -f - autoconf - libtoolize --copy --force - fi - - gnome2_src_compile +src_unpack() { + gnome2_src_unpack + AT_M4DIR="scripts" eautoreconf }