diff options
author | Thomas Beierlein <tomjbe@gentoo.org> | 2013-10-17 18:26:26 +0000 |
---|---|---|
committer | Thomas Beierlein <tomjbe@gentoo.org> | 2013-10-17 18:26:26 +0000 |
commit | ebc33cef105051ca5b62176b61e55aa6aa82b1c4 (patch) | |
tree | 56e3781d40f0d6acb20390cc8f4b39a0aaddc012 /sci-electronics/gwave | |
parent | Raise sys-apps/kmod requirement from 14 to 15 as per http://cgit.freedesktop.... (diff) | |
download | gentoo-2-ebc33cef105051ca5b62176b61e55aa6aa82b1c4.tar.gz gentoo-2-ebc33cef105051ca5b62176b61e55aa6aa82b1c4.tar.bz2 gentoo-2-ebc33cef105051ca5b62176b61e55aa6aa82b1c4.zip |
Fix missing -lX11 (bug #487934). Thanks M. Rowell for reporting
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0x762053D5)
Diffstat (limited to 'sci-electronics/gwave')
-rw-r--r-- | sci-electronics/gwave/ChangeLog | 5 | ||||
-rw-r--r-- | sci-electronics/gwave/gwave-20090213-r1.ebuild | 11 |
2 files changed, 10 insertions, 6 deletions
diff --git a/sci-electronics/gwave/ChangeLog b/sci-electronics/gwave/ChangeLog index cfea13db1463..85ef9cf7fe36 100644 --- a/sci-electronics/gwave/ChangeLog +++ b/sci-electronics/gwave/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-electronics/gwave # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-electronics/gwave/ChangeLog,v 1.31 2013/03/12 08:36:06 tomjbe Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/gwave/ChangeLog,v 1.32 2013/10/17 18:26:26 tomjbe Exp $ + + 17 Oct 2013; Thomas Beierlein <tomjbe@gentoo.org> gwave-20090213-r1.ebuild: + Fix missing -lX11 (bug #487934). Thanks M. Rowell for reporting 12 Mar 2013; Thomas Beierlein <tomjbe@gentoo.org> gwave-20090213-r1.ebuild: Fix Homepage diff --git a/sci-electronics/gwave/gwave-20090213-r1.ebuild b/sci-electronics/gwave/gwave-20090213-r1.ebuild index 4baf6e271c73..f14e977c7914 100644 --- a/sci-electronics/gwave/gwave-20090213-r1.ebuild +++ b/sci-electronics/gwave/gwave-20090213-r1.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-electronics/gwave/gwave-20090213-r1.ebuild,v 1.5 2013/03/12 08:36:06 tomjbe Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/gwave/gwave-20090213-r1.ebuild,v 1.6 2013/10/17 18:26:26 tomjbe Exp $ -EAPI="2" +EAPI="5" -inherit autotools eutils fdo-mime gnome2-utils +inherit autotools eutils flag-o-matic fdo-mime gnome2-utils MY_PN="gwave2" MY_P="${MY_PN}-${PV}" @@ -29,13 +29,14 @@ RDEPEND="${DEPEND} S="${WORKDIR}/${MY_P}" src_prepare() { + append-libs -lX11 epatch "${FILESDIR}"/${P}-as-needed.patch eautoreconf } src_install() { - emake DESTDIR="${D}" install || die "Installation failed" - dodoc AUTHORS NEWS README TODO || die "Installation of documentation failed" + emake DESTDIR="${D}" install + nonfatal dodoc AUTHORS NEWS README TODO newicon icons/wave-drag-ok.xpm gwave.xpm make_desktop_entry gwave "Gwave" gwave "Electronics" } |