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.5.ebuild
Date: Thu, 01 May 2008 21:11:19
Message-Id: E1Jrg3f-0005Lw-UG@stork.gentoo.org
1 spock 08/05/01 21:11:15
2
3 Modified: ChangeLog
4 Added: v86d-0.1.5.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.1.5_rc6)
8
9 Revision Changes Path
10 1.13 sys-apps/v86d/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/v86d/ChangeLog?rev=1.13&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/v86d/ChangeLog?rev=1.13&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/v86d/ChangeLog?r1=1.12&r2=1.13
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/v86d/ChangeLog,v
19 retrieving revision 1.12
20 retrieving revision 1.13
21 diff -u -r1.12 -r1.13
22 --- ChangeLog 20 Apr 2008 07:35:12 -0000 1.12
23 +++ ChangeLog 1 May 2008 21:11:15 -0000 1.13
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.12 2008/04/20 07:35:12 spock Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/v86d/ChangeLog,v 1.13 2008/05/01 21:11:15 spock Exp $
29 +
30 +*v86d-0.1.5 (01 May 2008)
31 +
32 + 01 May 2008; MichaƂ Januszewski <spock@g.o> +v86d-0.1.5.ebuild:
33 + Version bump.
34
35 *v86d-0.1.4 (20 Apr 2008)
36
37
38
39
40 1.1 sys-apps/v86d/v86d-0.1.5.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/v86d/v86d-0.1.5.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/v86d/v86d-0.1.5.ebuild?rev=1.1&content-type=text/plain
44
45 Index: v86d-0.1.5.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.5.ebuild,v 1.1 2008/05/01 21:11:15 spock Exp $
50
51 inherit linux-info
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/lib/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 local myconf=""
78 if use x86emu ; then
79 myconf="--with-x86emu"
80 fi
81
82 ./configure --with-klibc $(use_with debug) ${myconf}
83 make KDIR=${KV_DIR} || die
84 }
85
86 src_install() {
87 make DESTDIR="${D}" install || die
88
89 dodoc README ChangeLog
90
91 insinto /usr/share/${PN}
92 doins misc/initramfs
93 }
94
95 pkg_postinst() {
96 elog "If you wish to place v86d into an initramfs image, you might want to use"
97 elog "'/usr/share/${PN}/initramfs' in your kernel's CONFIG_INITRAMFS_SOURCE."
98 }
99
100
101
102 --
103 gentoo-commits@l.g.o mailing list