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: ChangeLog gimps-26.2.ebuild
Date: Sun, 03 Oct 2010 20:51:09
Message-Id: 20101003205102.F213820051@flycatcher.gentoo.org
1 spock 10/10/03 20:51:02
2
3 Modified: ChangeLog
4 Added: gimps-26.2.ebuild
5 Log:
6 Version bump (bug #338530).
7
8 (Portage version: 2.1.9.13/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.36 sci-mathematics/gimps/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/gimps/ChangeLog?rev=1.36&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/gimps/ChangeLog?rev=1.36&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/gimps/ChangeLog?r1=1.35&r2=1.36
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-mathematics/gimps/ChangeLog,v
20 retrieving revision 1.35
21 retrieving revision 1.36
22 diff -u -r1.35 -r1.36
23 --- ChangeLog 20 Jun 2010 13:55:37 -0000 1.35
24 +++ ChangeLog 3 Oct 2010 20:51:02 -0000 1.36
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sci-mathematics/gimps
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/gimps/ChangeLog,v 1.35 2010/06/20 13:55:37 fauli Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/gimps/ChangeLog,v 1.36 2010/10/03 20:51:02 spock Exp $
30 +
31 +*gimps-26.2 (03 Oct 2010)
32 +
33 + 03 Oct 2010; MichaƂ Januszewski <spock@g.o> +gimps-26.2.ebuild:
34 + Version bump (bug #338530).
35
36 20 Jun 2010; Christian Faulhammer <fauli@g.o> gimps-25.11.ebuild:
37 stable x86, bug 316801
38
39
40
41 1.1 sci-mathematics/gimps/gimps-26.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/gimps/gimps-26.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-mathematics/gimps/gimps-26.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gimps-26.2.ebuild
47 ===================================================================
48 # Copyright 1999-2010 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.2.ebuild,v 1.1 2010/10/03 20:51:02 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="x86? ( dev-util/bsdiff )"
66 RDEPEND="net-misc/curl"
67
68 S="${WORKDIR}"
69 I="/opt/gimps"
70
71 QA_EXECSTACK="opt/gimps/mprime"
72
73 src_install() {
74 dodir ${I} /var/lib/gimps
75 cp mprime "${D}/${I}"
76 chmod 0555 "${D}/${I}/mprime"
77 chown root:0 "${D}/${I}"
78 chown root:0 "${D}/${I}/mprime"
79
80 dodoc license.txt readme.txt stress.txt whatsnew.txt undoc.txt
81
82 newinitd "${FILESDIR}/gimps-25.7-init.d" gimps
83 newconfd "${FILESDIR}/gimps-25.6-conf.d" gimps
84 }
85
86 pkg_postinst() {
87 echo
88 einfo "You can use \`/etc/init.d/gimps start\` to start a GIMPS client in the"
89 einfo "background at boot. Have a look at /etc/conf.d/gimps and check some"
90 einfo "configuration options."
91 einfo
92 einfo "If you are a new user, you will need to configure GIMPS before"
93 einfo "starting the initscript. To do so, run:"
94 einfo " ${I}/mprime -w/var/lib/gimps"
95 einfo "followed by:"
96 einfo " chown nobody:nobody /var/lib/gimps/*"
97 einfo
98 einfo "If you have an existing GIMPS account, follow the instructions at:"
99 einfo " http://mersenne.org/freesoft/#upgradeusers"
100 einfo "and do not blindy restart gimps."
101 echo
102 }
103
104 pkg_postrm() {
105 echo
106 einfo "GIMPS data files were not removed."
107 einfo "Remove them manually from /var/lib/gimps/"
108 echo
109 }