Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/netkit-timed: ChangeLog netkit-timed-0.17-r9.ebuild
Date: Thu, 26 Aug 2010 20:56:27
Message-Id: 20100826205623.76FCF20051@flycatcher.gentoo.org
1 jer 10/08/26 20:56:23
2
3 Modified: ChangeLog
4 Added: netkit-timed-0.17-r9.ebuild
5 Log:
6 Respect CC. Respect LDFLAGS (bug #334633).
7
8 (Portage version: 2.2_rc69/cvs/Linux i686)
9
10 Revision Changes Path
11 1.23 net-misc/netkit-timed/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/netkit-timed/ChangeLog?rev=1.23&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/netkit-timed/ChangeLog?rev=1.23&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/netkit-timed/ChangeLog?r1=1.22&r2=1.23
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-misc/netkit-timed/ChangeLog,v
20 retrieving revision 1.22
21 retrieving revision 1.23
22 diff -u -r1.22 -r1.23
23 --- ChangeLog 23 Sep 2009 19:40:57 -0000 1.22
24 +++ ChangeLog 26 Aug 2010 20:56:23 -0000 1.23
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-misc/netkit-timed
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-misc/netkit-timed/ChangeLog,v 1.22 2009/09/23 19:40:57 patrick Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-misc/netkit-timed/ChangeLog,v 1.23 2010/08/26 20:56:23 jer Exp $
31 +
32 +*netkit-timed-0.17-r9 (26 Aug 2010)
33 +
34 + 26 Aug 2010; Jeroen Roovers <jer@g.o> +netkit-timed-0.17-r9.ebuild:
35 + Respect CC. Respect LDFLAGS (bug #334633).
36
37 23 Sep 2009; Patrick Lauer <patrick@g.o>
38 netkit-timed-0.17-r7.ebuild, netkit-timed-0.17-r8.ebuild:
39
40
41
42 1.1 net-misc/netkit-timed/netkit-timed-0.17-r9.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/netkit-timed/netkit-timed-0.17-r9.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/netkit-timed/netkit-timed-0.17-r9.ebuild?rev=1.1&content-type=text/plain
46
47 Index: netkit-timed-0.17-r9.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-misc/netkit-timed/netkit-timed-0.17-r9.ebuild,v 1.1 2010/08/26 20:56:23 jer Exp $
52
53 EAPI="2"
54
55 inherit eutils flag-o-matic toolchain-funcs
56
57 IUSE=""
58 DESCRIPTION="Netkit - timed"
59 SRC_URI="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/${P}.tar.gz"
60 HOMEPAGE="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/"
61 KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86"
62 LICENSE="BSD"
63 SLOT="0"
64
65 DEPEND=""
66
67 src_prepare() {
68 epatch ${FILESDIR}/0.17-CFLAG-DEF-fix.patch
69 epatch ${FILESDIR}/0.17-timed-opt-parsing.patch
70 sed -i configure \
71 -e '/^LDFLAGS=/d' \
72 || die "sed configure"
73 }
74
75 src_configure() {
76 # Note this is not an autoconf configure script. econf fails
77 append-flags -DCLK_TCK=CLOCKS_PER_SEC
78 ./configure --prefix=/usr --with-c-compiler=$(tc-getCC) || die "bad configure"
79 }
80
81 src_install() {
82 dosbin timed/timed/timed
83 doman timed/timed/timed.8
84 dosbin timed/timedc/timedc
85 doman timed/timedc/timedc.8
86 dodoc README ChangeLog BUGS
87
88 newinitd ${FILESDIR}/timed.rc6 timed
89 }