diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2020-08-28 23:13:45 +0200 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2020-08-28 23:13:45 +0200 |
commit | 26d37bd118af3f519139a8daa24842f479d1a51b (patch) | |
tree | a0193263eeee42861b9935c05eea887a33df4ab0 /sys-boot | |
parent | sys-boot/netboot: fix compilation on x86 (diff) | |
download | gentoo-26d37bd118af3f519139a8daa24842f479d1a51b.tar.gz gentoo-26d37bd118af3f519139a8daa24842f479d1a51b.tar.bz2 gentoo-26d37bd118af3f519139a8daa24842f479d1a51b.zip |
sys-boot/netboot: drop old version
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'sys-boot')
-rw-r--r-- | sys-boot/netboot/netboot-0.10.2-r1.ebuild | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/sys-boot/netboot/netboot-0.10.2-r1.ebuild b/sys-boot/netboot/netboot-0.10.2-r1.ebuild deleted file mode 100644 index 64a626b55466..000000000000 --- a/sys-boot/netboot/netboot-0.10.2-r1.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="Allows to remote boot a computer over an IP network" -HOMEPAGE="http://netboot.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="berkdb +bootrom +lzo odbc static-libs" - -DEPEND=" - berkdb? ( sys-libs/db:= ) - lzo? ( dev-libs/lzo:2= ) - odbc? ( dev-db/unixODBC:= ) -" - -RDEPEND="${DEPEND}" - -src_prepare() { - default - - # Respect users LDFLAGS - eapply "${FILESDIR}"/"${P}"-ldflags.patch - - # Don't install support binaries into libdir - sed -e "152s:nblibdir:bindir:" -e "153s:nblibdir:bindir:" -i misc/Makefile || die - - # Don't install perl script into libdir - sed -e 's/nblibdir/nbmiscdir/g' -i mknbi-dos/utils/Makefile || die - - # Don't install vim syntax file, as it will be installed manually - sed -e '/mgl.vim/d' -i mknbi-mgl/Makefile || die -} - -src_configure() { - local myeconfargs=( - --datadir="/usr/share/netboot" - $(use_with berkdb berkeley-db) - $(use_enable bootrom) - $(use_with lzo) - $(use_with odbc) - $(use_enable static-libs static) - --with-gnu-as86="$(tc-getAS)" - --with-gnu-cc86="$(tc-getCC)" - --with-gnu-ld86="$(tc-getLD)" - ) - - econf "${myeconfargs[@]}" -} - -src_compile() { - # mknbi fails with parallel build - emake -j1 -} - -src_install() { - emake DESTDIR="${ED}" install - - insinto /usr/share/vim/vimfiles/syntax - doins "${S}"/mknbi-mgl/misc/mgl.vim - - dodoc README doc/{HISTORY,PROBLEMS,README.*,Spec.doc} - - docinto flashcard - dodoc FlashCard/README FlashCard/*.ps - - find "${D}" -name '*.la' -type f -delete || die -} |