Gentoo Archives: gentoo-commits

From: "Joshua Kinard (kumba)" <kumba@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-boot/dvhtool: ChangeLog dvhtool-1.0.1-r2.ebuild dvhtool-1.0.1-r1.ebuild
Date: Sun, 01 Mar 2009 22:37:12
Message-Id: E1LduHW-0005IG-O0@stork.gentoo.org
1 kumba 09/03/01 22:37:10
2
3 Modified: ChangeLog
4 Added: dvhtool-1.0.1-r2.ebuild
5 Removed: dvhtool-1.0.1-r1.ebuild
6 Log:
7 Add two new patches from Debian, fix up some QA issues, and add ~amd64 to KEYWORDS.
8 (Portage version: 2.1.6.7/cvs/Linux mips64)
9
10 Revision Changes Path
11 1.11 sys-boot/dvhtool/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/dvhtool/ChangeLog?rev=1.11&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/dvhtool/ChangeLog?rev=1.11&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/dvhtool/ChangeLog?r1=1.10&r2=1.11
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-boot/dvhtool/ChangeLog,v
20 retrieving revision 1.10
21 retrieving revision 1.11
22 diff -u -r1.10 -r1.11
23 --- ChangeLog 27 Mar 2008 16:41:50 -0000 1.10
24 +++ ChangeLog 1 Mar 2009 22:37:10 -0000 1.11
25 @@ -1,6 +1,15 @@
26 # ChangeLog for sys-boot/dvhtool
27 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/dvhtool/ChangeLog,v 1.10 2008/03/27 16:41:50 armin76 Exp $
29 +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/dvhtool/ChangeLog,v 1.11 2009/03/01 22:37:10 kumba Exp $
31 +
32 +*dvhtool-1.0.1-r2 (01 Mar 2009)
33 +
34 + 01 Mar 2009; Joshua Kinard <kumba@g.o>
35 + +files/dvhtool-1.0.1-debian-warn_type_guess.diff,
36 + +files/dvhtool-1.0.1-debian-xopen_source.diff, -dvhtool-1.0.1-r1.ebuild,
37 + +dvhtool-1.0.1-r2.ebuild:
38 + Add two new patches from Debian, fix up some QA issues, and add ~amd64 to
39 + KEYWORDS.
40
41 27 Mar 2008; Raúl Porcel <armin76@g.o> dvhtool-1.0.1-r1.ebuild:
42 Fix debian HOMEPAGE
43
44
45
46 1.1 sys-boot/dvhtool/dvhtool-1.0.1-r2.ebuild
47
48 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/dvhtool/dvhtool-1.0.1-r2.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-boot/dvhtool/dvhtool-1.0.1-r2.ebuild?rev=1.1&content-type=text/plain
50
51 Index: dvhtool-1.0.1-r2.ebuild
52 ===================================================================
53 # Copyright 1999-2009 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/sys-boot/dvhtool/dvhtool-1.0.1-r2.ebuild,v 1.1 2009/03/01 22:37:10 kumba Exp $
56
57 inherit eutils
58
59 DESCRIPTION="Tool to copy kernel(s) into the volume header on SGI MIPS-based workstations."
60 HOMEPAGE="http://packages.debian.org/unstable/utils/dvhtool"
61 SRC_URI="mirror://debian/pool/main/d/dvhtool/dvhtool_1.0.1.orig.tar.gz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="-* ~mips ~x86 ~amd64"
66 IUSE=""
67 DEPEND=""
68 RDEPEND=""
69
70 src_unpack() {
71 unpack ${A}
72 cd "${S}.orig"
73
74 # several applicable hunks from a debian patch
75 epatch "${FILESDIR}"/${P}-debian.diff
76
77 # Newer minor patches from Debian
78 epatch "${FILESDIR}"/${P}-debian-warn_type_guess.diff
79 epatch "${FILESDIR}"/${P}-debian-debian-xopen_source.diff
80
81 # Allow dvhtool to recognize Linux RAID and Linux LVM partitions
82 epatch "${FILESDIR}"/${P}-add-raid-lvm-parttypes.patch
83 }
84
85 src_compile() {
86 cd "${S}.orig"
87 econf || die "econf failed"
88 emake || die "Failed to compile"
89 }
90
91 src_install() {
92 cd "${S}.orig"
93 einstall
94 }