blob: 5a3135a2a2d83edb29d5faf74d882c81908a67ac (
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-2012 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.26 2012/03/18 15:52:28 armin76 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 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
}
|