diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2009-11-14 01:40:46 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2009-11-14 01:40:46 +0000 |
commit | eafef0d34ebebc139ad63a192a69d5c308a80a32 (patch) | |
tree | 39d1e1fecd239a5af8f3e68ce5c5da31ac2c3a11 /sci-misc/boinc | |
parent | QA: Version bump to fix bug #260806. Non maintainer commit. (diff) | |
download | gentoo-2-eafef0d34ebebc139ad63a192a69d5c308a80a32.tar.gz gentoo-2-eafef0d34ebebc139ad63a192a69d5c308a80a32.tar.bz2 gentoo-2-eafef0d34ebebc139ad63a192a69d5c308a80a32.zip |
Drop the server support from now on. Better for my sanity sorry guys.
(Portage version: 2.2_rc49/cvs/Linux x86_64)
Diffstat (limited to 'sci-misc/boinc')
-rw-r--r-- | sci-misc/boinc/ChangeLog | 5 | ||||
-rw-r--r-- | sci-misc/boinc/boinc-6.10.18.ebuild | 20 |
2 files changed, 7 insertions, 18 deletions
diff --git a/sci-misc/boinc/ChangeLog b/sci-misc/boinc/ChangeLog index be824f07181f..759ac1f66dd3 100644 --- a/sci-misc/boinc/ChangeLog +++ b/sci-misc/boinc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-misc/boinc # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/ChangeLog,v 1.80 2009/11/10 21:42:48 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/ChangeLog,v 1.81 2009/11/14 01:40:46 scarabeus Exp $ + + 14 Nov 2009; Tomáš Chvátal <scarabeus@gentoo.org> boinc-6.10.18.ebuild: + Drop the server support from now on. Better for my sanity sorry guys. 10 Nov 2009; Tomáš Chvátal <scarabeus@gentoo.org> files/boinc.init: Update initscript to fix bug #289853. diff --git a/sci-misc/boinc/boinc-6.10.18.ebuild b/sci-misc/boinc/boinc-6.10.18.ebuild index 286fbe21b492..1d520b569042 100644 --- a/sci-misc/boinc/boinc-6.10.18.ebuild +++ b/sci-misc/boinc/boinc-6.10.18.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/boinc-6.10.18.ebuild,v 1.1 2009/11/10 21:14:27 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/boinc-6.10.18.ebuild,v 1.2 2009/11/14 01:40:46 scarabeus Exp $ EAPI="2" @@ -13,7 +13,7 @@ SRC_URI="http://dev.gentooexperimental.org/~scarabeus/${P}.tar.bz2" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="X +client cuda server" +IUSE="X +client cuda" RDEPEND=" !sci-misc/boinc-bin @@ -27,14 +27,9 @@ RDEPEND=" >=dev-util/nvidia-cuda-toolkit-2.1 >=x11-drivers/nvidia-drivers-180.22 ) - server? ( - >=virtual/mysql-5.0 - dev-python/mysql-python - ) " DEPEND="${RDEPEND} sys-devel/gettext - server? ( virtual/imap-c-client ) X? ( media-libs/freeglut media-libs/jpeg @@ -42,9 +37,6 @@ DEPEND="${RDEPEND} ) " -# Upstream sucks in autotools -#MAKEOPTS="-j1" - src_prepare() { # use system ssl certificates mkdir "${S}"/curl @@ -75,13 +67,7 @@ src_configure() { wxconf+=" --without-wxdir" fi - # Bug #248769: don't use strlcat and friends from kerberos or similar - #local func - #for func in strlcat strlcpy; do - # eval "export ac_cv_func_${func}=no" - # append-cppflags -D${func}=boinc_${func} - #done - use server || conf+=" --disable-server" + conf+=" --disable-server" use X || conf+=" --disable-manager" use client || conf+=" --disable-client" |