diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2008-05-17 10:15:01 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2008-05-17 10:15:01 +0000 |
commit | e27c9194cd73aea760d4b500bf2a478d2c36be74 (patch) | |
tree | f0ceae3eb3e80021273a9da6cf3e6a39c8913f39 /sci-libs/minuit | |
parent | Added RESTRICT=strip to prevent debug lib from being stripped. (diff) | |
download | historical-e27c9194cd73aea760d4b500bf2a478d2c36be74.tar.gz historical-e27c9194cd73aea760d4b500bf2a478d2c36be74.tar.bz2 historical-e27c9194cd73aea760d4b500bf2a478d2c36be74.zip |
Fixed runtime depend on doxygen (bug #221691)
Package-Manager: portage-2.1.5
Diffstat (limited to 'sci-libs/minuit')
-rw-r--r-- | sci-libs/minuit/ChangeLog | 8 | ||||
-rw-r--r-- | sci-libs/minuit/minuit-5.16.00.ebuild | 9 |
2 files changed, 11 insertions, 6 deletions
diff --git a/sci-libs/minuit/ChangeLog b/sci-libs/minuit/ChangeLog index 9255aed4c0ad..9359a6f6362a 100644 --- a/sci-libs/minuit/ChangeLog +++ b/sci-libs/minuit/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-libs/minuit -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/minuit/ChangeLog,v 1.4 2007/09/15 13:23:29 bicatali Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/minuit/ChangeLog,v 1.5 2008/05/17 10:15:01 bicatali Exp $ + + 17 May 2008; Sébastien Fabbro <bicatali@gentoo.org> + minuit-5.16.00.ebuild: + Fixed runtime depend on doxygen (bug #221691) 15 Sep 2007; Sébastien Fabbro <bicatali@gentoo.org> -minuit-5.15.02.ebuild: diff --git a/sci-libs/minuit/minuit-5.16.00.ebuild b/sci-libs/minuit/minuit-5.16.00.ebuild index 58637e915ae7..569b16a4e87c 100644 --- a/sci-libs/minuit/minuit-5.16.00.ebuild +++ b/sci-libs/minuit/minuit-5.16.00.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/minuit/minuit-5.16.00.ebuild,v 1.2 2007/08/03 01:54:11 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/minuit/minuit-5.16.00.ebuild,v 1.3 2008/05/17 10:15:01 bicatali Exp $ MY_PN=Minuit2 @@ -16,8 +16,9 @@ SLOT="0" KEYWORDS="~x86 ~amd64" IUSE="doc" DEPEND="doc? ( app-doc/doxygen )" +RDEPEND="" -S=${WORKDIR}/${MY_PN}-${PV} +S="${WORKDIR}/${MY_PN}-${PV}" src_compile() { econf || die "econf failed" @@ -31,7 +32,7 @@ src_test() { emake check || die "emake check failed" # make check only compiles the tests. run them for d in test/Mn*; do - cd ${S}/${d} + cd "${S}"/${d} for t in test_*; do ./${t} || die "${t} failed" done |