diff options
author | Stephanie J. Lockwood-Childs <wormo@gentoo.org> | 2006-10-13 20:27:05 +0000 |
---|---|---|
committer | Stephanie J. Lockwood-Childs <wormo@gentoo.org> | 2006-10-13 20:27:05 +0000 |
commit | d153fb5ad9e7c47c6a732a7a75e01475ba1a385f (patch) | |
tree | 8bbd4f07baaa264c1d34f6b3e8c6faae4a5a5337 /app-arch/pdv/pdv-1.5.1-r2.ebuild | |
parent | Version bump, thanks to Bram Schoenmakers for reporting in bug #151219. (diff) | |
download | gentoo-2-d153fb5ad9e7c47c6a732a7a75e01475ba1a385f.tar.gz gentoo-2-d153fb5ad9e7c47c6a732a7a75e01475ba1a385f.tar.bz2 gentoo-2-d153fb5ad9e7c47c6a732a7a75e01475ba1a385f.zip |
switch to using autotools eclass and make sure automake version is
specified as well as autoconf versin (Bug #151130)
(Portage version: 2.1.1)
Diffstat (limited to 'app-arch/pdv/pdv-1.5.1-r2.ebuild')
-rw-r--r-- | app-arch/pdv/pdv-1.5.1-r2.ebuild | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/app-arch/pdv/pdv-1.5.1-r2.ebuild b/app-arch/pdv/pdv-1.5.1-r2.ebuild index a141eacba566..09aacf74f31c 100644 --- a/app-arch/pdv/pdv-1.5.1-r2.ebuild +++ b/app-arch/pdv/pdv-1.5.1-r2.ebuild @@ -1,8 +1,11 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/pdv/pdv-1.5.1-r2.ebuild,v 1.3 2006/09/20 04:13:32 tsunam Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/pdv/pdv-1.5.1-r2.ebuild,v 1.4 2006/10/13 20:27:05 wormo Exp $ -inherit eutils +WANT_AUTOCONF=2.5 +WANT_AUTOMAKE=1.4 + +inherit eutils autotools DESCRIPTION="build a self-extracting and self-installing binary package" HOMEPAGE="http://pdv.sourceforge.net/" @@ -13,9 +16,7 @@ SLOT="0" KEYWORDS="~hppa ppc x86" IUSE="nomotif" -DEPEND=">=sys-devel/autoconf-2.58 - sys-devel/automake - !nomotif? ( x11-libs/openmotif ) +DEPEND="!nomotif? ( x11-libs/openmotif ) !nomotif? ( || ( ( >=x11-libs/libX11-1.0.0 >=x11-libs/libXt-1.0.0 @@ -41,10 +42,7 @@ src_unpack() { src_compile() { # re-build configure script since patch was applied to configure.in cd "${S}"/X11 - export WANT_AUTOCONF=2.5 - aclocal - automake -a -c - autoconf + eautoreconf cd "${S}" local myconf="" |