diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /net-misc/mknbi | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'net-misc/mknbi')
-rw-r--r-- | net-misc/mknbi/Manifest | 1 | ||||
-rw-r--r-- | net-misc/mknbi/files/mknbi-1.4.3-nossp.patch | 11 | ||||
-rw-r--r-- | net-misc/mknbi/files/mknbi-1.4.4-gcc4.patch | 27 | ||||
-rw-r--r-- | net-misc/mknbi/metadata.xml | 10 | ||||
-rw-r--r-- | net-misc/mknbi/mknbi-1.4.4.ebuild | 55 |
5 files changed, 104 insertions, 0 deletions
diff --git a/net-misc/mknbi/Manifest b/net-misc/mknbi/Manifest new file mode 100644 index 000000000000..add2ec8af1a8 --- /dev/null +++ b/net-misc/mknbi/Manifest @@ -0,0 +1 @@ +DIST mknbi-1.4.4.tar.gz 212454 SHA256 e5c62131a79cebf31234af252975d4c242ed8face0249f11a5772aeff50e3f02 diff --git a/net-misc/mknbi/files/mknbi-1.4.3-nossp.patch b/net-misc/mknbi/files/mknbi-1.4.3-nossp.patch new file mode 100644 index 000000000000..71289a336c4c --- /dev/null +++ b/net-misc/mknbi/files/mknbi-1.4.3-nossp.patch @@ -0,0 +1,11 @@ +--- Makefile.orig 2005-04-17 10:50:53.000000000 -0400 ++++ Makefile 2005-04-17 10:51:17.000000000 -0400 +@@ -18,7 +18,7 @@ + FIRSTRELOCS= 0x92800 0x82800 + OLDGAS:= $(shell $(AS) --version | grep -q '2\.9\.1' && echo -DGAS291) + CFLAGS= -I. -Os -ffreestanding -fstrength-reduce -fomit-frame-pointer \ +- -mcpu=i386 \ ++ -mcpu=i386 -fno-stack-protector -fno-stack-protector-all -fno-pie \ + -Wall -W -Wno-format -Wno-unused -DVERSION=\"$(VERSION)$(EXTRAVERSION)\" + LDBINARYFLAG= --oformat binary + FIRST32SIZE= 6144 diff --git a/net-misc/mknbi/files/mknbi-1.4.4-gcc4.patch b/net-misc/mknbi/files/mknbi-1.4.4-gcc4.patch new file mode 100644 index 000000000000..5c7c58386653 --- /dev/null +++ b/net-misc/mknbi/files/mknbi-1.4.4-gcc4.patch @@ -0,0 +1,27 @@ +diff -ruN mknbi-1.4.4/nfl.c mknbi-1.4.4.thor/nfl.c +--- mknbi-1.4.4/nfl.c 2003-09-22 16:47:08.000000000 +0200 ++++ mknbi-1.4.4.thor/nfl.c 2006-05-19 13:36:42.000000000 +0200 +@@ -666,7 +666,7 @@ + if (bhdr->b_signature != ELF_BHDR_MAGIC) { + return; + } +- ++ /* probably breaks nothing, but why declare unsigned char and make cast to (signed) char??? */ + note = ((char *)bhdr) + sizeof(*bhdr); + end = ((char *)bhdr) + bhdr->b_size; + while (note < end) { +diff -ruN mknbi-1.4.4/nfl.h mknbi-1.4.4.thor/nfl.h +--- mknbi-1.4.4/nfl.h 2003-01-12 09:39:03.000000000 +0100 ++++ mknbi-1.4.4.thor/nfl.h 2006-05-19 13:36:42.000000000 +0200 +@@ -182,7 +182,10 @@ + extern int auto_fill; + + /* This variable specifies which console should be used. */ +-extern int terminal; ++/* Decide if you want static _or_ external! ++ gcc-4 finally starts complaining about this nonsense. ++ (plus: no file besides nfl.c uses this header anyway...) ++extern int terminal; */ + + #define TERMINAL_CONSOLE (1 << 0) /* keyboard and screen */ + #define TERMINAL_SERIAL (1 << 1) /* serial console */ diff --git a/net-misc/mknbi/metadata.xml b/net-misc/mknbi/metadata.xml new file mode 100644 index 000000000000..adc9ebf47c78 --- /dev/null +++ b/net-misc/mknbi/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>maintainer-needed@gentoo.org</email> + </maintainer> + <upstream> + <remote-id type="sourceforge">etherboot</remote-id> + </upstream> +</pkgmetadata> diff --git a/net-misc/mknbi/mknbi-1.4.4.ebuild b/net-misc/mknbi/mknbi-1.4.4.ebuild new file mode 100644 index 000000000000..254135a50433 --- /dev/null +++ b/net-misc/mknbi/mknbi-1.4.4.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +inherit toolchain-funcs eutils + +DESCRIPTION="Utility for making tagged kernel images useful for netbooting" +SRC_URI="mirror://sourceforge/etherboot/${P}.tar.gz" +RESTRICT="mirror" +HOMEPAGE="http://etherboot.sourceforge.net" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" +IUSE="" + +RDEPEND=">=dev-lang/perl-5.6.1 + !sys-boot/netboot" +DEPEND="${RDEPEND} + dev-lang/nasm" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch \ + "${FILESDIR}"/mknbi-1.4.3-nossp.patch \ + "${FILESDIR}"/${P}-gcc4.patch + + sed -i \ + -e "s:\/usr\/local:\/usr:" \ + -e "s:COPYING::" \ + -e "s:\-mcpu:\-march:" Makefile \ + || die "sed failed" + sed -r /^DOCDIR/s:packages/.*:${PF}: -i Makefile || die "sed failed" + + #apply modifications to CFLAGS to fix for gcc 3.4: bug #64049 + if [ "`gcc-major-version`" -ge "3" -a "`gcc-minor-version`" -ge "4" ] + then + sed -i \ + -e 's:\-mcpu:\-mtune:' \ + -e 's:CFLAGS=:CFLAGS= -minline-all-stringops:' Makefile \ + || die "sed failed" + fi + if [ "`gcc-major-version`" = "4" ]; then + sed -i \ + -e 's:\-fno-stack-protector-all::' Makefile \ + || die "sed failed" + fi +} + +src_install() { + export BUILD_ROOT="${D}" + emake DESTDIR="${D}" install || die "emake failed" + prepalldocs +} |