diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2011-07-11 21:15:23 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2011-07-11 21:15:23 +0000 |
commit | f5cfdf7114e39c4d14330bcc881306a46ecfe7c2 (patch) | |
tree | 8ffc0e608baa1094446601f56863cf317c5fd662 /sci-misc/boinc | |
parent | remove old (diff) | |
download | gentoo-2-f5cfdf7114e39c4d14330bcc881306a46ecfe7c2.tar.gz gentoo-2-f5cfdf7114e39c4d14330bcc881306a46ecfe7c2.tar.bz2 gentoo-2-f5cfdf7114e39c4d14330bcc881306a46ecfe7c2.zip |
Version bump to the latest. Drop older. Fixes bug #374329.
(Portage version: 2.2.0_alpha43/cvs/Linux x86_64)
Diffstat (limited to 'sci-misc/boinc')
-rw-r--r-- | sci-misc/boinc/ChangeLog | 8 | ||||
-rw-r--r-- | sci-misc/boinc/boinc-6.12.33.ebuild (renamed from sci-misc/boinc/boinc-6.12.26-r1.ebuild) | 38 |
2 files changed, 24 insertions, 22 deletions
diff --git a/sci-misc/boinc/ChangeLog b/sci-misc/boinc/ChangeLog index f2e95dd53282..201e972e00cb 100644 --- a/sci-misc/boinc/ChangeLog +++ b/sci-misc/boinc/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-misc/boinc # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/ChangeLog,v 1.101 2011/05/27 06:32:04 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/ChangeLog,v 1.102 2011/07/11 21:15:22 scarabeus Exp $ + +*boinc-6.12.33 (11 Jul 2011) + + 11 Jul 2011; Tomáš Chvátal <scarabeus@gentoo.org> + -boinc-6.12.26-r1.ebuild, +boinc-6.12.33.ebuild: + Version bump to the latest. Drop older. Fixes bug #374329. 27 May 2011; Tomáš Chvátal <scarabeus@gentoo.org> boinc-6.12.26-r1.ebuild: Make the dep on libnotify versioned so even suckers that do not update wont diff --git a/sci-misc/boinc/boinc-6.12.26-r1.ebuild b/sci-misc/boinc/boinc-6.12.33.ebuild index 0666ac048005..933ba84e9453 100644 --- a/sci-misc/boinc/boinc-6.12.26-r1.ebuild +++ b/sci-misc/boinc/boinc-6.12.33.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/boinc-6.12.26-r1.ebuild,v 1.2 2011/05/27 06:32:04 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/boinc-6.12.33.ebuild,v 1.1 2011/07/11 21:15:22 scarabeus Exp $ EAPI=4 -inherit flag-o-matic depend.apache eutils wxwidgets autotools autotools-utils +inherit flag-o-matic eutils wxwidgets autotools base DESCRIPTION="The Berkeley Open Infrastructure for Network Computing" HOMEPAGE="http://boinc.ssl.berkeley.edu/" @@ -44,8 +44,8 @@ DEPEND="${RDEPEND} " PATCHES=( - "${FILESDIR}/${PV}-fix_subdirs.patch" - "${FILESDIR}/${PV}-libnotify-0.7.patch" + "${FILESDIR}/6.12.26-fix_subdirs.patch" + "${FILESDIR}/6.12.26-libnotify-0.7.patch" ) AUTOTOOLS_IN_SOURCE_BUILD=1 @@ -53,12 +53,12 @@ AUTOTOOLS_IN_SOURCE_BUILD=1 src_prepare() { # use system ssl certificates mkdir "${S}"/curl - cp /etc/ssl/certs/ca-certificates.crt "${S}"/curl/ca-bundle.crt + ln -s /etc/ssl/certs/ca-certificates.crt "${S}"/curl/ca-bundle.crt # prevent bad changes in compile flags, bug 286701 sed -i -e "s:BOINC_SET_COMPILE_FLAGS::" configure.ac || die "sed failed" - autotools-utils_src_prepare + base_src_prepare eautoreconf } @@ -66,8 +66,6 @@ src_prepare() { src_configure() { local wxconf="" - # define preferable CFLAGS (recommended by upstream) - append-flags -O3 -funroll-loops -fforce-addr -ffast-math # add gtk includes append-flags "$(pkg-config --cflags gtk+-2.0)" @@ -80,23 +78,21 @@ src_configure() { wxconf+=" --without-wxdir" fi - myeconfargs=( - --disable-server - --enable-client - --enable-dynamic-client-linkage - --disable-static - --enable-unicode - --with-ssl - $(use_with X x) - $(use_enable X manager) + econf \ + --disable-server \ + --enable-client \ + --enable-dynamic-client-linkage \ + --disable-static \ + --enable-unicode \ + --with-ssl \ + $(use_with X x) \ + $(use_enable X manager) \ ${wxconf} - ) - autotools-utils_src_configure } src_install() { - autotools-utils_src_install - remove_libtool_files all + default + find "${ED}" -name '*.la' -exec rm -f {} + dodir /var/lib/${PN}/ keepdir /var/lib/${PN}/ |