Gentoo Archives: gentoo-commits

From: "Michael Januszewski (spock)" <spock@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-mathematics/gimps: gimps-26.6.ebuild ChangeLog
Date: Sun, 08 May 2011 15:14:29
Message-Id: 20110508151358.C766B20054@flycatcher.gentoo.org
1 spock 11/05/08 15:13:58
2
3 Modified: ChangeLog
4 Added: gimps-26.6.ebuild
5 Log:
6 Version bump (bug #363053).
7
8 (Portage version: 2.1.9.47/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.40 sci-mathematics/gimps/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/gimps/ChangeLog?rev=1.40&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/gimps/ChangeLog?rev=1.40&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/gimps/ChangeLog?r1=1.39&r2=1.40
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/gimps/ChangeLog,v
20 retrieving revision 1.39
21 retrieving revision 1.40
22 diff -u -r1.39 -r1.40
23 --- ChangeLog 16 Mar 2011 23:11:28 -0000 1.39
24 +++ ChangeLog 8 May 2011 15:13:58 -0000 1.40
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sci-mathematics/gimps
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/gimps/ChangeLog,v 1.39 2011/03/16 23:11:28 spock Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/gimps/ChangeLog,v 1.40 2011/05/08 15:13:58 spock Exp $
30 +
31 +*gimps-26.6 (08 May 2011)
32 +
33 + 08 May 2011; MichaƂ Januszewski <spock@g.o> +gimps-26.6.ebuild:
34 + Version bump (bug #363053).
35
36 *gimps-26.5 (16 Mar 2011)
37
38
39
40
41 1.1 sci-mathematics/gimps/gimps-26.6.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/gimps/gimps-26.6.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/gimps/gimps-26.6.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gimps-26.6.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sci-mathematics/gimps/gimps-26.6.ebuild,v 1.1 2011/05/08 15:13:58 spock Exp $
51
52 IUSE=""
53 DESCRIPTION="GIMPS - The Great Internet Mersenne Prime Search"
54 HOMEPAGE="http://mersenne.org/"
55 SRC_URI="amd64? ( ftp://mersenne.org/gimps/mprime${PV/./}-linux64.tar.gz )
56 x86? ( ftp://mersenne.org/gimps/mprime${PV/./}.tar.gz )"
57
58 SLOT="0"
59 LICENSE="as-is"
60 KEYWORDS="-* ~amd64 ~x86"
61
62 # Since there are no statically linked binaries for this version of mprime,
63 # and no static binaries for amd64 in general, we use the dynamically linked
64 # ones and try to cover the .so deps with the packages listed in RDEPEND.
65 DEPEND=""
66 RDEPEND="net-misc/curl"
67
68 S="${WORKDIR}"
69 I="/opt/gimps"
70
71 src_install() {
72 dodir ${I} /var/lib/gimps
73 cp mprime "${D}/${I}"
74 chmod a-w "${D}/${I}/mprime"
75 chown root:0 "${D}/${I}"
76 chown root:0 "${D}/${I}/mprime"
77
78 dodoc license.txt readme.txt stress.txt whatsnew.txt undoc.txt
79
80 newinitd "${FILESDIR}/gimps-25.6-init.d" gimps
81 newconfd "${FILESDIR}/gimps-25.6-conf.d" gimps
82 }
83
84 pkg_postinst() {
85 echo
86 einfo "You can use \`/etc/init.d/gimps start\` to start a GIMPS client in the"
87 einfo "background at boot. Have a look at /etc/conf.d/gimps and check some"
88 einfo "configuration options."
89 einfo
90 einfo "If you don't want to use the init script to start gimps, remember to"
91 einfo "pass it an additional command line parameter specifying where the data"
92 einfo "files are to be stored, e.g.:"
93 einfo " ${I}/mprime -w/var/lib/gimps"
94 echo
95 }
96
97 pkg_postrm() {
98 echo
99 einfo "GIMPS data files were not removed."
100 einfo "Remove them manually from /var/lib/gimps/"
101 echo
102 }