blob: 4d6fa2438474e6697b6f65b349f1c71f34b4456c (
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
38
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/showconsole/showconsole-1.08.ebuild,v 1.1 2005/11/29 02:22:14 vapier Exp $
# This tarball is extracted from SuSe's sysvinit-2.86-#.src.rpm
# You can find said src rpm via opensuse.org:
# http://mirrors.kernel.org/opensuse/distribution/SL-OSS-edge/inst-source/suse/src/
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"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~sparc ~x86"
IUSE=""
DEPEND=""
src_unpack() {
unpack ${P}.tar.bz2
cd "${S}"
epatch "${FILESDIR}"/1.07-no-TIOCGDEV.patch
}
src_compile() {
emake COPTS="${CFLAGS}" CC="$(tc-getCC)" || die "emake failed"
}
src_install() {
make install DESTDIR="${D}" || die "install failed"
insinto /$(get_libdir)/rcscripts/addons
doins "${FILESDIR}"/bootlogger.sh || die "rcscript addon"
rmdir "${D}"/usr/lib/lsb || die
dodoc showconsole-*.lsm README
}
|