diff options
author | Marcus D. Hanwell <cryos@gentoo.org> | 2005-12-05 18:34:10 +0000 |
---|---|---|
committer | Marcus D. Hanwell <cryos@gentoo.org> | 2005-12-05 18:34:10 +0000 |
commit | 3021d1f7abe293f049dcc8c660c9f6404f405973 (patch) | |
tree | cf01b37c3d5b201a55a1da1f6ad3605519b9c069 /sci-misc/boinc/boinc-5.2.14.ebuild | |
parent | Added >=sci-misc/boinc-5.2.14 for testing. (diff) | |
download | gentoo-2-3021d1f7abe293f049dcc8c660c9f6404f405973.tar.gz gentoo-2-3021d1f7abe293f049dcc8c660c9f6404f405973.tar.bz2 gentoo-2-3021d1f7abe293f049dcc8c660c9f6404f405973.zip |
Version bump, in p.mask for now until it receives more testing.
(Portage version: 2.0.53)
Diffstat (limited to 'sci-misc/boinc/boinc-5.2.14.ebuild')
-rw-r--r-- | sci-misc/boinc/boinc-5.2.14.ebuild | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/sci-misc/boinc/boinc-5.2.14.ebuild b/sci-misc/boinc/boinc-5.2.14.ebuild new file mode 100644 index 000000000000..8f9e84a392dd --- /dev/null +++ b/sci-misc/boinc/boinc-5.2.14.ebuild @@ -0,0 +1,88 @@ +# 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.1 2005/12/05 18:34:10 cryos Exp $ + +inherit eutils + +DESCRIPTION="The Berkeley Open Infrastructure for Network Computing" +HOMEPAGE="http://boinc.ssl.berkeley.edu/" +SRC_URI="mirror://gentoo//${P}.tar.bz2 + mirror://gentoo/${P}-patches.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86" +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 ) + server? ( net-www/apache + >=dev-db/mysql-4.0.24 + virtual/php + >=dev-lang/python-2.2.3 + >=dev-python/mysql-python-0.9.2 )" +DEPEND=">=sys-devel/gcc-3.0.4 + >=sys-devel/autoconf-2.59 + >=sys-devel/automake-1.9.3 + X? ( || ( ( x11-libs/libXmu + x11-libs/libXt + x11-libs/libX11 + x11-proto/xproto ) + virtual/x11 ) + virtual/glut + virtual/glu + media-libs/jpeg ) + server? ( virtual/imap-c-client ) + ${RDEPEND}" + +src_unpack() { + unpack ${A} + cd ${S} + + # Applu patches, most of which from Debian + EPATCH_SOURCE="${WORKDIR}/patches" EPATCH_SUFFIX="patch" epatch + + # point to a proper mouse device + sed -e "s:/dev/mouse:/dev/input/mice:g" -i client/hostinfo_unix.C || die +} + +src_compile() { + econf \ + --enable-client \ + --disable-static-client \ + --with-wx-config=$(which wx-config-2.6) \ + $(use_enable server) \ + $(use_with X x) || die "econf failed" + emake || die "emake failed" +} + +src_install() { + make install DESTDIR=${D} || die "make install failed" + + newinitd ${FILESDIR}/boinc.init boinc + newconfd ${FILESDIR}/boinc.conf boinc + + make_desktop_entry boinc_gui BOINC boinc Science /var/lib/boinc +} + +pkg_preinst() { + enewgroup boinc + enewuser boinc -1 -1 /var/lib/boinc boinc +} + +pkg_postinst() { + echo + einfo "You need to attach to a project to do anything useful with boinc." + einfo "You can do this by running /etc/init.d/boinc attach" + einfo "BOINC The howto for configuration is located at:" + einfo "http://boinc.berkeley.edu/anonymous_platform.php" + if use server;then + echo + einfo "You have chosen to enable server mode. this ebuild has installed" + einfo "the necessary packages to be a server. You will need to have a" + einfo "project. Contact BOINC directly for further information." + fi + echo +} |