Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/netboot/
Date: Fri, 28 Aug 2020 21:14:28
Message-Id: 1598649225.26d37bd118af3f519139a8daa24842f479d1a51b.conikost@gentoo
1 commit: 26d37bd118af3f519139a8daa24842f479d1a51b
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 28 21:13:45 2020 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 28 21:13:45 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26d37bd1
7
8 sys-boot/netboot: drop old version
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
12
13 sys-boot/netboot/netboot-0.10.2-r1.ebuild | 74 -------------------------------
14 1 file changed, 74 deletions(-)
15
16 diff --git a/sys-boot/netboot/netboot-0.10.2-r1.ebuild b/sys-boot/netboot/netboot-0.10.2-r1.ebuild
17 deleted file mode 100644
18 index 64a626b5546..00000000000
19 --- a/sys-boot/netboot/netboot-0.10.2-r1.ebuild
20 +++ /dev/null
21 @@ -1,74 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -inherit toolchain-funcs
28 -
29 -DESCRIPTION="Allows to remote boot a computer over an IP network"
30 -HOMEPAGE="http://netboot.sourceforge.net/"
31 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
32 -
33 -LICENSE="GPL-2+"
34 -SLOT="0"
35 -KEYWORDS="~amd64 ~x86"
36 -IUSE="berkdb +bootrom +lzo odbc static-libs"
37 -
38 -DEPEND="
39 - berkdb? ( sys-libs/db:= )
40 - lzo? ( dev-libs/lzo:2= )
41 - odbc? ( dev-db/unixODBC:= )
42 -"
43 -
44 -RDEPEND="${DEPEND}"
45 -
46 -src_prepare() {
47 - default
48 -
49 - # Respect users LDFLAGS
50 - eapply "${FILESDIR}"/"${P}"-ldflags.patch
51 -
52 - # Don't install support binaries into libdir
53 - sed -e "152s:nblibdir:bindir:" -e "153s:nblibdir:bindir:" -i misc/Makefile || die
54 -
55 - # Don't install perl script into libdir
56 - sed -e 's/nblibdir/nbmiscdir/g' -i mknbi-dos/utils/Makefile || die
57 -
58 - # Don't install vim syntax file, as it will be installed manually
59 - sed -e '/mgl.vim/d' -i mknbi-mgl/Makefile || die
60 -}
61 -
62 -src_configure() {
63 - local myeconfargs=(
64 - --datadir="/usr/share/netboot"
65 - $(use_with berkdb berkeley-db)
66 - $(use_enable bootrom)
67 - $(use_with lzo)
68 - $(use_with odbc)
69 - $(use_enable static-libs static)
70 - --with-gnu-as86="$(tc-getAS)"
71 - --with-gnu-cc86="$(tc-getCC)"
72 - --with-gnu-ld86="$(tc-getLD)"
73 - )
74 -
75 - econf "${myeconfargs[@]}"
76 -}
77 -
78 -src_compile() {
79 - # mknbi fails with parallel build
80 - emake -j1
81 -}
82 -
83 -src_install() {
84 - emake DESTDIR="${ED}" install
85 -
86 - insinto /usr/share/vim/vimfiles/syntax
87 - doins "${S}"/mknbi-mgl/misc/mgl.vim
88 -
89 - dodoc README doc/{HISTORY,PROBLEMS,README.*,Spec.doc}
90 -
91 - docinto flashcard
92 - dodoc FlashCard/README FlashCard/*.ps
93 -
94 - find "${D}" -name '*.la' -type f -delete || die
95 -}