Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-mathematics/unuran: ChangeLog unuran-1.8.1.ebuild
Date: Tue, 03 May 2011 16:42:29
Message-Id: 20110503164220.6453120054@flycatcher.gentoo.org
1 bicatali 11/05/03 16:42:20
2
3 Modified: ChangeLog
4 Added: unuran-1.8.1.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.1.9.46/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.4 sci-mathematics/unuran/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/unuran/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/unuran/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/unuran/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/unuran/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 22 Dec 2010 05:20:29 -0000 1.3
24 +++ ChangeLog 3 May 2011 16:42:20 -0000 1.4
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sci-mathematics/unuran
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/unuran/ChangeLog,v 1.3 2010/12/22 05:20:29 bicatali Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/unuran/ChangeLog,v 1.4 2011/05/03 16:42:20 bicatali Exp $
31 +
32 +*unuran-1.8.1 (03 May 2011)
33 +
34 + 03 May 2011; Sébastien Fabbro <bicatali@g.o> +unuran-1.8.1.ebuild:
35 + Version bump
36
37 22 Dec 2010; Sébastien Fabbro <bicatali@g.o>
38 files/unuran-1.8.0-nogsl.patch:
39
40
41
42 1.1 sci-mathematics/unuran/unuran-1.8.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/unuran/unuran-1.8.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/unuran/unuran-1.8.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: unuran-1.8.1.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/sci-mathematics/unuran/unuran-1.8.1.ebuild,v 1.1 2011/05/03 16:42:20 bicatali Exp $
52
53 EAPI=4
54 inherit eutils autotools
55
56 DESCRIPTION="Universal Non-Uniform Random number generator"
57 HOMEPAGE="http://statmath.wu.ac.at/unuran/"
58 SRC_URI="${HOMEPAGE}${P}.tar.gz"
59 LICENSE="GPL-2"
60
61 SLOT=0
62 KEYWORDS="~amd64 ~x86"
63 IUSE="doc examples gsl prng +rngstreams static-libs"
64 DEPEND="gsl? ( sci-libs/gsl )
65 prng? ( sci-mathematics/prng )
66 rngstreams? ( sci-mathematics/rngstreams )"
67 RDEPEND="${DEPEND}"
68
69 src_configure() {
70 local udefault=builtin
71 use rngstreams && udefault=rngstream
72 econf \
73 --enable-shared \
74 --with-urng-default=${udefault} \
75 $(use_enable static-libs static) \
76 $(use_with gsl urng-gsl) \
77 $(use_with prng urng-prng) \
78 $(use_with rngstreams urng-rngstream)
79 }
80
81 src_install() {
82 default
83 use doc && dodoc doc/${PN}.pdf
84 if use examples; then
85 emake distclean -C examples
86 rm -f examples/Makefile*
87 insinto /usr/share/doc/${PF}
88 doins -r examples
89 fi
90 }