blob: 694aed656e88b5d728e01754f67c6e2fba65f06c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/showconsole/showconsole-1.07.ebuild,v 1.1 2004/12/04 03:07:36 vapier Exp $
inherit eutils toolchain-funcs
DESCRIPTION="small daemon for logging console output during boot"
HOMEPAGE="http://www.novell.com/linux/suse/"
SRC_URI="mirror://gentoo/${P}.tar.bz2
mirror://gentoo/${P}-suse-update.patch.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=""
#RDEPEND=""
S=${WORKDIR}/${P}
src_unpack() {
unpack ${P}.tar.bz2
cd ${S}
epatch ${DISTDIR}/${P}-suse-update.patch.bz2
epatch ${FILESDIR}/${PV}-no-TIOCGDEV.patch
}
src_compile() {
emake COPTS="${CFLAGS}" CC="$(tc-getCC)" || die "emake failed"
}
src_install() {
make install DESTDIR="${D}" || die "install failed"
rmdir "${D}"/usr/lib/lsb
dodoc showconsole-1.07.lsm README
}
|