summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2009-10-13 13:30:22 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2009-10-13 13:30:22 +0000
commitd353fdeee0b991dfb392ec19b59efc90f06ad7a1 (patch)
treeebfe216a98c101d5f9d9e4a36cb6121f72eea984 /sys-libs
parentVersion bump (diff)
downloadgentoo-2-d353fdeee0b991dfb392ec19b59efc90f06ad7a1.tar.gz
gentoo-2-d353fdeee0b991dfb392ec19b59efc90f06ad7a1.tar.bz2
gentoo-2-d353fdeee0b991dfb392ec19b59efc90f06ad7a1.zip
Remove redudant WANT_ autotools latest lines.
(Portage version: 2.2_rc46/cvs/Linux x86_64)
Diffstat (limited to 'sys-libs')
-rw-r--r--sys-libs/libmath++/libmath++-0.0.4.ebuild18
1 files changed, 7 insertions, 11 deletions
diff --git a/sys-libs/libmath++/libmath++-0.0.4.ebuild b/sys-libs/libmath++/libmath++-0.0.4.ebuild
index a73346ed2ca0..69f82ee2eafe 100644
--- a/sys-libs/libmath++/libmath++-0.0.4.ebuild
+++ b/sys-libs/libmath++/libmath++-0.0.4.ebuild
@@ -1,9 +1,6 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4.ebuild,v 1.10 2008/04/20 21:51:02 flameeyes Exp $
-
-WANT_AUTOMAKE="latest"
-WANT_AUTOCONF="latest"
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/libmath++-0.0.4.ebuild,v 1.11 2009/10/13 13:30:22 ssuominen Exp $
inherit autotools
@@ -22,24 +19,23 @@ RDEPEND=""
src_unpack() {
unpack ${A}
cd "${S}"
-
eautoreconf
}
src_compile() {
- econf || die "configure failed"
- emake || die "make filed"
+ econf
+ emake || die
- if use doc ; then
+ if use doc; then
emake -C doc api-doc
fi
}
src_install() {
- make DESTDIR="${D}" install || die "make install failed"
+ emake DESTDIR="${D}" install || die
dodoc AUTHORS README TODO
- if use doc ; then
+ if use doc; then
dohtml -r "${S}"/doc/user-api/*
fi
}