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/syslinux: ChangeLog syslinux-3.75.ebuild
Date: Wed, 29 Apr 2009 15:51:20
Message-Id: E1LzC46-0003PJ-3R@stork.gentoo.org
1 jer 09/04/29 15:51:18
2
3 Modified: ChangeLog
4 Added: syslinux-3.75.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc31/cvs/Linux i686)
8
9 Revision Changes Path
10 1.43 sys-boot/syslinux/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/syslinux/ChangeLog?rev=1.43&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/syslinux/ChangeLog?rev=1.43&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/syslinux/ChangeLog?r1=1.42&r2=1.43
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-boot/syslinux/ChangeLog,v
19 retrieving revision 1.42
20 retrieving revision 1.43
21 diff -u -r1.42 -r1.43
22 --- ChangeLog 21 Dec 2008 20:39:27 -0000 1.42
23 +++ ChangeLog 29 Apr 2009 15:51:18 -0000 1.43
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-boot/syslinux
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/syslinux/ChangeLog,v 1.42 2008/12/21 20:39:27 solar Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/syslinux/ChangeLog,v 1.43 2009/04/29 15:51:18 jer Exp $
30 +
31 +*syslinux-3.75 (29 Apr 2009)
32 +
33 + 29 Apr 2009; Jeroen Roovers <jer@g.o> +syslinux-3.75.ebuild:
34 + Version bump.
35
36 21 Dec 2008; <solar@g.o> files/syslinux-3.72-nopie.patch,
37 syslinux-3.72.ebuild:
38
39
40
41 1.1 sys-boot/syslinux/syslinux-3.75.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/syslinux/syslinux-3.75.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/syslinux/syslinux-3.75.ebuild?rev=1.1&content-type=text/plain
45
46 Index: syslinux-3.75.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-boot/syslinux/syslinux-3.75.ebuild,v 1.1 2009/04/29 15:51:18 jer Exp $
51
52 inherit eutils
53
54 DESCRIPTION="SysLinux, IsoLinux and PXELinux bootloader"
55 HOMEPAGE="http://syslinux.zytor.com/"
56 SRC_URI="mirror://kernel/linux/utils/boot/syslinux/${P}.tar.bz2"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="-* ~amd64 ~x86"
61 IUSE=""
62
63 RDEPEND="sys-fs/mtools
64 dev-perl/Crypt-PasswdMD5
65 dev-perl/Digest-SHA1"
66 DEPEND="${RDEPEND}
67 dev-lang/nasm"
68
69 # This ebuild is a departure from the old way of rebuilding everything in syslinux
70 # This departure is necessary since hpa doesn't support the rebuilding of anything other
71 # than the installers.
72
73 # removed all the unpack/patching stuff since we aren't rebuilding the core stuff anymore
74
75 src_unpack() {
76 unpack ${A}
77 cd "${S}"
78 epatch "${FILESDIR}"/${PN}-3.72-nopie.patch
79 # Don't prestrip, makes portage angry
80 epatch "${FILESDIR}"/${PN}-3.72-nostrip.patch
81
82 rm -f gethostip #bug 137081
83 }
84
85 src_compile() {
86 emake installer || die
87 }
88
89 src_install() {
90 emake INSTALLROOT="${D}" MANDIR=/usr/share/man local-install || die
91 dodoc README NEWS TODO doc/*
92 }