diff options
author | 2009-06-05 02:34:49 +0000 | |
---|---|---|
committer | 2009-06-05 02:34:49 +0000 | |
commit | 0f857618bd730c87eb89e49bc25abec44367ac06 (patch) | |
tree | 82f3cfcb810201000967b25edcd5a68bb2e26980 /sci-geosciences/gpsd/gpsd-2.38.ebuild | |
parent | Version bump. Fix desktop file to not break Gnome and possibly other environm... (diff) | |
download | gentoo-2-0f857618bd730c87eb89e49bc25abec44367ac06.tar.gz gentoo-2-0f857618bd730c87eb89e49bc25abec44367ac06.tar.bz2 gentoo-2-0f857618bd730c87eb89e49bc25abec44367ac06.zip |
Added workarounds to address bugs #263645, #263880, and #267936.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'sci-geosciences/gpsd/gpsd-2.38.ebuild')
-rw-r--r-- | sci-geosciences/gpsd/gpsd-2.38.ebuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sci-geosciences/gpsd/gpsd-2.38.ebuild b/sci-geosciences/gpsd/gpsd-2.38.ebuild index c1b63d12e548..7cb06580c54a 100644 --- a/sci-geosciences/gpsd/gpsd-2.38.ebuild +++ b/sci-geosciences/gpsd/gpsd-2.38.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-geosciences/gpsd/gpsd-2.38.ebuild,v 1.2 2009/04/18 02:15:28 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gpsd/gpsd-2.38.ebuild,v 1.3 2009/06/05 02:34:37 nerdboy Exp $ inherit autotools eutils distutils flag-o-matic @@ -99,13 +99,17 @@ src_compile() { # still needs an explicit linkage with the math lib (bug #250757) append-ldflags -Wl,-z,-defs -Wl,--no-undefined - emake || die "emake failed" + emake -j1 || die "emake failed" } src_install() { make DESTDIR="${D}" install || die "make install failed" + if ! test -x "${D}"usr/sbin/gpsd; then + ewarn "gpsd link error detected; please re-emerge gpsd." + fi + if use usb ; then insinto /etc/hotplug/usb doins gpsd.usermap |