diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-08-31 05:47:30 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-08-31 05:47:30 +0000 |
commit | 111da0b9ee72e6b3dd353a9416c9f32915732caf (patch) | |
tree | 0369ddca2ad42ea573de3fe74fb6e56a00a4d24e /sys-libs/libmath++ | |
parent | Fix use() invocation, thanks to Michael Sterrett <mr_bones_@gentoo.org>. (Man... (diff) | |
download | gentoo-2-111da0b9ee72e6b3dd353a9416c9f32915732caf.tar.gz gentoo-2-111da0b9ee72e6b3dd353a9416c9f32915732caf.tar.bz2 gentoo-2-111da0b9ee72e6b3dd353a9416c9f32915732caf.zip |
Add IUSE; use generic src_compile; install some docs
Diffstat (limited to 'sys-libs/libmath++')
-rw-r--r-- | sys-libs/libmath++/ChangeLog | 5 | ||||
-rw-r--r-- | sys-libs/libmath++/libmath++-0.0.3.ebuild | 15 |
2 files changed, 9 insertions, 11 deletions
diff --git a/sys-libs/libmath++/ChangeLog b/sys-libs/libmath++/ChangeLog index e4efbb4ce4c8..e536ac7cb9ce 100644 --- a/sys-libs/libmath++/ChangeLog +++ b/sys-libs/libmath++/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-libs/libmath++ # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/ChangeLog,v 1.5 2004/06/24 23:05:39 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/ChangeLog,v 1.6 2004/08/31 05:47:30 mr_bones_ Exp $ + + 30 Aug 2004; Michael Sterrett <mr_bones_@gentoo.org> libmath++-0.0.3.ebuild: + Add IUSE; use generic src_compile; install some docs 17 Apr 2004; Michael McCabe <randy@gentoo.org> libmath++-0.0.3.ebuild: added s390 to keywords diff --git a/sys-libs/libmath++/libmath++-0.0.3.ebuild b/sys-libs/libmath++/libmath++-0.0.3.ebuild index 93324d0fbe7e..403bb45efb9f 100644 --- a/sys-libs/libmath++/libmath++-0.0.3.ebuild +++ b/sys-libs/libmath++/libmath++-0.0.3.ebuild @@ -1,22 +1,17 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/libmath++-0.0.3.ebuild,v 1.9 2004/06/24 23:05:39 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libmath++/libmath++-0.0.3.ebuild,v 1.10 2004/08/31 05:47:30 mr_bones_ Exp $ DESCRIPTION="template based math library, written in C++, for symbolic and numeric calculus applications" -HOMEPAGE="http://www.surakware.net/projects/libmath%2B%2B/index.xml" +HOMEPAGE="http://www.surakware.net/projects/libmath++/index.xml" SRC_URI="ftp://ftp.surakware.net/pub/unstable/releases/libmath%2B%2B/${P}.tar.gz" LICENSE="GPL-2" SLOT="1" KEYWORDS="x86 ppc s390" - -DEPEND="" - -src_compile() { - econf || die - emake || die -} +IUSE="" src_install() { - make DESTDIR=${D} install || die + make DESTDIR="${D}" install || die "make install failed" + dodoc AUTHORS README TODO } |