Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 250250 - sci-misc/boinc-6.2.16 version bump
Summary: sci-misc/boinc-6.2.16 version bump
Status: RESOLVED WONTFIX
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High enhancement
Assignee: Tomáš Chvátal (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-12-08 04:47 UTC by John (EBo) David
Modified: 2009-02-02 08:42 UTC (History)
2 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description John (EBo) David 2008-12-08 04:47:11 UTC
Somewhere I found an experimental sci-misc/boinc-6.2.16 ebuild. Tonight I revisited it and tweaked it with stuff from the latest sci-misc/boinc-6.2.15.ebuild and finally got it to work relatively cleanly.  

I am sure that it needs ***lots*** of more tweaks before it is submittable, but I am posting it in the hopes that it will be useful for getting the next version of boinc up and running.

One thing I had to remove from boinc-6.2.16-r1 that was in boinc-6.2.15 was the SRC_URI's for the bindist files.  So, bindist cannot work until that is resolved, but at this point it compiles on my machine but is not yet fully tested.

Once again, I hope this is useful...

  EBo --

=================================================================

# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/boinc-6.2.15.ebuild,v 1.3 2008/11/28 00:06:59 scarabeus Exp $

EAPI="1"

inherit depend.apache flag-o-matic wxwidgets autotools

MY_PV="${PV//./_}"
DESCRIPTION="The Berkeley Open Infrastructure for Network Computing"
HOMEPAGE="http://boinc.ssl.berkeley.edu/"
SRC_URI="http://dev.gentooexperimental.org/~scarabeus/${P}.tar.bz2"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86"
IUSE="X bindist server unicode"
# bindist is only for x86 and amd64 for rest package.use.mask

RDEPEND="sys-libs/zlib
	>=net-misc/curl-7.15.5
	>=dev-libs/openssl-0.9.7
	X? ( =x11-libs/wxGTK-2.8* )
	server? (
		!bindist? (
			>=virtual/mysql-4.0
			virtual/php
			>=dev-lang/python-2.2.3
			>=dev-python/mysql-python-0.9.2
		)
	)"
DEPEND="app-misc/ca-certificates
	!bindist? (
		>=sys-devel/gcc-3.0.4
		>=sys-devel/autoconf-2.58
		>=sys-devel/automake-1.8
		>=dev-util/pkgconfig-0.15
		>=sys-devel/m4-1.4
	)
	X? ( x11-libs/libXmu
		x11-libs/libXt
		x11-libs/libX11
		x11-proto/xproto
		media-libs/freeglut
		virtual/glu
		media-libs/jpeg )
	server? ( !bindist? ( virtual/imap-c-client ) )
	${RDEPEND}"
# subversion is not needed only if user choose binary for amd64 or x86
want_apache server

LANGS="ar be bg ca cs da de el en_US es eu fi fr hr hu it ja lt lv nb nl pl pt pt_BR ro ru sk sl sv_SE tr uk zh_CN zh_TW"
for LNG in ${LANGS}; do
	IUSE="${IUSE} linguas_${LNG}"
done

src_unpack() {
	local target

	if ! use bindist; then
		unpack ${P}.tar.bz2
		cd "${S}"

		# upstream recommendation for flags
		append-flags -O3 -funroll-loops -fforce-addr -ffast-math

		# do autoreconf
		rm "${S}"/m4/libtool.m4
		AT_M4DIR="m4" eautoreconf
	else
		use server && elog "Server feature is working only for source build, please disable bindist if you really intend to use server."
		use x86 && target="i686" || target="x86_64"
		cp "${DISTDIR}"/${P/-/_}_${target}-pc-linux-gnu.sh "${WORKDIR}"
		cd "${WORKDIR}"
		sh ${P/-/_}_${target}-pc-linux-gnu.sh
	fi
}

src_compile() {
	# upstream recommendation for flags
	append-flags -O3 -funroll-loops -fforce-addr -ffast-math

	if ! use bindist; then
		if use X; then
			WX_GTK_VER=2.8
			use unicode && need-wxwidgets unicode || need-wxwidgets gtk2
			wxconf="--with-wx-config=${WX_CONFIG}"
		fi

		econf \
			--enable-client \
			--with-ssl \
			${wxconf} \
			$(use_enable unicode) \
			$(use_enable server) \
			$(use_with X x) || die "econf failed"

		# Make it link to the compiled libs, not the installed ones
		# remove precompiled binaries from svn
		sed -i \
			-e "s:LDFLAGS = :LDFLAGS = -L../lib :g" \
			*/Makefile || die "sed failed"
		emake -j1 || die "emake failed"
	fi
}

src_install() {
	dodir /var/lib/${PN}
	newinitd "${FILESDIR}"/${PN}.init ${PN}
	newconfd "${FILESDIR}"/${PN}.conf ${PN}
	if ! use bindist; then
		make install DESTDIR="${D}" || die "make install failed"
		# icon
		newicon "${S}"/sea/${PN}mgr.48x48.png ${PN}.png
		# wrapper to allow gui to load gui_rpc_auth.cfg because ${PN} devs assume curdir to be datadir for ${PN}_gui
		mv "${D}"/usr/bin/${PN}_gui "${D}"/usr/bin/${PN}mgr
		echo "cd \"/var/lib/${PN}\" && exec /usr/bin/${PN}mgr \$@" > "${D}"/usr/bin/${PN}_gui
		chmod 755 "${D}"/usr/bin/${PN}_gui
		# desktop
		if use X; then
			make_desktop_entry ${PN}_gui ${PN} ${PN} "Education;Science" /var/lib/${PN}
		fi
		# required headers by seti@home
		insopts -m0644
		insinto /usr/include/${PN}
		doins "${S}"/api/{reduce.h,graphics_api.h,graphics_data.h,${PN}_gl.h}
		# symlink locale so it actualy work for source dist.
		insinto /usr/share/locale/
		cd "${S}"/locale/client
		for LNG in ${LINGUAS}; do
			doins -r ${LNG}
		done
		dosym /usr/share/locale /var/lib/${PN}/locale
		cd "${S}"
	else
		local S_BIN="${WORKDIR}"/BOINC
		cd "${S_BIN}"
		# fix ${PN}.conf file for binary package
		sed -i -e "s:/usr/bin/${PN}_client:/opt/${PN}/${PN}:g" "${D}"/etc/conf.d/${PN}
		if use X; then
			# icon
			newicon "${S_BIN}"/${PN}mgr.48x48.png ${PN}.png
			# desktop
			make_desktop_entry /opt/${PN}/run_manager "${PN}" ${PN} "Education;Science"	/var/lib/${PN}
		fi
		# use correct path in scripts
		sed -i \
			-e "s:${S_BIN}:/var/lib/${PN}:g" \
			-e "s:./${PN}:/opt/${PN}/${PN}:g" \
			run_client || die "sed run_client failed"
		sed -i \
			-e "s:${S_BIN}:/var/lib/${PN}:g" \
			-e "s:./${PN}mgr:/opt/${PN}/${PN}mgr:g" \
			run_manager || die "sed run_manager failed"
		# install binaries
		exeopts -m0755
		exeinto /opt/${PN}

		doexe "${S_BIN}"//{${PN},${PN}_cmd,${PN}cmd,${PN}mgr,run_client,run_manager}
		fowners 0:${PN} /opt/${PN}/{${PN},${PN}_cmd,${PN}cmd,${PN}mgr,run_client,run_manager}
		# locale
		mkdir -p "${D}"/opt/${PN}/locale
		insopts -m0644
		insinto /opt/${PN}/
		cd "${S_BIN}"/locale/
		for LNG in ${LINGUAS}; do
			doins -r "${LNG}"
		done
		dosym /opt/${PN}/locale /var/lib/${PN}/locale
		cd "${S}"
	fi
	dosym /etc/ssl/certs/ca-certificates.crt /var/lib/${PN}/ca-bundle.crt
	insopts -m0640
	insinto /var/lib/${PN}
	doins "${FILESDIR}"/gui_rpc_auth.cfg
	fowners ${PN}:${PN} /var/lib/${PN}/gui_rpc_auth.cfg
	fowners ${PN}:${PN} /var/lib/${PN}/
}

pkg_preinst() {
	enewgroup ${PN}
	enewuser ${PN} -1 -1 /var/lib/${PN} ${PN}
}

pkg_postinst() {
	echo
	if use bindist; then
		elog "You are using the binary distributed version."
		elog "The manager can be found at /opt/${PN}/run_manager"
	fi
	elog "You need to attach to a project to do anything useful with ${PN}."
	elog "You can do this by running /etc/init.d/${PN} attach"
	elog "${PN} The howto for configuration is located at:"
	elog "http://${PN}.berkeley.edu/anonymous_platform.php"
	if use server && ! use bindist ; then
		echo
		elog "You have chosen to enable server mode. this ebuild has installed"
		elog "the necessary packages to be a server. You will need to have a"
		elog "project. Contact ${PN} directly for further information."
	fi
	echo
	# Add warning about the new password for the client, bug 121896.
	elog "If you need to use the graphical client the password is in"
	elog "/var/lib/${PN}/gui_rpc_auth.cfg which is for first run empty."
	elog "You should change this to something more secure."
	echo
}
Comment 1 Michael Palimaka (kensington) gentoo-dev 2008-12-17 09:20:27 UTC
It should be noted that at the time of writing, 6.4.5 is also released.
Comment 2 John (EBo) David 2009-01-02 08:20:14 UTC
Thanks Michael,

I was able to get 6.4.5 compiled (not run tested yet) by patching samples/example_app/Makefile to deal gracefully with the recursive install.  I also had to add >=app-misc/pax-utils-0.1.19 to RDEPEND due to a errors caused by scanelf

 "scanelf: Sorry, long names not yet supported; output will be incomplete for..."

using pax-utils-0.1.19 fixed the problem (see bug report 252855).  So, with minor changes to the ebuild posted above 6.4.5 builds.


Comment 3 John (EBo) David 2009-01-21 14:37:46 UTC
FYI, since the last post that I have tested things and have completed a couple of tasks.  Things appear to be running fine.
Comment 4 Tomáš Chvátal (RETIRED) gentoo-dev 2009-02-01 15:07:13 UTC
6.4.5 in the tree. so wontfix on this one.
Comment 5 John (EBo) David 2009-02-01 16:05:50 UTC
Ok.  When was it added to the tree?  As far as I can tell it was yesterday.  How was I supposed to know?
Comment 6 Tomáš Chvátal (RETIRED) gentoo-dev 2009-02-01 16:11:06 UTC
(In reply to comment #5)
> Ok.  When was it added to the tree?  As far as I can tell it was yesterday. 
> How was I supposed to know?
> 

It has nothing to do with that  you opened this bug. I also didnt know about most of the boinc bugs :]
I just wrote ebuild on newest and fixed initscripts.
And now i am retrospectively closing all relevant bugs that are no longer needed. Of course your bug report was relevant until i started working on 6.4.5 :]
Comment 7 John (EBo) David 2009-02-02 08:42:26 UTC
Ah.  I see.  I was afraid I missed something and you were telling me I had not done due diligence.  I'll let this one go and post a new bug  on the latest ebuild I found (assuming no one else reported it).