diff options
author | Thomas Kahle <tom111@gmx.de> | 2010-03-04 14:32:01 +0100 |
---|---|---|
committer | Thomas Kahle <tom111@gmx.de> | 2010-03-04 14:32:01 +0100 |
commit | 7c95c944ad1f37b86d5c91a481b72800746ee935 (patch) | |
tree | f5468ac1a35084de0946b4a0c8a9ac448a5a28b3 | |
parent | QA for sci-mathematics/gfan (diff) | |
download | sci-7c95c944ad1f37b86d5c91a481b72800746ee935.tar.gz sci-7c95c944ad1f37b86d5c91a481b72800746ee935.tar.bz2 sci-7c95c944ad1f37b86d5c91a481b72800746ee935.zip |
sci-mathematics/normaliz QA
-rw-r--r-- | sci-mathematics/normaliz/ChangeLog | 15 | ||||
-rw-r--r-- | sci-mathematics/normaliz/Manifest | 4 | ||||
-rw-r--r-- | sci-mathematics/normaliz/normaliz-2.2.ebuild | 13 |
3 files changed, 16 insertions, 16 deletions
diff --git a/sci-mathematics/normaliz/ChangeLog b/sci-mathematics/normaliz/ChangeLog index be5c0cda9..089eac891 100644 --- a/sci-mathematics/normaliz/ChangeLog +++ b/sci-mathematics/normaliz/ChangeLog @@ -1,8 +1,13 @@ -# ChangeLog for sci-mathematics/Macaulay2 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# ChangeLog for sci-mathematics/normaliz +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ - 4 Sep 2009; Thomas Kahle <tom111@gmx.de> +normaliz-2.2.ebuild - +metadata.xml +ChangeLog + 04 Mar 2010; Thomas Kahle <tom111@gmx.de> normaliz-2.2.ebuild: + QA/ebuild improvements + + 4 Sep 2009; Thomas Kahle <tom111@gmx.de> +normaliz-2.2.ebuild + +metadata.xml +ChangeLog + + Intial import (Bug #283676) + - Intial import (Bug #283676) diff --git a/sci-mathematics/normaliz/Manifest b/sci-mathematics/normaliz/Manifest index 5a7a22af9..abb2e4b3f 100644 --- a/sci-mathematics/normaliz/Manifest +++ b/sci-mathematics/normaliz/Manifest @@ -1,4 +1,4 @@ DIST Normaliz2.2Linux32.zip 3712125 RMD160 0b223dc7996c5b3d1d4b2d009c718043ee7647e9 SHA1 e3b518164c8c6d22f6303b357a337fdc7dadae77 SHA256 9588942dc63a999070341f5b84e4eeab318bf5c610a5403d909793f9931f1263 -EBUILD normaliz-2.2.ebuild 749 RMD160 050bc3186c1254e5e264a2103bfd90e3c6350fa7 SHA1 4ba9227aed0765bc4fdba3d4630421a80d7f8aca SHA256 0286dc7b759bf2ad3d42d91261e10a58132ec2bc2745aa6d6143561eba284f6d -MISC ChangeLog 245 RMD160 83b75326fbd0845e5781f2ab0714abe148b3c660 SHA1 ead9174f76456243893fc0f8db14a6379ec36238 SHA256 5bf04279d1e9d676cfd17d067e2fd718e1ed8f5113437f5e487df5501318658f +EBUILD normaliz-2.2.ebuild 769 RMD160 e699c332ad4552b990d5384c5b05f67b17c8d1b2 SHA1 14dc193a682bd472aa305038b7edbd37c9621792 SHA256 ed01efebc73c6386f7557349204bc756112aede8339a867cff61cb5a5c1df670 +MISC ChangeLog 340 RMD160 ff76cae3da656dca1ed14d4241384cb51e0d2696 SHA1 2bad4046cdff5c4ab8e9e1e583a74eaa4c5b9340 SHA256 b7b985bba159ef98230ab05d193fcdacd7c21c50631cf1400004e280a6b1ebdb MISC metadata.xml 421 RMD160 3877e916b9efaf447139174c187eb04dc400e527 SHA1 5f83d6586e145e78f11bd4e2167d43c447fcbe40 SHA256 baee293f19fbe342b2976a565bb6c5c702cba12573ca03cd5baa62682f6c82da diff --git a/sci-mathematics/normaliz/normaliz-2.2.ebuild b/sci-mathematics/normaliz/normaliz-2.2.ebuild index c0f691797..e98fa6e48 100644 --- a/sci-mathematics/normaliz/normaliz-2.2.ebuild +++ b/sci-mathematics/normaliz/normaliz-2.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ @@ -20,17 +20,12 @@ RDEPEND="${DEPEND}" S="${WORKDIR}/Normaliz2.2Linux/source" src_prepare () { - sed -i "s/-O3/${CXXFLAGS}/" Makefile -} - -src_compile() { - emake || die "emake failed" + sed -i "s/-O3/${CXXFLAGS}/" Makefile || die "sed on Makefile failed" } src_install() { - dobin norm32 norm64 normbig + dobin norm32 norm64 normbig || die "install failed" if use doc; then - cd "${S}/../doc" - dodoc "Normaliz2.2Documentation.pdf" + dodoc "../doc/Normaliz2.2Documentation.pdf" || die "install failed" fi } |