blob: d467ae5c182e3b0423632a1ea2cc51436f06813c (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/killproc/killproc-1.12-r2.ebuild,v 1.25 2009/01/03 17:19:20 angelos Exp $
inherit flag-o-matic toolchain-funcs
DESCRIPTION="killproc and assorted tools for boot scripts"
HOMEPAGE="http://www.suse.de/"
SRC_URI="ftp://ftp.suse.com/pub/projects/init/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc sparc x86"
IUSE=""
src_unpack() {
unpack ${A}
cd "${S}"
filter-flags -O0
sed -i \
-e "s:-O2:-O1 ${CFLAGS}:" \
-e "s:-m486::" \
Makefile || die "sed failed"
}
src_compile() {
emake CC="$(tc-getCC)" || die "emake failed"
}
src_install() {
into /
dosbin checkproc startproc killproc || die "dosbin failed"
into /usr
doman *.8
dodoc README *.lsm
}
|