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-r1.ebuild
Date: Fri, 28 Dec 2007 14:42:42
Message-Id: E1J8GPx-00022r-53@stork.gentoo.org
1 spock 07/12/28 14:42:33
2
3 Modified: ChangeLog
4 Added: v86d-0.1.3-r1.ebuild
5 Log:
6 Add the 'x86emu' USE flag to make it possible to fix problems similar to the ones described in bug #196848.
7 (Portage version: 2.1.4_rc11)
8
9 Revision Changes Path
10 1.10 sys-apps/v86d/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/v86d/ChangeLog?rev=1.10&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/v86d/ChangeLog?rev=1.10&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/v86d/ChangeLog?r1=1.9&r2=1.10
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/v86d/ChangeLog,v
19 retrieving revision 1.9
20 retrieving revision 1.10
21 diff -u -r1.9 -r1.10
22 --- ChangeLog 5 Dec 2007 22:36:08 -0000 1.9
23 +++ ChangeLog 28 Dec 2007 14:42:32 -0000 1.10
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.9 2007/12/05 22:36:08 angelos Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/v86d/ChangeLog,v 1.10 2007/12/28 14:42:32 spock Exp $
29 +
30 +*v86d-0.1.3-r1 (28 Dec 2007)
31 +
32 + 28 Dec 2007; MichaƂ Januszewski <spock@g.o> +v86d-0.1.3-r1.ebuild:
33 + Add the 'x86emu' USE flag to make it possible to fix problems similar to the
34 + ones described in #196848.
35
36 05 Dec 2007; Christoph Mende <angelos@g.o> v86d-0.1.3.ebuild:
37 Stable on amd64 wrt bug #200994
38
39
40
41 1.1 sys-apps/v86d/v86d-0.1.3-r1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/v86d/v86d-0.1.3-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/v86d/v86d-0.1.3-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: v86d-0.1.3-r1.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-r1.ebuild,v 1.1 2007/12/28 14:42:32 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="~amd64 ~x86"
61 IUSE="debug x86emu"
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 local myconf=""
79 if use x86emu ; then
80 myconf="--with-x86emu"
81 fi
82
83 ./configure --with-klibc $(use_with debug) ${myconf}
84 make KDIR=${KV_DIR} || die
85 }
86
87 src_install() {
88 make DESTDIR="${D}" install || die
89
90 dodoc README ChangeLog
91
92 insinto /usr/share/${PN}
93 doins misc/initramfs
94 }
95
96 pkg_postinst() {
97 elog "If you wish to place v86d into an initramfs image, you might want to use"
98 elog "'/usr/share/${PN}/initramfs' in your kernel's CONFIG_INITRAMFS_SOURCE."
99 }
100
101
102
103 --
104 gentoo-commits@g.o mailing list