diff options
author | Marcus D. Hanwell <cryos@gentoo.org> | 2005-12-18 13:29:00 +0000 |
---|---|---|
committer | Marcus D. Hanwell <cryos@gentoo.org> | 2005-12-18 13:29:00 +0000 |
commit | 5ed10b8e4e5d61e81e6421e522e8ed7ce16bdef6 (patch) | |
tree | ff83de552605351efdf4a3d0d61cf775c680673b /sci-misc | |
parent | add dev-scheme/gauche-gl:cg (diff) | |
download | gentoo-2-5ed10b8e4e5d61e81e6421e522e8ed7ce16bdef6.tar.gz gentoo-2-5ed10b8e4e5d61e81e6421e522e8ed7ce16bdef6.tar.bz2 gentoo-2-5ed10b8e4e5d61e81e6421e522e8ed7ce16bdef6.zip |
Fixed dep, bug 115819. Also adjusted handling of the log file.
(Portage version: 2.0.53)
Diffstat (limited to 'sci-misc')
-rw-r--r-- | sci-misc/boinc/ChangeLog | 6 | ||||
-rw-r--r-- | sci-misc/boinc/boinc-5.2.14.ebuild | 4 | ||||
-rw-r--r-- | sci-misc/boinc/files/boinc.init | 6 |
3 files changed, 12 insertions, 4 deletions
diff --git a/sci-misc/boinc/ChangeLog b/sci-misc/boinc/ChangeLog index 1e8cb04b652a..33426cd55a71 100644 --- a/sci-misc/boinc/ChangeLog +++ b/sci-misc/boinc/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-misc/boinc # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/ChangeLog,v 1.17 2005/12/11 21:23:28 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/ChangeLog,v 1.18 2005/12/18 13:29:00 cryos Exp $ + + 18 Dec 2005; Marcus D. Hanwell <cryos@gentoo.org> files/boinc.init, + boinc-5.2.14.ebuild: + Fixed dep, bug 115819. Also adjusted handling of the log file. 11 Dec 2005; Marcus D. Hanwell <cryos@gentoo.org> +files/08_all_Makefile.patch, boinc-5.2.14.ebuild: diff --git a/sci-misc/boinc/boinc-5.2.14.ebuild b/sci-misc/boinc/boinc-5.2.14.ebuild index 0bd92ef5820e..cc749326dc3b 100644 --- a/sci-misc/boinc/boinc-5.2.14.ebuild +++ b/sci-misc/boinc/boinc-5.2.14.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/boinc-5.2.14.ebuild,v 1.2 2005/12/11 21:23:28 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/boinc-5.2.14.ebuild,v 1.3 2005/12/18 13:29:00 cryos Exp $ inherit eutils @@ -17,7 +17,7 @@ IUSE="server X" RDEPEND="sys-libs/zlib >=net-misc/curl-7.15.0 >=dev-libs/openssl-0.9.7 - X? ( >=x11-libs/wxGTK-2.6.1 ) + X? ( >=x11-libs/wxGTK-2.6.2 ) server? ( net-www/apache >=dev-db/mysql-4.0.24 virtual/php diff --git a/sci-misc/boinc/files/boinc.init b/sci-misc/boinc/files/boinc.init index 2245e29b63ea..8a2543faae3b 100644 --- a/sci-misc/boinc/files/boinc.init +++ b/sci-misc/boinc/files/boinc.init @@ -31,6 +31,10 @@ start() { if [ ! -f ${LOGFILE} ]; then touch ${LOGFILE} chown ${USER}:${GROUP} ${LOGFILE} + else + mv ${LOGFILE} ${LOGFILE}.old + touch ${LOGFILE} + chown ${USER}:${GROUP} ${LOGFILE} fi if [ ${ALLOW_REMOTE_RPC} = "yes" ]; then @@ -39,7 +43,7 @@ start() { setsid start-stop-daemon --quiet --start --chdir ${RUNTIMEDIR} \ --exec ${BOINCBIN} --chuid ${USER}:${GROUP} \ - --nicelevel ${NICELEVEL} -- ${ARGS} >> ${LOGFILE} 2>&1 & + --nicelevel ${NICELEVEL} -- ${ARGS} > ${LOGFILE} 2>&1 & eend $? } |