Gentoo Archives: gentoo-commits

From: Thomas Beierlein <tomjbe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-radio/cwdaemon/
Date: Tue, 29 Dec 2015 06:24:24
Message-Id: 1451370221.5a9f4b981051cfbb0f13922971722721184a4764.tomjbe@gentoo
1 commit: 5a9f4b981051cfbb0f13922971722721184a4764
2 Author: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 29 06:23:41 2015 +0000
4 Commit: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 29 06:23:41 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a9f4b98
7
8 media-radio/cwdaemon: Fix missing headers for gcc>=5 (bug #569970)
9
10 Thanks for reporting Toralf.
11
12 Package-Manager: portage-2.2.26
13
14 media-radio/cwdaemon/cwdaemon-0.10.2.ebuild | 8 ++++++++
15 1 file changed, 8 insertions(+)
16
17 diff --git a/media-radio/cwdaemon/cwdaemon-0.10.2.ebuild b/media-radio/cwdaemon/cwdaemon-0.10.2.ebuild
18 index bb0475b..c27eb1b 100644
19 --- a/media-radio/cwdaemon/cwdaemon-0.10.2.ebuild
20 +++ b/media-radio/cwdaemon/cwdaemon-0.10.2.ebuild
21 @@ -4,6 +4,8 @@
22
23 EAPI=5
24
25 +inherit flag-o-matic
26 +
27 DESCRIPTION="A morse daemon for the parallel or serial port"
28 HOMEPAGE="http://cwdaemon.sourceforge.net"
29 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
30 @@ -16,3 +18,9 @@ IUSE=""
31 RDEPEND=">=media-radio/unixcw-3.3.1"
32 DEPEND="$RDEPEND
33 virtual/pkgconfig"
34 +
35 +src_configure() {
36 + # provides header info for getaddrinfo() with C99 (bug 569970)
37 + append-cppflags -D_GNU_SOURCE
38 + econf
39 +}