diff options
author | Charlie Shepherd <masterdriverz@gentoo.org> | 2007-01-07 00:43:13 +0000 |
---|---|---|
committer | Charlie Shepherd <masterdriverz@gentoo.org> | 2007-01-07 00:43:13 +0000 |
commit | 14dbb468e2af05c1a983b3dfb1a4f442e8486178 (patch) | |
tree | de34681a96eb7171d947ce42161d38d870a95e9d /app-text/xlhtml/xlhtml-0.5.ebuild | |
parent | Don't throw ewarns during prerm and postrm phases, as they might simply come ... (diff) | |
download | gentoo-2-14dbb468e2af05c1a983b3dfb1a4f442e8486178.tar.gz gentoo-2-14dbb468e2af05c1a983b3dfb1a4f442e8486178.tar.bz2 gentoo-2-14dbb468e2af05c1a983b3dfb1a4f442e8486178.zip |
Fix autotools usage; bug 160156
(Portage version: 2.1.2_rc4-r3)
Diffstat (limited to 'app-text/xlhtml/xlhtml-0.5.ebuild')
-rw-r--r-- | app-text/xlhtml/xlhtml-0.5.ebuild | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/app-text/xlhtml/xlhtml-0.5.ebuild b/app-text/xlhtml/xlhtml-0.5.ebuild index c1ea765a9e49..9bc50d4e9bb0 100644 --- a/app-text/xlhtml/xlhtml-0.5.ebuild +++ b/app-text/xlhtml/xlhtml-0.5.ebuild @@ -1,6 +1,11 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/xlhtml/xlhtml-0.5.ebuild,v 1.13 2007/01/05 07:27:24 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/xlhtml/xlhtml-0.5.ebuild,v 1.14 2007/01/07 00:43:13 masterdriverz Exp $ + +WANT_AUTOCONF="latest" +WANT_AUTOMAKE="latest" + +inherit autotools DESCRIPTION="Convert MS Excel and Powerpoint files to HTML" HOMEPAGE="http://chicago.sourceforge.net/xlhtml/" @@ -14,11 +19,10 @@ DEPEND="" src_unpack() { unpack ${A} - + cd "${S}" # This is needed specifically for depcomp, which is necessary for # building xlhtml, but isn't included. - cd ${S}; aclocal; autoconf - cd ${S}; automake --add-missing + eautoreconf } src_install() { @@ -31,5 +35,5 @@ src_install() { docinto xlhtml dodoc xlhtml/{ChangeLog,README,THANKS,TODO} rm -rf xlhtml/contrib/CVS - cp -pPR xlhtml/contrib ${D}/usr/share/doc/${PF}/xlhtml + cp -pPR xlhtml/contrib "${D}/usr/share/doc/${PF}/xlhtml" } |