Gentoo Archives: gentoo-commits

From: "Michael Januszewski (spock)" <spock@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/v86d: ChangeLog v86d-0.1.3.ebuild
Date: Mon, 03 Dec 2007 00:39:28
Message-Id: E1IyzL7-0001qK-SK@stork.gentoo.org
1 spock 07/12/03 00:39:13
2
3 Modified: ChangeLog
4 Added: v86d-0.1.3.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.1.4_rc4)
8
9 Revision Changes Path
10 1.7 sys-apps/v86d/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/v86d/ChangeLog?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/v86d/ChangeLog?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/v86d/ChangeLog?r1=1.6&r2=1.7
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/v86d/ChangeLog,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- ChangeLog 4 Nov 2007 15:40:21 -0000 1.6
23 +++ ChangeLog 3 Dec 2007 00:39:13 -0000 1.7
24 @@ -1,6 +1,12 @@
25 # ChangeLog for sys-apps/v86d
26 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/v86d/ChangeLog,v 1.6 2007/11/04 15:40:21 spock Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/v86d/ChangeLog,v 1.7 2007/12/03 00:39:13 spock Exp $
29 +
30 +*v86d-0.1.3 (03 Dec 2007)
31 +
32 + 03 Dec 2007; Michał Januszewski <spock@g.o> +v86d-0.1.3.ebuild:
33 + Version bump. Bugfix release -- fixes broken handling of cards which store
34 + the VBE Info Block in the Video ROM.
35
36 04 Nov 2007; Michał Januszewski <spock@g.o> -v86d-0.1_rc4.ebuild,
37 -v86d-0.1_rc5.ebuild:
38
39
40
41 1.1 sys-apps/v86d/v86d-0.1.3.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/v86d/v86d-0.1.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/v86d/v86d-0.1.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: v86d-0.1.3.ebuild
47 ===================================================================
48 # Copyright 1999-2007 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-apps/v86d/v86d-0.1.3.ebuild,v 1.1 2007/12/03 00:39:13 spock Exp $
51
52 inherit linux-info
53
54 DESCRIPTION="A daemon to run x86 code in an emulated environment."
55 HOMEPAGE="http://dev.gentoo.org/~spock/projects/uvesafb/"
56 SRC_URI="http://dev.gentoo.org/~spock/projects/uvesafb/archive/${P/_/-}.tar.bz2"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~x86 ~amd64"
61 IUSE="debug"
62
63 DEPEND="dev-libs/klibc"
64 RDEPEND=""
65
66 S="${WORKDIR}/${P//_*/}"
67
68 pkg_setup() {
69 if [ -z "$(grep V86D /usr/lib/klibc/include/linux/connector.h)" ]; then
70 eerror "You need to compile klibc against a kernel tree patched with uvesafb"
71 eerror "prior to merging this package."
72 die "Kernel not patched with uvesafb."
73 fi
74 linux-info_pkg_setup
75 }
76
77 src_compile() {
78 ./configure --with-klibc $(use_with debug)
79 make KDIR=${KV_DIR} || die
80 }
81
82 src_install() {
83 make DESTDIR="${D}" install || die
84
85 dodoc README ChangeLog
86
87 insinto /usr/share/${PN}
88 doins misc/initramfs
89 }
90
91 pkg_postinst() {
92 elog "If you wish to place v86d into an initramfs image, you might want to use"
93 elog "'/usr/share/${PN}/initramfs' in your kernel's CONFIG_INITRAMFS_SOURCE."
94 }
95
96
97
98 --
99 gentoo-commits@g.o mailing list