diff options
author | Michael Januszewski <spock@gentoo.org> | 2004-12-28 16:10:55 +0000 |
---|---|---|
committer | Michael Januszewski <spock@gentoo.org> | 2004-12-28 16:10:55 +0000 |
commit | 0a38759652c13f997165246e8805c35c66f07561 (patch) | |
tree | abbcaf377bd21eab571734d5aaa84f8d5d5220f7 /sci-mathematics/gimps | |
parent | Moved from app-sci/acml to sci-libs/acml (diff) | |
download | gentoo-2-0a38759652c13f997165246e8805c35c66f07561.tar.gz gentoo-2-0a38759652c13f997165246e8805c35c66f07561.tar.bz2 gentoo-2-0a38759652c13f997165246e8805c35c66f07561.zip |
Version bump.
Diffstat (limited to 'sci-mathematics/gimps')
-rw-r--r-- | sci-mathematics/gimps/ChangeLog | 7 | ||||
-rw-r--r-- | sci-mathematics/gimps/files/digest-gimps-24.6 | 1 | ||||
-rw-r--r-- | sci-mathematics/gimps/gimps-24.6.ebuild | 51 |
3 files changed, 58 insertions, 1 deletions
diff --git a/sci-mathematics/gimps/ChangeLog b/sci-mathematics/gimps/ChangeLog index 926896b6421d..52749d12a688 100644 --- a/sci-mathematics/gimps/ChangeLog +++ b/sci-mathematics/gimps/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-sci/gimps # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/gimps/ChangeLog,v 1.1 2004/12/28 05:30:36 ribosome Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/gimps/ChangeLog,v 1.2 2004/12/28 16:10:55 spock Exp $ + +*gimps-24.6 (28 Dec 2004) + + 28 Dec 2004; Michal Januszewski <spock@gentoo.org> +gimps-24.6.ebuild: + Version bump. Closes #74981. *gimps-23.5 (28 Dec 2004) diff --git a/sci-mathematics/gimps/files/digest-gimps-24.6 b/sci-mathematics/gimps/files/digest-gimps-24.6 new file mode 100644 index 000000000000..38575e588241 --- /dev/null +++ b/sci-mathematics/gimps/files/digest-gimps-24.6 @@ -0,0 +1 @@ +MD5 27e48fcbb0894c30dd78dacd944ae4fe mprime246.tar.gz 379666 diff --git a/sci-mathematics/gimps/gimps-24.6.ebuild b/sci-mathematics/gimps/gimps-24.6.ebuild new file mode 100644 index 000000000000..fff9db8a93a6 --- /dev/null +++ b/sci-mathematics/gimps/gimps-24.6.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/gimps/gimps-24.6.ebuild,v 1.1 2004/12/28 16:10:55 spock Exp $ + +IUSE="" +DESCRIPTION="GIMPS - The Great Internet Mersenne Prime Search" +HOMEPAGE="http://mersenne.org/" +SRC_URI="ftp://mersenne.org/gimps/mprime${PV/./}.tar.gz" + +DEPEND=">=sys-apps/baselayout-1.8.0 + >=sys-libs/glibc-2.1" +SLOT="0" +LICENSE="as-is" +KEYWORDS="-* ~x86" + +S="${WORKDIR}" +I="/opt/gimps" + +src_install () { + cd ${S} + + dodir ${I} /var/lib/gimps + cp mprime ${D}/${I} + chmod a-w ${D}/${I}/mprime + chown root:root ${D}/${I} + chown root:root ${D}/${I}/mprime + + dodoc license.txt readme.txt stress.txt whatsnew.txt undoc.txt + + exeinto /etc/init.d ; newexe ${FILESDIR}/gimps-init.d gimps + insinto /etc/conf.d ; newins ${FILESDIR}/gimps-conf.d gimps +} + +pkg_postinst () { + echo "" + einfo "You can use \`/etc/init.d/gimps start\` to start a GIMPS client in the" + einfo "background at boot. Have a look at /etc/conf.d/gimps and check some" + einfo "configuration options." + einfo "" + einfo "If you don't want to use the init script to start gimps, remember" + einfo "to cd into the directory where the data files are to be stored first, eg.:" + einfo " cd /var/lib/gimps && ${I}/mprime" + echo "" +} + +pkg_postrm () { + echo "" + einfo "GIMPS data files were not removed." + einfo "Remove them manually from /var/lib/gimps/" + echo "" +} |