diff options
author | Marcus D. Hanwell <cryos@gentoo.org> | 2005-12-11 21:23:28 +0000 |
---|---|---|
committer | Marcus D. Hanwell <cryos@gentoo.org> | 2005-12-11 21:23:28 +0000 |
commit | fb15d7d97a6f0fcb2933c36b6bafb564f3c63bcc (patch) | |
tree | 85c31e9a88f3ae30b404f501ccd4af76011874f3 /sci-misc/boinc | |
parent | 0.8.3 version bump. Updated HOMEPAGE and SRC_URI, added pyorbit to RDEPEND si... (diff) | |
download | gentoo-2-fb15d7d97a6f0fcb2933c36b6bafb564f3c63bcc.tar.gz gentoo-2-fb15d7d97a6f0fcb2933c36b6bafb564f3c63bcc.tar.bz2 gentoo-2-fb15d7d97a6f0fcb2933c36b6bafb564f3c63bcc.zip |
Added patch to allow linking on systems with older boinc versions installed.
(Portage version: 2.0.53)
Diffstat (limited to 'sci-misc/boinc')
-rw-r--r-- | sci-misc/boinc/ChangeLog | 6 | ||||
-rw-r--r-- | sci-misc/boinc/boinc-5.2.14.ebuild | 3 | ||||
-rw-r--r-- | sci-misc/boinc/files/08_all_Makefile.patch | 25 |
3 files changed, 32 insertions, 2 deletions
diff --git a/sci-misc/boinc/ChangeLog b/sci-misc/boinc/ChangeLog index 9b9aee34b38c..1e8cb04b652a 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.16 2005/12/05 18:34:10 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/ChangeLog,v 1.17 2005/12/11 21:23:28 cryos Exp $ + + 11 Dec 2005; Marcus D. Hanwell <cryos@gentoo.org> + +files/08_all_Makefile.patch, boinc-5.2.14.ebuild: + Added patch to allow linking on systems with older boinc versions installed. *boinc-5.2.14 (05 Dec 2005) diff --git a/sci-misc/boinc/boinc-5.2.14.ebuild b/sci-misc/boinc/boinc-5.2.14.ebuild index 8f9e84a392dd..0bd92ef5820e 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.1 2005/12/05 18:34:10 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/boinc-5.2.14.ebuild,v 1.2 2005/12/11 21:23:28 cryos Exp $ inherit eutils @@ -43,6 +43,7 @@ src_unpack() { # Applu patches, most of which from Debian EPATCH_SOURCE="${WORKDIR}/patches" EPATCH_SUFFIX="patch" epatch + epatch ${FILESDIR}/08_all_Makefile.patch # point to a proper mouse device sed -e "s:/dev/mouse:/dev/input/mice:g" -i client/hostinfo_unix.C || die diff --git a/sci-misc/boinc/files/08_all_Makefile.patch b/sci-misc/boinc/files/08_all_Makefile.patch new file mode 100644 index 000000000000..4968ed7bbaee --- /dev/null +++ b/sci-misc/boinc/files/08_all_Makefile.patch @@ -0,0 +1,25 @@ +# 08_all-Makefile.patches by Marcus D. Hanwell <cryos@gentoo.org> +# +# Link to ../lib with a higher precedence than /usr/lib - allows upgrades +--- client/Makefile.in 2005-12-05 01:28:26.000000000 +0000 ++++ client/Makefile.in 2005-12-11 21:00:07.000000000 +0000 +@@ -336,7 +336,7 @@ + + AM_CFLAGS = $(AM_CPPFLAGS) + AM_CXXFLAGS = $(AM_CPPFLAGS) +-AM_LDFLAGS = ++AM_LDFLAGS = -L../lib + + # dependencies to make sure libs gets compiled before + # programs linking to them: +--- clientgui/Makefile.in 2005-12-11 21:07:55.000000000 +0000 ++++ clientgui/Makefile.in 2005-12-11 21:07:29.000000000 +0000 +@@ -354,7 +354,7 @@ + + AM_CFLAGS = $(AM_CPPFLAGS) + AM_CXXFLAGS = $(AM_CPPFLAGS) +-AM_LDFLAGS = ++AM_LDFLAGS = -L../lib + + # dependencies to make sure libs gets compiled before + # programs linking to them: |