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.9.ebuild
Date: Sat, 04 Oct 2008 00:30:00
Message-Id: E1Klv1y-0005x2-AD@stork.gentoo.org
1 spock 08/10/04 00:29:58
2
3 Modified: ChangeLog
4 Added: v86d-0.1.9.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc11/cvs/Linux 2.6.27-rc6 x86_64)
8
9 Revision Changes Path
10 1.26 sys-apps/v86d/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/v86d/ChangeLog?rev=1.26&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/v86d/ChangeLog?rev=1.26&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/v86d/ChangeLog?r1=1.25&r2=1.26
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/v86d/ChangeLog,v
19 retrieving revision 1.25
20 retrieving revision 1.26
21 diff -u -r1.25 -r1.26
22 --- ChangeLog 27 Sep 2008 20:54:16 -0000 1.25
23 +++ ChangeLog 4 Oct 2008 00:29:57 -0000 1.26
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-apps/v86d
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/v86d/ChangeLog,v 1.25 2008/09/27 20:54:16 spock Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/v86d/ChangeLog,v 1.26 2008/10/04 00:29:57 spock Exp $
29 +
30 +*v86d-0.1.9 (04 Oct 2008)
31 +
32 + 04 Oct 2008; Michał Januszewski <spock@g.o> +v86d-0.1.9.ebuild:
33 + Version bump.
34
35 27 Sep 2008; Michał Januszewski <spock@g.o> v86d-0.1.3-r1.ebuild:
36 Fix concurrent build in the current stable version of v86d.
37
38
39
40 1.1 sys-apps/v86d/v86d-0.1.9.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/v86d/v86d-0.1.9.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/v86d/v86d-0.1.9.ebuild?rev=1.1&content-type=text/plain
44
45 Index: v86d-0.1.9.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/sys-apps/v86d/v86d-0.1.9.ebuild,v 1.1 2008/10/04 00:29:57 spock Exp $
50
51 inherit eutils linux-info multilib
52
53 DESCRIPTION="A daemon to run x86 code in an emulated environment."
54 HOMEPAGE="http://dev.gentoo.org/~spock/projects/uvesafb/"
55 SRC_URI="http://dev.gentoo.org/~spock/projects/uvesafb/archive/${P/_/-}.tar.bz2"
56
57 LICENSE="GPL-2"
58 SLOT="0"
59 KEYWORDS="~amd64 ~x86"
60 IUSE="debug x86emu"
61
62 DEPEND="dev-libs/klibc"
63 RDEPEND=""
64
65 S="${WORKDIR}/${P//_*/}"
66
67 pkg_setup() {
68 if [ -z "$(grep V86D /usr/$(get_libdir)/klibc/include/linux/connector.h)" ]; then
69 eerror "You need to compile klibc against a kernel tree patched with uvesafb"
70 eerror "prior to merging this package."
71 die "Kernel not patched with uvesafb."
72 fi
73 linux-info_pkg_setup
74 }
75
76 src_compile() {
77 ./configure --with-klibc $(use_with debug) $(use_with x86emu)
78 make KDIR="${KV_DIR}" || die
79 }
80
81 src_install() {
82 make DESTDIR="${D}" install || die
83
84 dodoc README ChangeLog
85
86 insinto /usr/share/${PN}
87 doins misc/initramfs
88 }
89
90 pkg_postinst() {
91 elog "If you wish to place v86d into an initramfs image, you might want to use"
92 elog "'/usr/share/${PN}/initramfs' in your kernel's CONFIG_INITRAMFS_SOURCE."
93 }