Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-boot/netboot: netboot-0.10.2.ebuild ChangeLog
Date: Mon, 08 Feb 2010 23:57:08
Message-Id: E1NedTU-0007eZ-SL@stork.gentoo.org
1 jer 10/02/08 23:57:04
2
3 Modified: ChangeLog
4 Added: netboot-0.10.2.ebuild
5 Log:
6 Version bump, and work around parallel make issue, and respect LDFLAGS (bug #248408).
7 (Portage version: 2.2_rc62/cvs/Linux i686)
8
9 Revision Changes Path
10 1.7 sys-boot/netboot/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/netboot/ChangeLog?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/netboot/ChangeLog?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/netboot/ChangeLog?r1=1.6&r2=1.7
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-boot/netboot/ChangeLog,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- ChangeLog 13 Nov 2008 20:02:53 -0000 1.6
23 +++ ChangeLog 8 Feb 2010 23:57:04 -0000 1.7
24 @@ -1,6 +1,13 @@
25 # ChangeLog for sys-boot/netboot
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/netboot/ChangeLog,v 1.6 2008/11/13 20:02:53 bangert Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/netboot/ChangeLog,v 1.7 2010/02/08 23:57:04 jer Exp $
30 +
31 +*netboot-0.10.2 (08 Feb 2010)
32 +
33 + 08 Feb 2010; Jeroen Roovers <jer@g.o> +netboot-0.10.2.ebuild,
34 + +files/netboot-0.10.2-ldflags.patch:
35 + Version bump, and work around parallel make issue, and respect LDFLAGS
36 + (bug #248408).
37
38 13 Nov 2008; Thilo Bangert <bangert@g.o> metadata.xml:
39 remove superflous whitespace from maintainer
40
41
42
43 1.1 sys-boot/netboot/netboot-0.10.2.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/netboot/netboot-0.10.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/netboot/netboot-0.10.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: netboot-0.10.2.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/sys-boot/netboot/netboot-0.10.2.ebuild,v 1.1 2010/02/08 23:57:04 jer Exp $
53
54 EAPI="2"
55
56 inherit eutils toolchain-funcs
57
58 DESCRIPTION="netbooting utility"
59 HOMEPAGE="http://netboot.sourceforge.net/"
60 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~x86"
65 IUSE=""
66
67 DEPEND=">=dev-libs/lzo-2
68 >=sys-libs/db-4"
69 RDEPEND="${DEPEND}
70 !net-misc/mknbi"
71
72 src_prepare() {
73 cp -av make.config.in{,.org}
74 epatch "${FILESDIR}"/${P}-ldflags.patch
75 find "${S}" -name \*.lo -exec rm {} \;
76 }
77
78 src_configure() {
79 econf --enable-bootrom --with-gnu-cc86="$(tc-getCC)" \
80 --with-gnu-as86="$(tc-getAS)" --with-gnu-ld86="$(tc-getCC)"|| die 'cannot configure'
81 # --enable-config-file
82 }
83
84 src_compile() {
85 emake -j1 || die "emake failed"
86 }
87
88 src_install() {
89 emake DESTDIR="${D}" install || die
90 dodoc README doc/*
91 docinto FlashCard
92 dodoc FlashCard/README FlashCard/*.ps
93 mv "${D}"/usr/share/misc "${D}"/usr/share/${PN}
94 rm -rf "${D}"/usr/lib/netboot/utils
95
96 dodoc "${S}"/mknbi-dos/utils/mntnbi.pl
97
98 insinto /usr/share/vim/vimfiles/syntax
99 doins "${S}"/mknbi-mgl/misc/mgl.vim
100 }