diff options
author | Michael Imhof <tantive@gentoo.org> | 2003-07-12 10:13:16 +0000 |
---|---|---|
committer | Michael Imhof <tantive@gentoo.org> | 2003-07-12 10:13:16 +0000 |
commit | 158bb502828a9909982ea781c7ba74c012f36b2c (patch) | |
tree | de51549ca2c00ff128c30f2f5acd8447bb56d94c /app-sci/lin-seti | |
parent | fix lack of digests (diff) | |
download | gentoo-2-158bb502828a9909982ea781c7ba74c012f36b2c.tar.gz gentoo-2-158bb502828a9909982ea781c7ba74c012f36b2c.tar.bz2 gentoo-2-158bb502828a9909982ea781c7ba74c012f36b2c.zip |
Version bumped.
Diffstat (limited to 'app-sci/lin-seti')
-rw-r--r-- | app-sci/lin-seti/ChangeLog | 10 | ||||
-rw-r--r-- | app-sci/lin-seti/Manifest | 2 | ||||
-rw-r--r-- | app-sci/lin-seti/files/digest-lin-seti-0.7.5 | 1 | ||||
-rw-r--r-- | app-sci/lin-seti/lin-seti-0.7.5.ebuild | 43 |
4 files changed, 54 insertions, 2 deletions
diff --git a/app-sci/lin-seti/ChangeLog b/app-sci/lin-seti/ChangeLog index 7cf6f15d816d..508b2ffdb4a0 100644 --- a/app-sci/lin-seti/ChangeLog +++ b/app-sci/lin-seti/ChangeLog @@ -1,13 +1,19 @@ # ChangeLog for app-sci/lin-seti # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-sci/lin-seti/ChangeLog,v 1.7 2003/07/10 11:29:31 tantive Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-sci/lin-seti/ChangeLog,v 1.8 2003/07/12 10:13:07 tantive Exp $ + +*lin-seti-0.7.5 (12 Jul 2003) + + 12 Jul 2003; Michael Imhof <tantive@gentoo.org> : + lin-seti-0.7.4.ebuild: + Version bumped *lin-seti-0.7.4 (10 Jul 2003) 10 Jul 2003; Michael Imhof <tantive@gentoo.org> : lin-seti-0.7.4.ebuild: Version bumped -9 + 12 Jun 2003; <msterret@gentoo.org> lin-seti-0.7.2.ebuild, lin-seti-0.7.3.ebuild: add Header diff --git a/app-sci/lin-seti/Manifest b/app-sci/lin-seti/Manifest index 46ad76b431fb..a55f5cf1e2a2 100644 --- a/app-sci/lin-seti/Manifest +++ b/app-sci/lin-seti/Manifest @@ -1,5 +1,7 @@ MD5 b8df66d3eccb517f810b747e8a36eab4 ChangeLog 1216 +MD5 923cdd4ba98c7d9ab17972145521d966 lin-seti-0.7.5.ebuild 1345 MD5 607fb1585a21e1686d77794147ad5cb3 lin-seti-0.7.3.ebuild 1344 MD5 923cdd4ba98c7d9ab17972145521d966 lin-seti-0.7.4.ebuild 1345 +MD5 e12b4db65831953f23c5cab02425738d files/digest-lin-seti-0.7.5 66 MD5 2a9a8adb19d222fe9e99f9c74606b719 files/digest-lin-seti-0.7.3 66 MD5 2c21402116e19216caa08d3d76dc1522 files/digest-lin-seti-0.7.4 66 diff --git a/app-sci/lin-seti/files/digest-lin-seti-0.7.5 b/app-sci/lin-seti/files/digest-lin-seti-0.7.5 new file mode 100644 index 000000000000..653d17c90fe2 --- /dev/null +++ b/app-sci/lin-seti/files/digest-lin-seti-0.7.5 @@ -0,0 +1 @@ +MD5 5b494c64fa163c387f635288c93aee16 lin-seti-0.7.5.tar.bz2 32366 diff --git a/app-sci/lin-seti/lin-seti-0.7.5.ebuild b/app-sci/lin-seti/lin-seti-0.7.5.ebuild new file mode 100644 index 000000000000..7646a68d1d30 --- /dev/null +++ b/app-sci/lin-seti/lin-seti-0.7.5.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-sci/lin-seti/lin-seti-0.7.5.ebuild,v 1.1 2003/07/12 10:13:16 tantive Exp $ + +DESCRIPTION="A Seti@Home cache manager, cache-compatible with Seti Driver. Can be run as system daemon." +HOMEPAGE="http://lin-seti.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 sparc ~ppc ~alpha" +IUSE="" +DEPEND="app-sci/setiathome" + +src_compile() { + emake || die +} + +src_install() { + + mkdir -m 755 ${D}usr + mkdir -m 755 ${D}usr/bin + mkdir -m 755 ${D}opt + mkdir -m 755 ${D}etc + mkdir -m 755 ${D}etc/init.d + make \ + PREFIX=${D} \ + install || die + + # Let's see if this file already exists: if so we will not install it + if [ -a "/opt/setiathome/cache/1/user_info.sah" ]; then rm ${D}opt/setiathome/cache/1/user_info.sah; fi + # Otherwise the ebuild will overwrite this file! + # And THAT is bad: if the client runs in daemon mode, + # when switching to that dir it will wait forever for someone to give it + # some info (which would be impossible, being detached from all terminals)! +} + +pkg_postinst () { + + einfo "NOTICE: If you use SETI Driver for Windows" + einfo "to share the cache make sure it is" + einfo "version 1.6.4.0 or higher!" + sleep 5 +} |