diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-06-16 23:00:12 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-06-16 23:00:12 +0000 |
commit | 4b2d2f9a611f95f9f378e0dcb18c14ce5d5a2db5 (patch) | |
tree | cf121e8c7b3ce6c787c868ff25b259fea3956fc5 /sys-boot | |
parent | stabilize (diff) | |
download | historical-4b2d2f9a611f95f9f378e0dcb18c14ce5d5a2db5.tar.gz historical-4b2d2f9a611f95f9f378e0dcb18c14ce5d5a2db5.tar.bz2 historical-4b2d2f9a611f95f9f378e0dcb18c14ce5d5a2db5.zip |
Version bump #96260 by Jesse Adelman.
Package-Manager: portage-2.0.51.22-r1
Diffstat (limited to 'sys-boot')
-rw-r--r-- | sys-boot/syslinux/ChangeLog | 10 | ||||
-rw-r--r-- | sys-boot/syslinux/Manifest | 5 | ||||
-rw-r--r-- | sys-boot/syslinux/files/digest-syslinux-3.08 | 1 | ||||
-rw-r--r-- | sys-boot/syslinux/files/syslinux-3.08-nossp.patch | 172 | ||||
-rw-r--r-- | sys-boot/syslinux/syslinux-3.08.ebuild | 39 |
5 files changed, 224 insertions, 3 deletions
diff --git a/sys-boot/syslinux/ChangeLog b/sys-boot/syslinux/ChangeLog index 5b6e47be697f..3445e5e23306 100644 --- a/sys-boot/syslinux/ChangeLog +++ b/sys-boot/syslinux/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-boot/syslinux -# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/syslinux/ChangeLog,v 1.15 2005/01/25 23:53:42 solar Exp $ +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/syslinux/ChangeLog,v 1.16 2005/06/16 23:00:12 vapier Exp $ + +*syslinux-3.08 (16 Jun 2005) + + 16 Jun 2005; Mike Frysinger <vapier@gentoo.org> + +files/syslinux-3.08-nossp.patch, +syslinux-3.08.ebuild: + Version bump #96260 by Jesse Adelman. 25 Jan 2005; <solar@gentoo.org> +files/syslinux-3.07-nossp.patch, syslinux-3.07.ebuild: diff --git a/sys-boot/syslinux/Manifest b/sys-boot/syslinux/Manifest index 2d346bd5d575..3fdf0a9591b7 100644 --- a/sys-boot/syslinux/Manifest +++ b/sys-boot/syslinux/Manifest @@ -1,9 +1,12 @@ -MD5 402151bc85d7925c0b447a9dc0226a9e ChangeLog 3655 +MD5 cbcfdc5e154315bd92cfca900dc94379 ChangeLog 3836 MD5 9a09f8d531c582e78977dbfd96edc1f2 metadata.xml 164 MD5 87356b71e2805dafa9e2b0ff5bb21059 syslinux-2.13.ebuild 942 +MD5 d295c4546572da85473a7329e18925c0 syslinux-3.08.ebuild 1042 MD5 3a4f99082ffcdeeee54d16c334378b82 syslinux-3.07.ebuild 1040 MD5 fad406869474fc3a7cfde4203eb896fe syslinux-1.76.ebuild 760 MD5 26489361fe682baf353e4b7cef7bba16 files/digest-syslinux-1.76 65 MD5 d44d8f9a65b91ec75463ccc8dd60cee3 files/digest-syslinux-2.13 66 +MD5 cc878dcb078a17ba92b06e6dffb1b56f files/digest-syslinux-3.08 67 MD5 55cac8782710921227939964ce2fc373 files/digest-syslinux-3.07 67 MD5 90200c4b3f861abb39c0e6f7c132aad6 files/syslinux-3.07-nossp.patch 9251 +MD5 e9158a5fd6994f2109942545e8104e40 files/syslinux-3.08-nossp.patch 7141 diff --git a/sys-boot/syslinux/files/digest-syslinux-3.08 b/sys-boot/syslinux/files/digest-syslinux-3.08 new file mode 100644 index 000000000000..89bb156a09d1 --- /dev/null +++ b/sys-boot/syslinux/files/digest-syslinux-3.08 @@ -0,0 +1 @@ +MD5 08e6285aa47d382b36bfd92c64a46437 syslinux-3.08.tar.bz2 1187698 diff --git a/sys-boot/syslinux/files/syslinux-3.08-nossp.patch b/sys-boot/syslinux/files/syslinux-3.08-nossp.patch new file mode 100644 index 000000000000..ad8e1ac6700c --- /dev/null +++ b/sys-boot/syslinux/files/syslinux-3.08-nossp.patch @@ -0,0 +1,172 @@ +--- syslinux/Makefile ++++ syslinux/Makefile +@@ -18,7 +18,7 @@ + OSTYPE = $(shell uname -msr) + CC = gcc + INCLUDE = +-CFLAGS = -W -Wall -Os -fomit-frame-pointer -D_FILE_OFFSET_BITS=64 ++CFLAGS = -W -Wall -fno-stack-protector -Os -fomit-frame-pointer -D_FILE_OFFSET_BITS=64 + PIC = -fPIC + LDFLAGS = -O2 -s + AR = ar +@@ -191,9 +191,8 @@ libsyslinux.a: bootsect_bin.o ldlinux_bi + $(LIB_SO): bootsect_bin.o ldlinux_bin.o syslxmod.o + $(CC) $(LDFLAGS) -shared -Wl,-soname,$(LIB_SONAME) -o $@ $^ + +-gethostip.o: gethostip.c +- +-gethostip: gethostip.o ++gethostip: gethostip.c ++ $(CC) $(LDFLAGS) gethostip.c -o gethostip -fno-stack-protector + + mkdiskimage: mkdiskimage.in mbr.bin bin2hex.pl + $(PERL) bin2hex.pl < mbr.bin | cat mkdiskimage.in - > $@ +--- syslinux/com32/lib/MCONFIG ++++ syslinux/com32/lib/MCONFIG +@@ -18,7 +18,7 @@ LIBFLAGS = -DDYNAMIC_CRC_TABLE -DPNG_NO_ + + REQFLAGS = -g -m32 -mregparm=3 -DREGPARM=3 -D__COM32__ -I. -I./sys -I../include + OPTFLAGS = -Os -march=i386 -falign-functions=0 -falign-jumps=0 \ +- -falign-labels=0 ++ -falign-labels=0 -fno-stack-protector + WARNFLAGS = -W -Wall -Wpointer-arith -Wwrite-strings -Wstrict-prototypes -Winline + + CFLAGS = -Wp,-MT,$@,-MD,$(dir $@).$(notdir $@).d $(OPTFLAGS) \ +--- syslinux/com32/libutil/Makefile ++++ syslinux/com32/libutil/Makefile +@@ -40,10 +40,10 @@ LD = ld -m elf_i386 + AR = ar + NASM = nasm + RANLIB = ranlib +-CFLAGS = $(M32) -mregparm=3 -DREGPARM=3 -D__COM32__ -W -Wall -march=i386 -Os -fomit-frame-pointer -I./include -I../include ++CFLAGS = $(M32) -mregparm=3 -DREGPARM=3 -D__COM32__ -W -Wall -fno-stack-protector -march=i386 -Os -fomit-frame-pointer -I./include -I../include + SFLAGS = $(M32) -D__COM32__ -march=i386 + LDFLAGS = -T ../lib/com32.ld +-LNXCFLAGS = -I./include -W -Wall -O -g ++LNXCFLAGS = -I./include -W -Wall -fno-stack-protector -O -g + LNXSFLAGS = -g + LNXLDFLAGS = -g + OBJCOPY = objcopy +--- syslinux/com32/modules/Makefile ++++ syslinux/com32/modules/Makefile +@@ -25,8 +25,8 @@ LD = ld -m elf_i386 + AR = ar + NASM = nasm + RANLIB = ranlib +-CFLAGS = $(M32) -mregparm=3 -DREGPARM=3 -W -Wall -march=i386 -Os -fomit-frame-pointer -I../libutil/include -I../include -D__COM32__ +-LNXCFLAGS = -W -Wall -O -g -I../libutil/include ++CFLAGS = $(M32) -mregparm=3 -DREGPARM=3 -W -Wall -fno-stack-protector -march=i386 -Os -fomit-frame-pointer -I../libutil/include -I../include -D__COM32__ ++LNXCFLAGS = -W -Wall -fno-stack-protector -O -g -I../libutil/include + LNXSFLAGS = -g + LNXLDFLAGS = -g + SFLAGS = -D__COM32__ -march=i386 +--- syslinux/com32/samples/Makefile ++++ syslinux/com32/samples/Makefile +@@ -25,8 +25,8 @@ LD = ld -m elf_i386 + AR = ar + NASM = nasm + RANLIB = ranlib +-CFLAGS = $(M32) -mregparm=3 -DREGPARM=3 -W -Wall -march=i386 -Os -fomit-frame-pointer -I../libutil/include -I../include -D__COM32__ +-LNXCFLAGS = -W -Wall -O -g -I../libutil/include ++CFLAGS = $(M32) -mregparm=3 -DREGPARM=3 -W -Wall -fno-stack-protector -march=i386 -Os -fomit-frame-pointer -I../libutil/include -I../include -D__COM32__ ++LNXCFLAGS = -W -Wall -fno-stack-protector -O -g -I../libutil/include + LNXSFLAGS = -g + LNXLDFLAGS = -g + SFLAGS = -D__COM32__ -march=i386 +--- syslinux/dos/Makefile ++++ syslinux/dos/Makefile +@@ -3,7 +3,7 @@ LD = ld -m elf_i386 + OBJCOPY = objcopy + OPTFLAGS = -g -Os -march=i386 -falign-functions=0 -falign-jumps=0 -falign-loops=0 -fomit-frame-pointer + INCLUDES = -include code16.h -I. -I.. -I../libfat +-CFLAGS = -W -Wall -ffreestanding -msoft-float $(OPTFLAGS) $(INCLUDES) ++CFLAGS = -W -Wall -fno-stack-protector -ffreestanding -msoft-float $(OPTFLAGS) $(INCLUDES) + LDFLAGS = -T com16.ld + AR = ar + RANLIB = ranlib +--- syslinux/extlinux/Makefile ++++ syslinux/extlinux/Makefile +@@ -1,7 +1,7 @@ + CC = gcc + OPTFLAGS = -g -Os + INCLUDES = -I. -I.. -I../libfat +-CFLAGS = -W -Wall -Wno-sign-compare -D_FILE_OFFSET_BITS=64 $(OPTFLAGS) $(INCLUDES) ++CFLAGS = -W -Wall -fno-stack-protector -Wno-sign-compare -D_FILE_OFFSET_BITS=64 $(OPTFLAGS) $(INCLUDES) + LDFLAGS = -s + + SRCS = extlinux.c ../extlinux_bss_bin.c ../extlinux_sys_bin.c +--- syslinux/memdisk/Makefile ++++ syslinux/memdisk/Makefile +@@ -20,7 +20,7 @@ M32 := $(call gcc_ok,-m32,) + ALIGN := $(call gcc_ok,-falign-functions=0 -falign-jumps=0 -falign-loops=0,-malign-functions=0 -malign-jumps=0 -malign-loops=0) + + CC = gcc $(M32) +-CFLAGS = -g -W -Wall -Wno-sign-compare \ ++CFLAGS = -g -W -Wall -fno-stack-protector -Wno-sign-compare \ + -Os -fomit-frame-pointer -march=i386 $(ALIGN) \ + -DVERSION='"$(VERSION)"' -DDATE='"$(DATE)"' + LDFLAGS = -g +--- syslinux/menu/Makefile ++++ syslinux/menu/Makefile +@@ -5,7 +5,7 @@ M32 := $(call gcc_ok,-m32,) + COM32DIR = ../com32 + LUDIR = $(COM32DIR)/libutil + LDIR = $(COM32DIR)/lib +-CFLAGS = $(M32) -mregparm=3 -DREGPARM=3 -W -Wall -march=i386 -Os -fomit-frame-pointer -I$(LUDIR)/include -I$(COM32DIR)/include -Ilibmenu -D__COM32__ ++CFLAGS = $(M32) -mregparm=3 -DREGPARM=3 -W -Wall -march=i386 -Os -fomit-frame-pointer -I$(LUDIR)/include -I$(COM32DIR)/include -Ilibmenu -D__COM32__ -fno-stack-protector + SFLAGS = -D__COM32__ -march=i386 + LDFLAGS = -T $(LDIR)/com32.ld + OBJCOPY = objcopy +--- syslinux/mtools/Makefile ++++ syslinux/mtools/Makefile +@@ -1,7 +1,7 @@ + CC = gcc + OPTFLAGS = -g -Os + INCLUDES = -I. -I.. -I../libfat +-CFLAGS = -W -Wall -D_FILE_OFFSET_BITS=64 $(OPTFLAGS) $(INCLUDES) ++CFLAGS = -W -Wall -fno-stack-protector -D_FILE_OFFSET_BITS=64 $(OPTFLAGS) $(INCLUDES) + LDFLAGS = -s + + SRCS = syslinux.c ../syslxmod.c ../bootsect_bin.c ../ldlinux_bin.c $(wildcard ../libfat/*.c) +--- syslinux/sample/Makefile ++++ syslinux/sample/Makefile +@@ -25,7 +25,7 @@ LD = ld -m elf_i386 + AR = ar + NASM = nasm + RANLIB = ranlib +-CFLAGS = -W -Wall -march=i386 -Os -fomit-frame-pointer -I../com32/include ++CFLAGS = -W -Wall -fno-stack-protector -march=i386 -Os -fomit-frame-pointer -I../com32/include + SFLAGS = -march=i386 + LDFLAGS = -s + OBJCOPY = objcopy +--- syslinux/unix/Makefile ++++ syslinux/unix/Makefile +@@ -1,7 +1,7 @@ + CC = gcc + OPTFLAGS = -g -Os + INCLUDES = -I. -I.. -I../libfat +-CFLAGS = -W -Wall -D_FILE_OFFSET_BITS=64 $(OPTFLAGS) $(INCLUDES) ++CFLAGS = -W -Wall -fno-stack-protector -D_FILE_OFFSET_BITS=64 $(OPTFLAGS) $(INCLUDES) + LDFLAGS = -s + + SRCS = syslinux.c ../syslxmod.c ../bootsect_bin.c ../ldlinux_bin.c $(wildcard ../libfat/*.c) +--- syslinux/win32/Makefile ++++ syslinux/win32/Makefile +@@ -23,7 +23,7 @@ ifeq ($(findstring CYGWIN,$(OSTYPE)),CYG + CC = gcc + AR = ar + RANLIB = ranlib +-CFLAGS = -mno-cygwin -W -Wall -Os -fomit-frame-pointer -D_FILE_OFFSET_BITS=64 ++CFLAGS = -mno-cygwin -W -Wall -fno-stack-protector -Os -fomit-frame-pointer -D_FILE_OFFSET_BITS=64 + PIC = + LDFLAGS = -mno-cygwin -Os -s + else +@@ -37,7 +37,7 @@ AR = mingw-ar + RANLIB = mingw-ranlib + endif + +-CFLAGS = -W -Wall -Wno-sign-compare -Os -fomit-frame-pointer -D_FILE_OFFSET_BITS=64 ++CFLAGS = -W -Wall -fno-stack-protector -Wno-sign-compare -Os -fomit-frame-pointer -D_FILE_OFFSET_BITS=64 + PIC = + LDFLAGS = -Os -s + endif diff --git a/sys-boot/syslinux/syslinux-3.08.ebuild b/sys-boot/syslinux/syslinux-3.08.ebuild new file mode 100644 index 000000000000..56d569684bdd --- /dev/null +++ b/sys-boot/syslinux/syslinux-3.08.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/syslinux/syslinux-3.08.ebuild,v 1.1 2005/06/16 23:00:12 vapier Exp $ + +inherit eutils + +DESCRIPTION="SysLinux, IsoLinux and PXELinux bootloader" +HOMEPAGE="http://syslinux.zytor.com/" +SRC_URI="mirror://kernel/linux/utils/boot/syslinux/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="-* ~amd64 ~x86" +IUSE="" + +RDEPEND="sys-fs/mtools" +DEPEND="${RDEPEND} + dev-lang/nasm" + +# This ebuild is a departure from the old way of rebuilding everything in syslinux +# This departure is necessary since hpa doesn't support the rebuilding of anything other +# than the installers. + +# removed all the unpack/patching stuff since we aren't rebuilding the core stuff anymore + +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/syslinux-3.08-nossp.patch +} + +src_compile() { + emake installer || die +} + +src_install() { + make INSTALLROOT="${D}" install || die + dodoc README NEWS TODO *.doc memdisk/memdisk.doc +} |