Gentoo Archives: gentoo-commits

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